我在嘗試覆蓋已被解碼的文件時遇到問題。不幸的是,我無法輸出到不同的文件名。Uglifyjs覆蓋文件
下面是一些嘗試:
uglifyjs dist/main.*.js --compress drop_console=true --overwrite
find ./dist -name "main.*.js" | xargs uglifyjs --compress drop_console=true --overwrite file
find ./dist -name "main.*.js" | xargs uglifyjs -f --compress drop_console=true --overwrite file -o file
每次只打印到標準輸出時間。如果我做了像uglifyjs dist/main.*.js --compress drop_console=true -o main.min.js
這樣的工作。
有什麼想法?
沒有答案,但我用npm運行這個。我剛剛創建了另一個npm腳本,即grep | sed index.html並用輸出的uglifyjs文件替換main。*。bundle.js - main.min.js –