Skip to content

Commit

Permalink
Update AIK to 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Fryuni committed Mar 22, 2024
1 parent dfee1eb commit 0944d7c
Show file tree
Hide file tree
Showing 7 changed files with 108 additions and 101 deletions.
5 changes: 5 additions & 0 deletions .changeset/big-shoes-melt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@inox-tools/sitemap-ext": patch
---

Distribute with AIK as a dependency instead of bundled
2 changes: 1 addition & 1 deletion examples/inline-mod-aik/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
},
"devDependencies": {
"@inox-tools/aik-mod": "workspace:^",
"astro-integration-kit": "^0.7.0"
"astro-integration-kit": "^0.7.1"
},
"overrides": {
"vite": "$vite"
Expand Down
2 changes: 1 addition & 1 deletion packages/aik-mod/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"devDependencies": {
"@types/node": "^20.11.25",
"astro": "^4.4.15",
"astro-integration-kit": "^0.7.0",
"astro-integration-kit": "^0.7.1",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"vite": "^5.1.5"
Expand Down
3 changes: 1 addition & 2 deletions packages/aik-route-config/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ export default defineConfig({
clean: true,
splitting: false,
minify: false,
external: ['astro', 'astro-integration-kit', 'vite', 'recast', /@astrojs/, /@vitejs/],
noExternal: [],
external: ['astro', 'astro-integration-kit', 'vite', 'recast'],
treeshake: 'smallest',
tsconfig: 'tsconfig.json',
});
5 changes: 2 additions & 3 deletions packages/sitemap-ext/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,13 @@
},
"dependencies": {
"@astrojs/sitemap": "^3.1.1",
"recast": "^0.23.6",
"@inox-tools/aik-route-config": "workspace:^",
"astro-integration-kit": "^0.7.1",
"sitemap": "^7.1.1"
},
"devDependencies": {
"@inox-tools/aik-route-config": "workspace:^",
"@types/node": "^20.11.25",
"astro": "^4.4.15",
"astro-integration-kit": "^0.7.0",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"vite": "^5.1.5"
Expand Down
11 changes: 9 additions & 2 deletions packages/sitemap-ext/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,15 @@ export default defineConfig({
clean: true,
splitting: true,
minify: false,
external: ['astro', 'recast', './virtual.d.ts', 'vite', /@astrojs/, /@vitejs/],
noExternal: ['astro-integration-kit', '@inox-tools/aik-route-config'],
external: [
'astro',
'astro-integration-kit',
'@inox-tools/aik-route-config',
'@astrojs/sitemap',
'./virtual.d.ts',
'vite',
],
noExternal: [],
treeshake: 'smallest',
tsconfig: 'tsconfig.json',
});
Loading

0 comments on commit 0944d7c

Please sign in to comment.