如何webpack只包含没有更改文件的js?

时间:2017-11-15 02:34:18

标签: webpack

例:
main.js

import {test} from "./test.js"
// other code
test();
test.js

中的

export var test= (function () { console.log("test")};

结果为bundle.js

/******/ (function(modules) { // webpackBootstrap
....
....

我想要的就是这样

//other code
var test= (function () { console.log("test")};

写完2个文件(main.jstest.js)之后, 我当然用这个简单的代码编写webpack配置文件webpack.config.js

module.exports = {
  entry: './main.js',
  output: {
  filename: 'bundle.js'
}

然后在控制台中运行生成文件名webpack的{​​{1}}命令。

我用文本编辑器打开bundle.js,得到上面代码的结果。

如何在webpack中包含没有更改文件的js?

0 个答案:

没有答案