我正在学习Rollup中使用this project。
做的时候:
$ npm run rollup
> @ rollup /Users/akauppi/Source/jspm-trial
> rollup -c rollup.config.js --output out/bundle.js --sourcemap true
Treating 'some' as external dependency
我的输出只有入口点,而不是从中导入的文件。为什么会这样?
$ more dist/bundle.js
'use strict';
var some = require('some');
console.log(some.some); // 42
详情可在repo中找到(上面的链接)。
答案 0 :(得分:2)
似乎导入路径需要是相对的,以便Rollup将它们视为内部模块:
import {some} from "./some";
或使用rollup-plugin-includepaths(我没试过)。
参考文献: