Skip to content

Commit

Permalink
Exclude JS sources from release package
Browse files Browse the repository at this point in the history
  • Loading branch information
JustBlackBird committed Dec 23, 2014
1 parent 1fae58c commit 53c60ee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,9 @@ gulp.task('pack-sources', ['composer-install'], function() {
'!' + config.phpVendorPath + '/**/.git',
'!' + config.phpVendorPath + '/**/.git/**/*',
// Exclude vendors binaries
'!' + config.phpVendorPath + '/bin/**/*'
'!' + config.phpVendorPath + '/bin/**/*',
// Exclude JavaScript sources
'!' + config.jsPath + '/source/**/*'
];
var srcOptions = {
// Dot files (.htaccess, .keep, etc.) must be included in the package.
Expand Down

0 comments on commit 53c60ee

Please sign in to comment.