From 7f5b6355a2be32e16f2e15263138e1383f259843 Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Wed, 2 Dec 2020 19:51:05 +0200 Subject: [PATCH] Removed dev composer dependencies again for smaller production packages --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 5ec3f8c1..101f9d00 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-interaction --no-scripts --optimize-autoloader', function (err, stdout, stderr) { + execSync('cd build && composer install --no-interaction --no-dev --no-scripts --optimize-autoloader', function (err, stdout, stderr) { console.log(stdout); console.log(stderr); });