0

将ractiveractive-load导入到我的汇总项目的正确方法是什么?npm 还是 github?

目前我正在使用npm安装每个:

npm install --save-dev ractivejs/ractive

npm install --save-dev ractivejs/ractive-load

我正在使用rollup-plugin-commonjswithrollup-plugin-node-resolve来正确地捆绑它们(问题末尾的rollup.config.js):

import Ractive from 'ractive';
import load from 'ractive-load';
...

但似乎 ractive-load 还在其代码中导入了其他模块,导致此错误:

Error parsing /home/.../node_modules/rcu/src/make.js: 'import' and 'export' may only appear at the top level (2:0) in /home/.../node_modules/rcu/src/make.js

我怎样才能正确使用 Rollup,哪些是这种情况下的正确来源(npm 或 github)?


这是我的rollup.config.js

import commonjs from 'rollup-plugin-commonjs';
import nodeResolve from 'rollup-plugin-node-resolve';

export default {
  entry: 'src/main.js',
  plugins: [

  nodeResolve({
        jsnext: true,
        main: true,
        browser: true,
    }),

    commonjs({
        sourceMap: false
  }),

  // uglify()

  ],
  format: 'iife',
  moduleName: 'Altiva',
  dest: 'altiva.js'
};
4

1 回答 1

1

ractive-load旨在“读取”link浏览器中的标签,然后对组件文件执行 AJAX 请求,然后它使用一个名为的库rcu将组件文件转换为可用的 javascript 组件。

您需要的是一个实用程序(使用rcu或执行等效工作)将您的组件文件转换为您可以在构建过程中运行然后移交给rollup. 幸运的是,看起来有一个汇总插件rollup-plugin-ractive旨在做到这一点:

rollup({
  entry: 'src/main.js',
  plugins: [
    ractive({
      // By default, all .html files are compiled
      extensions: [ '.html', '.ract' ],

      // You can restrict which files are compiled
      // using `include` and `exclude`
      include: 'src/components/**.html'
    })
  ]
}).then(...)

这里还列出了一些可用的加载器,其中还有“plain vanilla js”变体。

于 2016-04-12T23:35:18.973 回答