Webpack 热模块替换不适用于 babel-loader 和预设 es2015
Webpack hot module replacement not working with babel-loader and preset es2015
热模块替换在没有加载器、另一个加载器或另一个预设的情况下工作。
但它不适用于 babel-loader 和 preset es2015。 es2016 有效。
与预设 "env".
相同的问题
是否可以使用 es2015 或 env 的 webpack 热模块替换?
以下是我的文件:
webpack.config.js
const path = require('path');
const webpack = require('webpack');
module.exports = {
entry: './src/index.js',
devtool: 'inline-source-map',
devServer: {
contentBase: './dist',
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: "babel-loader",
}
]
},
plugins: [
new webpack.NamedModulesPlugin()
],
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist')
}
};
print.js
export default function printMe() {
console.log('Updating print.js...')
}
index.html
<html>
<head>
<title>Output Management</title>
</head>
<body>
<script src="./bundle.js"></script>
</body>
</html>
package.json
...
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "webpack-dev-server --inline --hot"
},
...
index.js
import _ from 'lodash';
import printMe from './print.js';
function component() {
var element = document.createElement('div');
var btn = document.createElement('button');
// Lodash, now imported by this script
element.innerHTML = _.join(['Hello', 'webpack'], ' ');
btn.innerHTML = 'Click me and check the console!';
btn.onclick = printMe;
element.appendChild(btn);
return element;
}
let element = component(); // Store the element to re-render on print.js changes
document.body.appendChild(element);
if (module.hot) {
module.hot.accept('./print.js', function() {
console.log('Accepting the updated printMe module!');
document.body.removeChild(element);
element = component(); // Re-render the "component" to update the click handler
document.body.appendChild(element);
})
}
.babelrc
{ "presets": ["es2015"] }
找到解决方案。
将其放入 .babelrc 以禁用模块语法转换。
{ "presets": [['es2015', { modules: false }]] }
热模块替换在没有加载器、另一个加载器或另一个预设的情况下工作。
但它不适用于 babel-loader 和 preset es2015。 es2016 有效。 与预设 "env".
相同的问题是否可以使用 es2015 或 env 的 webpack 热模块替换?
以下是我的文件:
webpack.config.js
const path = require('path');
const webpack = require('webpack');
module.exports = {
entry: './src/index.js',
devtool: 'inline-source-map',
devServer: {
contentBase: './dist',
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: "babel-loader",
}
]
},
plugins: [
new webpack.NamedModulesPlugin()
],
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist')
}
};
print.js
export default function printMe() {
console.log('Updating print.js...')
}
index.html
<html>
<head>
<title>Output Management</title>
</head>
<body>
<script src="./bundle.js"></script>
</body>
</html>
package.json
...
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "webpack-dev-server --inline --hot"
},
...
index.js
import _ from 'lodash';
import printMe from './print.js';
function component() {
var element = document.createElement('div');
var btn = document.createElement('button');
// Lodash, now imported by this script
element.innerHTML = _.join(['Hello', 'webpack'], ' ');
btn.innerHTML = 'Click me and check the console!';
btn.onclick = printMe;
element.appendChild(btn);
return element;
}
let element = component(); // Store the element to re-render on print.js changes
document.body.appendChild(element);
if (module.hot) {
module.hot.accept('./print.js', function() {
console.log('Accepting the updated printMe module!');
document.body.removeChild(element);
element = component(); // Re-render the "component" to update the click handler
document.body.appendChild(element);
})
}
.babelrc
{ "presets": ["es2015"] }
找到解决方案。
将其放入 .babelrc 以禁用模块语法转换。
{ "presets": [['es2015', { modules: false }]] }