Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
development:tools:vscode:gulp_tasks:start [2021/03/09 22:51] – created joe.mao | development:tools:vscode:gulp_tasks:start [2022/03/08 10:11] (current) – jessie.liu | ||
---|---|---|---|
Line 22: | Line 22: | ||
* Select the task and click the green start button to start the task. | * Select the task and click the green start button to start the task. | ||
* You will see the output of the task in Terminal' | * You will see the output of the task in Terminal' | ||
- | * You can click the stop button to stop the task. | + | * You can selset the task and click the stop button to stop the task. |
+ | * Normal tasks will be automatically disconnected after running. But when doing webpack dev server, the task will be finished first, but the OUTPUT will always be connected. | ||
+ | * In MacOS, click the stop button will disconnect OUTPUT. | ||
+ | * But in Windows will not disconnect OUTPUT. In other words, the app is still running in the background. | ||
+ | * At this moment, you'd better use the command line to run the gulp task. | ||
+ | * If you use Gulp Tasks to run the webpack dev server related tasks, you can use some Windows commands to kill the process | ||
+ | |||
+ | < | ||
+ | // open a CMD window | ||
+ | |||
+ | // find the app port, like " | ||
+ | netstat -ano |findstr " | ||
+ | |||
+ | // kill the process according to the pid | ||
+ | taskkill /f /t /im " | ||
+ | </ | ||
+ | |||
+ | ===== Problem ===== | ||
+ | |||
+ | If you install gulp locally,but encounter the following problems, please try | ||
+ | |||
+ | < | ||
+ | //project dependent download | ||
+ | npm install gulp --no-fund | ||
+ | </ | ||
+ | |||
+ | {{ : |