|
1 年之前 | |
---|---|---|
.. | ||
.npmignore | 1 年之前 | |
CHANGELOG.md | 1 年之前 | |
LICENSE | 1 年之前 | |
README.md | 1 年之前 | |
addScript.js | 1 年之前 | |
index.js | 1 年之前 | |
package.json | 1 年之前 |
npm install --save-dev script-loader
Executes JS script once in global context.
:warning: Doesn't work in NodeJS
import exec from 'script.exec.js';
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.exec\.js$/,
use: [ 'script-loader' ]
}
]
}
}
import exec from 'script-loader!./script.js';
|
Juho Vepsäläinen
|
Joshua Wiens
|
Kees Kluskens