move the sample usage code into the example folder

This commit is contained in:
Martin
2017-08-04 17:07:55 +02:00
parent 8f744e06f5
commit 43012d6e92
10 changed files with 44 additions and 42 deletions
+1 -9
View File
@@ -39,13 +39,5 @@ module.exports = () => {
.pipe(uglifyJs())
.pipe(gulp.dest(path.join('dist', 'js')));
const init = browserify(path.join('src', 'js', 'init.js'), {
debug: false
})
.bundle()
.pipe(source('init.js'))
.pipe(buffer())
.pipe(gulp.dest(path.join('dist', 'js')));
return merge(debug, production, min, init);
return merge(debug, production, min);
};