chore: rename again `inlineOnly` -> `deps.onlyAllowBundle` -> `deps.onlyBundle`

thanks to https://github.com/rolldown/tsdown/pull/819
This commit is contained in:
Tony 2026-03-16 18:24:08 +08:00
parent 7cff0aa0f3
commit 7b92b63c90
5 changed files with 5 additions and 5 deletions

View File

@ -14,6 +14,6 @@ export default defineConfig({
},
external: ['@cloudflare/containers'],
deps: {
onlyAllowBundle: false,
onlyBundle: false,
},
});

View File

@ -8,6 +8,6 @@ export default defineConfig({
copy: ['lib/assets'],
outDir: 'dist-lib',
deps: {
onlyAllowBundle: false,
onlyBundle: false,
},
});

View File

@ -10,6 +10,6 @@ export default defineConfig({
clean: true,
// copy: [{ from: 'lib/assets', to: 'dist' }],
deps: {
onlyAllowBundle: false,
onlyBundle: false,
},
});

View File

@ -96,6 +96,6 @@ export default defineConfig({
'../assets/build/routes.json': path.resolve('./assets/build/routes-worker.js'),
},
deps: {
onlyAllowBundle: false,
onlyBundle: false,
},
});

View File

@ -7,6 +7,6 @@ export default defineConfig({
clean: true,
copy: ['lib/assets'],
deps: {
onlyAllowBundle: false,
onlyBundle: false,
},
});