Skip to content

Commit

Permalink
Finishing build scripts for release
Browse files Browse the repository at this point in the history
  • Loading branch information
donker committed Oct 26, 2015
1 parent bb077da commit 36facca
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
14 changes: 12 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,16 @@ gulp.task('packageInstall', ['browserify', 'build'], function() {
return merge(
merge(
gulp.src([
'**/*.html',
'**/*.resx'
'**/*.resx',
'**/*.html'
], {
base: '.'
})
.pipe(dirFilter),
gulp.src([
'**/*.png',
'**/*.gif',
'**/*.txt'
], {
base: '.'
})
Expand Down Expand Up @@ -104,6 +112,8 @@ gulp.task('packageSource', ['browserify', 'build'], function() {
var dirFilter = filter(fileTest);
return merge(
gulp.src(['**/*.html',
'**/*.png',
'**/*.gif',
'**/*.css',
'js/**/*.js',
'**/*.??proj',
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
"excludeFilter": [
"node_modules",
"bin",
"obj"
"obj",
"_Packages",
"_Installation"
]
},
"main": "index.js",
Expand Down

0 comments on commit 36facca

Please sign in to comment.