From 1268e4be2683ae338ce9ebb98af20d30b382c905 Mon Sep 17 00:00:00 2001 From: Teoh Han Hui Date: Fri, 1 Jun 2018 14:26:57 +0200 Subject: [PATCH] Remove vendorPath command-line argument from test app gulpfile --- tests/Application/gulpfile.babel.js | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tests/Application/gulpfile.babel.js b/tests/Application/gulpfile.babel.js index 2b58b3a6..15a4f85f 100644 --- a/tests/Application/gulpfile.babel.js +++ b/tests/Application/gulpfile.babel.js @@ -1,6 +1,5 @@ import chug from 'gulp-chug'; import gulp from 'gulp'; -import upath from 'path'; import yargs from 'yargs'; const { argv } = yargs @@ -11,12 +10,6 @@ const { argv } = yargs requiresArg: true, required: false, }, - vendorPath: { - description: ' path to vendor directory', - type: 'string', - requiresArg: true, - required: false, - }, nodeModulesPath: { description: ' path to node_modules directory', type: 'string', @@ -28,10 +21,6 @@ const { argv } = yargs const config = [ '--rootPath', argv.rootPath || '../../../../../../../tests/Application/web/assets', - ...(argv.vendorPath ? [ - '--vendorPath', - upath.joinSafe(argv.vendorPath, 'sylius/sylius/src/Sylius/Bundle'), - ] : []), '--nodeModulesPath', argv.nodeModulesPath || '../../../../../../../tests/Application/node_modules', ];