Browse Source

Merge pull request #134410 in DEC/fineui from final/11.0 to release/11.0

* commit '105c24d6342e51201307a5ac96c787c0ca97a10c':
  chore: 打包加上hash
research/test
superman 2 years ago
parent
commit
e8dcfe35b9
  1. 15
      webpack/webpack.prod.js

15
webpack/webpack.prod.js

@ -12,6 +12,15 @@ const common = require("./webpack.common.js");
const attachments = require("./attachments");
const components = require("./components");
const childProcess = require('child_process');
function git(command) {
return childProcess
.execSync(`git ${command}`)
.toString()
.trim();
}
module.exports = merge.smart(common, {
mode: "production",
entry: {
@ -63,7 +72,11 @@ module.exports = merge.smart(common, {
}
}),
new webpack.BannerPlugin({
banner: `time: ${new Date().toLocaleString()}`
banner: `time: ${new Date().toLocaleString()}; branch: ${git(
'rev-parse --abbrev-ref HEAD'
)} commit: ${git(
'rev-parse HEAD'
)}`
})
]
},

Loading…
Cancel
Save