我对某事有疑问。 我研究了如何使用“ gulp”。但是我有一个问题。
我研究了如此简单的例子。喜欢那个。.//gulpfile.js
const gulp = require('gulp');
const babel = require('gulp-babel');
gulp.task('default', function(){
gulp.src("es6/**/*.js")
.pipe(babel())
.pipe(gulp.dest("dist"));
gulp.src("public/es6/**/*.js")
.pipe(babel())
.pipe(gulp.dest("public/dist"));
});
和我节点的package.json一样...
{
"name": "lj",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"underscore": "^1.9.1"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-preset-es2015": "^6.24.1",
"gulp": "^3.9.1",
"gulp-babel": "^8.0.0"
}
}
然后在根目录的终端中输入
$ gulp
终端的答案是这个。
➜ lj gulp
[19:12:41] Using gulpfile ~/Desktop/Workspace/lj/gulpfile.js
[19:12:41] Starting 'default'...
[19:12:41] Finished 'default' after 8 ms
所以我检查了我的目录。 / dist和/ public / dist ...,但是没有新创建的文件。我怎么解决这个问题?我要你的帮助〜!谢谢〜^^