配置要构建为转发需要的特定模块

时间:2016-11-14 06:15:25

标签: webpack webpack-2

我正在开发一个服务器端node.js应用程序,并使用webpack 2生成一个包,其配置如下:

{
  entry: [
    './api/server.js'
  ],
  target: 'node',
  devtool: 'source-map',
  context: path.resolve(__dirname, '..'),
  output: {
    path: path.resolve(__dirname, '..', 'build', 'server'),
    filename: 'server.js'
  },

  resolve: {
    modules: ['node_modules'],
    extensions: ['.js']
  },

  module: {
    loaders: [
      {
        test: /\.js$/,
        exclude: /node_modules/,
        loader: 'babel-loader',
        query: {
          presets: [
            ['es2015', { modules: false }],
            'stage-0'
          ],
          plugins: [
            'transform-object-rest-spread',
            'babel-plugin-transform-decorators-legacy',
            'transform-class-properties'
          ]
        }
      },
      {
        test: /\.json$/,
        loader: 'json-loader'
      }
    ]
  }
}

我的一个依赖是node-argon2库,我在server.js中导入了这个库。由webpack生成的结果包文件包含了argon2代码(例如):

,
/* 62 */
/* unknown exports provided */
/* all exports used */
/*!*MYPROJECT/~/argon2/index.js ***!!*\
/***/ function(module, exports, __webpack_require__) {

"use strict";
eval("'use strict'\nconst crypto....

在这种情况下,我收到以下错误:

(node:23259) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): TypeError: Path must be a string. Received undefined
(node:23259) DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

我使用仅导入argon2模块的最小server.js重现上述错误。想到这可能与argon2库调用本机代码这一事实有关,我将模块标记为外部并将其在webpack构建文件中的条目替换为:

/***/ },
/* 163 */
/* unknown exports provided */
/* all exports used */
/*!*************************!*\
  !*** external "argon2" ***!
  \*************************/
/***/ function(module, exports) {

eval("module.exports = require(\"argon2\");");

这现在没有任何错误。清楚地标记这个外部是不正确的(如果没有上述修改则根本不起作用)。我正在寻找配置argon2模块以产生类似于上面的条目。我注意到这与string_decoderttyzlip的方式匹配,并且在捆绑中定义了一些其他模块:

/***/ },
/* 164 */
/* unknown exports provided */
/* all exports used */
/*!*********************************!*\
  !*** external "string_decoder" ***!
  \*********************************/
/***/ function(module, exports) {

eval("module.exports = require(\"string_decoder\");...")

/***/ },
/* 165 */
/* unknown exports provided */
/* all exports used */
/*!**********************!*\
  !*** external "tty" ***!
  \**********************/
/***/ function(module, exports) {

eval("module.exports = require(\"tty\");

0 个答案:

没有答案