1 Star 0 Fork 0

轻飘yyf/leaflet-webgl-heatmap

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gulpfile.js 807 Bytes
一键复制 编辑 原始数据 按行查看 历史
var gulp = require('gulp'),
browserSync = require('browser-sync').create(),
uglify = require('gulp-uglify'),
rename = require('gulp-rename');
gulp.task('default', ['bs']);
gulp.task('bs', function() {
return browserSync.init({
server: {
baseDir: "./",
},
startPath: './example/index.html',
ui : false,
watchOptions: {
ignoreInitial: true,
ignored: 'node_modules/*'
},
files : ['./**/*.html','./**/*.css', './**/*.js']
});
});
gulp.task('build', function () {
return gulp.src(['./src/leaflet-webgl-heatmap.js'])
.pipe(uglify({
preserveComments : 'license'
}))
.pipe(rename({
extname : ".min.js"
}))
.pipe(gulp.dest('./dist/'));
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yyf994/leaflet-webgl-heatmap.git
git@gitee.com:yyf994/leaflet-webgl-heatmap.git
yyf994
leaflet-webgl-heatmap
leaflet-webgl-heatmap
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385