fix(core): update

This commit is contained in:
2022-03-15 13:45:03 +01:00
parent ae16fd8170
commit a3ab55cbc6
4 changed files with 50 additions and 23 deletions

View File

@ -9,7 +9,8 @@ tap.test('should bundle test', async () => {
process.cwd() + '/test',
'./ts_web/index.ts',
'./dist_manual/test.js',
'rollup'
'rollup',
{}
);
});
@ -18,7 +19,9 @@ tap.test('should bundle production', async () => {
await tsbundleInstance.buildProduction(
process.cwd(),
'./test/ts_web/index.ts',
'./test/dist_manual/production.js'
'./test/dist_manual/production.js',
'rollup',
{}
);
});