@knitli/astro-docs-template 0.4.6 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/config.ts +0 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knitli/astro-docs-template",
3
- "version": "0.4.6",
3
+ "version": "0.5.1",
4
4
  "description": "Opinionated Astro + Starlight docs site template with Knitli branding",
5
5
  "keywords": [
6
6
  "knitli",
@@ -53,7 +53,7 @@
53
53
  "@astrojs/starlight": "^0.38.3",
54
54
  "@biomejs/biome": "^2.4.2",
55
55
  "@knitli/docs-components": "*",
56
- "@knitli/tsconfig": "*",
56
+ "@knitli/tsconfig": "0.2.4",
57
57
  "@nuasite/llm-enhancements": "^0.23.0",
58
58
  "@types/bun": "^1.3.4",
59
59
  "@types/mdast": "^4.0.4",
package/src/config.ts CHANGED
@@ -497,7 +497,6 @@ export default async function createConfig(options: DocsTemplateOptions) {
497
497
  external: ["shiki", "shiki-esbuild"],
498
498
  output: {
499
499
  format: "es",
500
- dir: `${rootDir}/dist/_astro/`,
501
500
  compact: true,
502
501
  interop: "esModule",
503
502
  experimentalMinChunkSize: 10000,
@@ -514,9 +513,6 @@ export default async function createConfig(options: DocsTemplateOptions) {
514
513
  objectShorthand: true,
515
514
  symbols: true,
516
515
  },
517
- entryFileNames: "assets/[name]-[hash].js",
518
- chunkFileNames: "assets/[name]-[hash].js",
519
- assetFileNames: "assets/[name]-[hash][extname]",
520
516
  },
521
517
  treeshake: "smallest",
522
518
  },