ionic-framework
IonicでEcmaScript 6の機能を使用するには?
サーチ…
ギャルバベルとガルプ配管を使用することで
IonicはGulpを使用するので、gulp-babelとgulp-plumberをインストールします。
npm install --save-dev gulp-babel gulp-plumber
babelをgulpfile.js
ように追加しgulpfile.js
:
//...
var babel = require("gulp-babel");
var plumber = require("gulp-plumber");
var paths = {
es6: ['./src/es6/*.js'],
sass: ['./scss/**/*.scss']
};
gulp.task('default', ['babel', 'sass']);
gulp.task("babel", function () {
return gulp.src(paths.es6)
.pipe(plumber())
.pipe(babel())
.pipe(gulp.dest("www/js"));
});
//...
gulp.task('watch', function() {
gulp.watch(paths.es6, ['babel']);
gulp.watch(paths.sass, ['sass']);
});
//...
ionic.project
編集:
"gulpStartupTasks": [
"babel",
"sass",
"watch"
],
今度はionic serve
を実行ionic serve
、コードがあなたのために転送されます。
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow