Fix/0.5-compatability-tests (#293)
* Working changes * Fix window undefined bug by updating lib * Fix TransformControlsImpl import * Fix compatibility tests>simple debuggable examples
This commit is contained in:
parent
494c60d0c3
commit
735bd983a5
24 changed files with 572 additions and 574 deletions
|
@ -41,7 +41,14 @@ async function createBundles() {
|
|||
metafile: true,
|
||||
}
|
||||
|
||||
const result = await build(esbuildConfig)
|
||||
const result = await Promise.all([
|
||||
build(esbuildConfig),
|
||||
build({
|
||||
...esbuildConfig,
|
||||
outfile: path.join(__dirname, '../dist/index.esm.js'),
|
||||
format: 'esm',
|
||||
}),
|
||||
])
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -91,6 +98,13 @@ async function createBundles() {
|
|||
metafile: true,
|
||||
}
|
||||
|
||||
const result = await build(esbuildConfig)
|
||||
const result = await Promise.all([
|
||||
build(esbuildConfig),
|
||||
build({
|
||||
...esbuildConfig,
|
||||
outfile: path.join(__dirname, '../dist/extension/index.esm.js'),
|
||||
format: 'esm',
|
||||
}),
|
||||
])
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue