Skip to content

Commit eda95d6

Browse files
Fix broken bundling and ship holes panel CSS (#84)
1 parent 40b0ea4 commit eda95d6

4 files changed

Lines changed: 3919 additions & 128 deletions

File tree

esbuild.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
const esbuild = require('esbuild');
2+
const copyPlugin = require('esbuild-plugin-copy').default;
23

34
const watch = process.argv.includes('--watch');
45

@@ -20,7 +21,13 @@ async function main() {
2021
logLevel: 'silent',
2122
plugins: [
2223
/* add to the end of plugins array */
23-
esbuildProblemMatcherPlugin
24+
esbuildProblemMatcherPlugin,
25+
copyPlugin({
26+
assets: {
27+
from: ['./src/holesPanel/holes.css'],
28+
to: ['./holesPanel']
29+
}
30+
})
2431
]
2532
});
2633
if (watch) {

0 commit comments

Comments
 (0)