From 423edc80c868f570091845746b642781ea2bd258 Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Thu, 12 Nov 2020 14:18:07 +0200 Subject: [PATCH] Include dev composer dependencies in the build package as it may be needed for troubleshooting in production --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 0e3f2faf..5ec3f8c1 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -45,7 +45,7 @@ gulp.task('build', (done) => { fs.copySync('README.md', 'build/README.md'); fs.copySync('LICENSE', 'build/LICENSE'); - execSync('cd build && composer install --no-dev --no-interaction --no-scripts --optimize-autoloader', function (err, stdout, stderr) { + execSync('cd build && composer install --no-interaction --no-scripts --optimize-autoloader', function (err, stdout, stderr) { console.log(stdout); console.log(stderr); });