mirror of
https://github.com/Mibew/mibew.git
synced 2025-04-28 17:16:41 +03:00
Exclude vendor binaries from release package
This commit is contained in:
parent
ad8c815b3c
commit
3e77eddb33
@ -228,7 +228,9 @@ gulp.task('pack-sources', ['composer-install'], function() {
|
|||||||
'!' + config.pluginsPath + '/*/**/*',
|
'!' + config.pluginsPath + '/*/**/*',
|
||||||
// Exclude Git repositories that can be shipped with third-party libs
|
// Exclude Git repositories that can be shipped with third-party libs
|
||||||
'!' + config.phpVendorPath + '/**/.git',
|
'!' + config.phpVendorPath + '/**/.git',
|
||||||
'!' + config.phpVendorPath + '/**/.git/**/*'
|
'!' + config.phpVendorPath + '/**/.git/**/*',
|
||||||
|
// Exclude vendors binaries
|
||||||
|
'!' + config.phpVendorPath + '/bin/**/*'
|
||||||
];
|
];
|
||||||
var srcOptions = {
|
var srcOptions = {
|
||||||
// Dot files (.htaccess, .keep, etc.) must be included in the package.
|
// Dot files (.htaccess, .keep, etc.) must be included in the package.
|
||||||
|
Loading…
Reference in New Issue
Block a user