在webpack中使用moment-timezone

时间:2015-10-22 09:24:32

标签: node.js timezone momentjs webpack

我的react / redux应用程序在webpack上运行,并且希望使用moment-timezone库。我已经在SO中检查了How should I use moment-timezone with webpack?问题,并按照问题中的描述安装了json-loader。但仍然需要在我的申请中moment-timezone作为:

const momentTz = require('moment-timezone'); 

它引发了一个错误:

ERROR in ./~/moment-timezone/index.js
Module not found: Error: Cannot resolve 'file' or 'directory' /path-to-the-project/node_modules/moment-timezone
 @ ./~/moment-timezone/index.js 2:15-51

@ ./~/moment-timezone/index.js 2:15-51的位置:

moment.tz.load(require('./data/packed/latest.json'));

然而,当我从构建文件夹中包含缩小版本时,它正常工作,如:

const momentTz = require('moment-timezone/builds/moment-timezone-with-data.min');

更新

webpack配置:

let jsonLoader = require('json-loader');
loaders: [
  {
    include: /\.json$/,
    loaders: [jsonLoader]
  }
]

1 个答案:

答案 0 :(得分:3)

我的问题是在webpack配置中。问题是我在webpack配置中需要json-loader并将其作为对象而不是字符串传递,因此将其更改为字符串修复了问题:

loaders: [
  {
    include: /\.json$/,
    loaders: ['json-loader']
  }
]