0
我已經創建了一個彙總項目。我是不能夠使用rollup -c && rollup -c --environment PRODUCTION
不使用不到兩個文件:如何配置加載Babel的插件
有人告訴我在freenode我應該只有一個文件。
我wan't能夠與彙總運行下面的代碼:
的src/index.js
export default true;
的src /測試/ index.test.js
import demo from '../index';
describe('demo test',() => {
it('should return true',() => {
expect(demo).toBe(true);
});
});
我找不到什麼邏輯上的插件應該在什麼文件中,我知道的是我無法做到它只能使用一種配置。