在Ubuntu上找不到模块

时间:2016-10-12 13:05:00

标签: angular typescript webpack

我在Angular2应用中导入Quill时遇到问题。 (2.0.1)

我已将"quill": "^1.0.4""@types/quill": "*",添加到我的package.json中,而我正在使用它的组件我将其导入顶部:

import * as Quill from 'Quill';

并将其定义为

let quill = new Quill('#editor', {
      modules: {
        toolbar: toolbarOptions
      },
      theme: 'snow'
    });

在我的Mac上,运行macOS Sierra,没有问题,但在Ubuntu机器上我会收到以下错误

ng/src/community/threads.component.ts
Module not found: Error: Cannot resolve module 'Quill' in /home/user/src/community
 @ ./src/community/threads.component.ts 16:12-28
Warning: Task "webpack:default" failed. Use --force to continue.

有人能帮忙吗?我已经尝试在另一台Mac上加载git repo,安装最新的Node,Npm和grunt-cli,再次没有问题。

0 个答案:

没有答案