@@ 221-228 (lines=8) @@ | ||
218 | * @param InputInterface $input |
|
219 | * @param OutputInterface $output |
|
220 | */ |
|
221 | private function createBuildFile(InputInterface $input, OutputInterface $output) |
|
222 | { |
|
223 | $files = [ |
|
224 | 'gulp' => 'gulp/gulpfile.js', |
|
225 | ]; |
|
226 | ||
227 | $this->createFileFromTemplate($input, $output, 'pipelines/'.$files[$input->getOption('pipeline')]); |
|
228 | } |
|
229 | ||
230 | /** |
|
231 | * @param InputInterface $input |
|
@@ 234-241 (lines=8) @@ | ||
231 | * @param InputInterface $input |
|
232 | * @param OutputInterface $output |
|
233 | */ |
|
234 | private function createPackageJson(InputInterface $input, OutputInterface $output) |
|
235 | { |
|
236 | $files = [ |
|
237 | 'gulp' => 'gulp/package.json', |
|
238 | ]; |
|
239 | ||
240 | $this->createFileFromTemplate($input, $output, 'pipelines/'.$files[$input->getOption('pipeline')]); |
|
241 | } |
|
242 | ||
243 | /** |
|
244 | * @param InputInterface $input |