重新安装节点JS Gulp无法正常工作,但以前起作用。我尝试了很多方法,并在Github和论坛上阅读了很多问题,但是什么都没有...尝试删除全球安装的软件包和本地安装。重新安装节点JS,更新节点JS,install glob@4.2.2 ... etc
在这里我的墨西哥湾:
gulp.task('js', function() {
return gulp.src([
'app/js/lightgallery.min.js',
'app/js/jquery.dotdotdot.min.js',
'app/js/common.js',
'app/js/jquery.magnific-popup.min.js'
])
.pipe(concat('scripts.min.js'))
.pipe(uglify())
.pipe(gulp.dest('app/js-output'))
.pipe(browserSync.reload({ stream: true }))
});
gulp.task('css', function() {
return gulp.src([
'app/css/header.css',
'app/css/bootstrap.css'
])
.pipe(concat('style.min.css'))
.pipe(autoprefixer(['last 15 versions']))
.pipe(cleancss( {level: { 1: { specialComments: 0 } } })) // Opt., comment out when debugging
.pipe(gulp.dest('app/css-output'))
.pipe(browserSync.stream())
});
在这里package.json:
{
"name": "somename",
"version": "4.0.0",
"description": "somedescr",
"main": "index.js",
"scripts": {
"test": "echo "Error: no test specified" && exit 1"
},
"author": "someone",
"license": "ISC",
"devDependencies": {
"browser-sync": "^2.26.3",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^6.0.0",
"gulp-clean-css": "^3.10.0",
"gulp-concat": "^2.6.1",
"gulp-notify": "^3.2.0",
"gulp-rename": "^1.4.0",
"gulp-rsync": "0.0.8",
"gulp-sass": "^4.0.1",
"gulp-uglify": "^3.0.1",
"gulp-util": "^3.0.8"
}
}
我必须做什么才能使它起作用?也许是任何替代方法简单地concat&一点击缩小JS,CSS,在本地计算机上的SASS?
我找到了使用PHP脚本压缩JS和CSS并在本地服务器上运行的替代方法。发现用PHP编写的非常有用的库:
- 缩小JS
(https://github.com/mrclay/jsmin-php)(https://github.com/matthiasmullie/minify/)gulp-uglify') - 缩小CSS(https://github.com/tubalmartin/yui-csss-compressor-php-port)(比" gulp-cleancss"高3-5%,也许是由于" Gulp--autoprefixer')
并编写了简单的主脚本以使用它们并进行输出。也许对于某人而言,此信息可能会有所帮助...