1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-01 23:55:58 +09:00
cherrypick/webpack/module/rules/license.ts

18 lines
379 B
TypeScript
Raw Normal View History

2017-12-11 03:38:31 +09:00
/**
* Inject license
*/
const StringReplacePlugin = require('string-replace-webpack-plugin');
2018-01-01 02:08:41 +09:00
import { licenseHtml } from '../../../src/common/build/license';
2017-12-11 03:38:31 +09:00
export default () => ({
enforce: 'pre',
test: /\.(tag|js)$/,
exclude: /node_modules/,
loader: StringReplacePlugin.replace({
replacements: [{
2018-01-01 02:08:41 +09:00
pattern: '%license%', replacement: () => licenseHtml
2017-12-11 03:38:31 +09:00
}]
})
});