diff options
author | Sebastian <sebasjm@gmail.com> | 2023-06-01 14:26:07 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2023-06-01 14:26:07 -0300 |
commit | 699a7b453b90a117776dbb64a09f4c8b312acd04 (patch) | |
tree | 67a91e6fa01839bce7e62e8a55cbea7bb5c29027 /packages/demobank-ui/test.mjs | |
parent | e9bdf7f312cff5d49b6a50e3722de38bb7238573 (diff) |
new asset api
Diffstat (limited to 'packages/demobank-ui/test.mjs')
-rwxr-xr-x | packages/demobank-ui/test.mjs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/demobank-ui/test.mjs b/packages/demobank-ui/test.mjs index 0cba3b292..9ff6055c6 100755 --- a/packages/demobank-ui/test.mjs +++ b/packages/demobank-ui/test.mjs @@ -23,8 +23,9 @@ const allTestFiles = getFilesInDirectory("src", /.test.tsx?$/); await build({ type: "test", source: { - js: allTestFiles, - assets: ["src/index.html"], + js: allTestFiles.files, + assets: [{base:"src",files:["src/index.html"]}], + }, destination: "./dist/test", css: "sass", |