Compare commits

...

2 Commits

Author SHA1 Message Date
hykocx 23ef354224 chore: bump version to 1.3.16 2026-04-14 20:15:37 -04:00
hykocx 6cd6ce6f6f build: set esbuildOptions outbase to 'src' in tsup config
Set `options.outbase = 'src'` in the esbuildOptions callback to ensure
output files preserve the correct directory structure relative to the
`src` folder, preventing path flattening during the build process.
2026-04-14 20:15:30 -04:00
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@zen/core",
"version": "1.3.15",
"version": "1.3.16",
"description": "Un CMS Next.js construit sur l'essentiel, rien de plus, rien de moins.",
"repository": {
"type": "git",
+1
View File
@@ -78,6 +78,7 @@ export default defineConfig([
],
bundle: false, // Don't bundle these files
esbuildOptions(options) {
options.outbase = 'src';
options.loader = {
'.js': 'jsx',
'.jsx': 'jsx',