- Learn WebAssembly
- Mike Rourke
- 119字
- 2021-08-13 15:38:59
Installing rimraf
Some of the build steps defined in the Makefiles or VS Code Tasks delete files or directories. The commands required to delete a file or folder differ based on your platform and shell. To address this issue we'll use the rimraf npm package (https://www.npmjs.com/package/rimraf). Installing the package globally provides a rimraf command that performs the correct deletion operation for the operating system and shell.
To install rimraf, ensure that Node.js is installed and run the following command from a CLI:
npm install -g rimraf
To ensure that the installation was successful, run the following command:
rimraf --help
You should see usage instructions and a list of command line flags. Let's move on to the VS Code installation.
推薦閱讀
- 程序設計與實踐(VB.NET)
- JavaScript:Functional Programming for JavaScript Developers
- PyTorch自動駕駛視覺感知算法實戰
- Python語言程序設計
- Koa開發:入門、進階與實戰
- Python爬蟲、數據分析與可視化:工具詳解與案例實戰
- Kubernetes源碼剖析
- Swift語言實戰晉級
- Vue.js 3應用開發與核心源碼解析
- 小程序從0到1:微信全棧工程師一本通
- Mastering HTML5 Forms
- Node.js區塊鏈開發
- Python 3 Object:oriented Programming(Second Edition)
- 從零學Java設計模式
- Akka入門與實踐