We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0781b88 commit 9322427Copy full SHA for 9322427
utils/bump/extension-manifests.js
@@ -21,7 +21,7 @@
21
fs.writeFileSync(cache.paths.bumpUtils, (await (await fetch(
22
'https://cdn.jsdelivr.net/gh/adamlui/ai-web-extensions@latest/utils/bump/bump-utils.min.mjs')).text()
23
).replace(/^\/\*\*[\s\S]*?\*\/\s*/, '')) // strip JSD header minification comment
24
- const bump = await import('../../../utils/bump/bump-utils.mjs')
+ const bump = await import(`file://${cache.paths.bumpUtils}`) ; fs.unlinkSync(cache.paths.bumpUtils)
25
26
// Parse ARGS
27
const args = process.argv.slice(2),
0 commit comments