How to delete compiled JS files from previous typescript(.ts) files?(如何从以前的 typescript(.ts) 文件中删除已编译的 JS 文件?)
问题描述
我正在关注 Angular 2 快速入门 教程.以下是我的文件夹结构 -
I am following Angular 2 quick start tutorial. Following is my folder structure -
├── gulpfile.js
├── index.html
├── js
| ├── app.component.js
| └── boot.js
├── source
| ├── app.component.ts
| └── boot.ts
├── node_modules
├── module 1
└── module 2
我的打字稿文件位于 source/
目录中.我正在将它编译到 js/
目录.我正在使用 gulp-typescript.
My typescript files are in source/
directory. I'm compiling it to js/
directory. I'm using gulp-typescript.
问题是当我例如将文件 boot.ts
重命名为 bootstrap.ts
并再次编译时,对应的 bootstrap.js
文件已创建,但旧的 boot.js
文件仍保留在 js/目录中.
The problem is when I, for example, rename the file boot.ts
to bootstrap.ts
and compile again, corresponding bootstrap.js
file is created but the old boot.js
file still remains in the js/ directory.
现在文件夹结构如下-
├── gulpfile.js
├── index.html
├── js
| ├── app.component.js
| └── bootstrap.js
| └── boot.js
├── source
| ├── app.component.ts
| └── bootstrap.ts
├── node_modules
├── module 1
└── module 2
我想通过 gulp 任务自动删除这个 boot.js
.如何做到这一点?
I want to delete this boot.js
autonomically via gulp task. How to achieve this?
推荐答案
我来这里是看到标题,并且将 gulp 添加到组合中并不是解决方案.所以这就是我解决它的方法.
I came here seeing the title, and adding gulp into the mix was not a solution. So here is how I solved it.
在你的 npm 构建脚本前加上 rm -rf ./js/&&
Prefix your npm build script with rm -rf ./js/ &&
"scripts": {
...
"build": "rm -rf ./js/ && tsc",
...
},
rm -rf ./js/
forcefully 删除 r./js/下面的所有文件和目录 doku rm in bash
rm -rf ./js/
forcefully removes recursively all files and dirs below ./js/ doku rm in bash
&&
表示如果成功执行下一个命令 &&在 bash 中
&&
says if successfully do the next command && in bash
这篇关于如何从以前的 typescript(.ts) 文件中删除已编译的 JS 文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何从以前的 typescript(.ts) 文件中删除已编译的 JS 文件?


基础教程推荐
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01