Exclude vendor binaries from release package

This commit is contained in:
Dmitriy Simushev 2014-12-11 14:06:15 +00:00
parent ad8c815b3c
commit 3e77eddb33

View File

@ -228,7 +228,9 @@ gulp.task('pack-sources', ['composer-install'], function() {
'!' + config.pluginsPath + '/*/**/*',
// Exclude Git repositories that can be shipped with third-party libs
'!' + config.phpVendorPath + '/**/.git',
'!' + config.phpVendorPath + '/**/.git/**/*'
'!' + config.phpVendorPath + '/**/.git/**/*',
// Exclude vendors binaries
'!' + config.phpVendorPath + '/bin/**/*'
];
var srcOptions = {
// Dot files (.htaccess, .keep, etc.) must be included in the package.