Skip to content
This repository has been archived by the owner on Jul 16, 2022. It is now read-only.

Commit

Permalink
Upgrade build dependencies,
Browse files Browse the repository at this point in the history
  • Loading branch information
nazar-pc committed Dec 7, 2018
1 parent 174a221 commit 0d6e443
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const gulp = require('gulp');
const compiler = require('google-closure-compiler-js').gulp();
const compiler = require('google-closure-compiler').gulp();

// TODO: Produce multiple files when https://github.com/google/closure-compiler-js/issues/17 resolved
gulp.task('dist', function () {
Expand All @@ -9,9 +9,9 @@ gulp.task('dist', function () {
// 'js/jquery.pickmeup.uikit.js'
])
.pipe(compiler({
jsOutputFile : 'pickmeup.min.js',
languageIn : 'ES5',
languageOut : 'ES5'
js_output_file : 'pickmeup.min.js',
language_in : 'ES5',
language_out : 'ES5'
}))
.pipe(gulp.dest('dist'));
});
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"demo" : "http://nazar-pc.github.io/PickMeUp",
"main" : "dist/pickmeup.min.js",
"devDependencies" : {
"google-closure-compiler-js" : "^20160828.0.1",
"gulp" : "^3.9.1"
"google-closure-compiler" : "^20181125.0.1",
"gulp" : "^4.0.0"
},
"faircodeId" : "pd_6bOuEo9pHbWVEqzm9F3K3T"
}

0 comments on commit 0d6e443

Please sign in to comment.