()
| 13 | }; |
| 14 | |
| 15 | const buildCommand = () => { |
| 16 | const packageName = "webpack"; |
| 17 | const args = ["build"]; |
| 18 | const logMessage = "For using 'build' command you need to install: 'webpack' package."; |
| 19 | |
| 20 | return runTest(packageName, args, logMessage); |
| 21 | }; |
| 22 | |
| 23 | const watchCommand = () => { |
| 24 | const packageName = "webpack"; |