标签: parceljs
我正在使用Parceljs,入口点是“ app.js”。没有.html文件。
我想在另一个文件中生成随机哈希。例如hash.txt。 因此,我将调用运行npm run build的{{1}},它将用parcel build client/app.js --out-dir www中的随机哈希替换字符串。
hash.txt
npm run build
parcel build client/app.js --out-dir www
或者我想在每次文件更改时在文件hash.txt中运行parcel watch时更改哈希。
parcel watch
在简单的npm运行脚本中有可能吗?