通过范围模式选择webpack DLL包

时间:2016-05-02 15:46:04

标签: webpack dllplugin dllreferenceplugin

在webpack示例中,特别是

我们可以创建一个依赖于已经预先捆绑的库的包。 手头的例子正如他们应该的那样工作。也就是说,我们首先导航 到examples/dll并运行node build.js来创建库。然后我们导航到examples/dll-user并运行node build.js以创建引用先前捆绑的库的最终捆绑包。

我的问题如下。假设在examples/dll中我们将配置文件修改为如下所示:

var path = require("path");
var webpack = require("../../");
module.exports = {
    entry: {
        alpha: ["./alpha", "./a", "module"],
        beta: ["./beta", "./b", "module"]
    },
    output: {
        path: path.join(__dirname, "js"),
        filename: "MyDll.[name].js",
        library: "[name]_[hash]"
    },
    plugins: [
        new webpack.DllPlugin({
            path: path.join(__dirname, "js", "[name]-manifest.json"),
            name: "[name]_[hash]"
        })
    ]
};

也就是说,我们向module dll添加了beta。现在我们必须拥有module的dll。让我们编译dll并转到dll-user示例。这里我们要做的是创建一个包,我们可以从中选择将提供module的库。让我们尝试在示例中再添加一行

console.log(require("../dll/alpha"));
console.log(require("../dll/a"));

console.log(require("beta/beta"));
console.log(require("beta/b"));

console.log(require("module"));
console.log(require("beta/module"));

在这种情况下,我希望能够使用module dll中的beta。不幸的是我不幸运。这是我在尝试后获得的输出:

jmlopez in ~/Downloads/webpack-master/examples/dll-user$ node build.js 
{ [Error: Command failed: /bin/sh -c node ../../bin/webpack.js --display-reasons --display-chunks --display-modules --display-origins --output-public-path "js/" -p  ./example.js js/output.js
]
  killed: false,
  code: 2,
  signal: null,
  cmd: '/bin/sh -c node ../../bin/webpack.js --display-reasons --display-chunks --display-modules --display-origins --output-public-path "js/" -p  ./example.js js/output.js' }
Hash: bd42dda7e56ebfd7cd32
Version: webpack 2.1.0-beta.6
Time: 68ms
    Asset     Size  Chunks             Chunk Names
output.js  4.26 kB       0  [emitted]  main
chunk    {0} output.js (main) 504 bytes [rendered]
    > main [7] ./example.js 
    [7] ./example.js 210 bytes {0} [built] [1 error]
     + 7 hidden modules

ERROR in ./example.js
Module not found: Error: Can't resolve 'beta/module' in '/Users/jmlopez/Downloads/webpack-master/examples/dll-user'
 @ ./example.js 8:12-34

{ [Error: Command failed: /bin/sh -c node ../../bin/webpack.js --display-reasons --display-chunks --display-modules --display-origins --output-public-path "js/" --output-pathinfo  ./example.js js/output.js
]
  killed: false,
  code: 2,
  signal: null,
  cmd: '/bin/sh -c node ../../bin/webpack.js --display-reasons --display-chunks --display-modules --display-origins --output-public-path "js/" --output-pathinfo  ./example.js js/output.js' }

有没有办法指定捆绑软件应该使用的库?我认为scope中的DllReferencePlugin选项可以解决问题,但似乎并非如此。

编辑:请注意,将./a添加到测试版dll,然后在示例中使用require('beta/a')。似乎webpack很难从node_modules中找出它。

1 个答案:

答案 0 :(得分:1)

使用NPM中的模块创建DLL时遇到了类似的问题。我的修复是引用清单中的完整路径,而不仅仅是模块名称。

index.js - 使用DLL的模块

var angular = require('alpha/node_modules/angular-wrapper/lib/index'); require('alpha/node_modules/angular-ui-router/release/angular-ui-router');

使您在使用DLL的项目中的要求看起来有点难看,但它确实有效。

webpack.conf - 使用DLL的模块

new webpack.DllReferencePlugin({ scope: 'alpha', context: path.join(__dirname,'./node_modules/@company/ng1dll/dist/'), manifest: require('./node_modules/@company/ng1dll/dist/angular-manifest.json') })

注意:我通过私有NPM包加载我的模块。

webpack.conf - DLL创建

module.exports = {
    entry: {
        beta: ["./beta", "./b"],
        angular: ['angular-wrapper','angular-ui-router']
    },
    output: {
        path: path.join(__dirname, "dist"),
        filename: "[name].js",
        library: "[name]_lib"

    },
    plugins: [
        new webpack.DllPlugin({
            path: path.join(__dirname, "dist", "[name]-manifest.json"),
            name: "[name]_lib"
        })
    ]
}

<强>的manifest.json

{
  "name": "angular_lib",
  "content": {
    "./node_modules/angular-wrapper/lib/index.js": 1,
    "./node_modules/angular-wrapper/node_modules/angular/index.js": 2,
    "./node_modules/angular-wrapper/node_modules/angular/angular.js": 3,
    "./node_modules/angular-ui-router/release/angular-ui-router.js": 4
  }
}