Skip to content

Commit

Permalink
Preparing release 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
queue-it committed Feb 7, 2022
1 parent 85d8f46 commit 455feb6
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4,426 deletions.
9 changes: 9 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const {src, dest, series} = require("gulp");
const jsonModify = require('gulp-json-modify')

exports.stripPackage = () => {
return src(['./package.json'])
.pipe(jsonModify({key: 'devDependencies', value: {}}))
.pipe(jsonModify({key: 'scripts', value: {}}))
.pipe(dest('./'))
}
Loading

0 comments on commit 455feb6

Please sign in to comment.