@flowscripter/template-bun-library 1.2.0 → 1.2.2

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/README.md +1 -1
  2. package/package.json +7 -1
package/README.md CHANGED
@@ -48,7 +48,7 @@ Lint:
48
48
 
49
49
  Generate HTML API Documentation:
50
50
 
51
- `bunx typedoc --readme none index.ts`
51
+ `bunx typedoc index.ts`
52
52
 
53
53
  ## Documentation
54
54
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowscripter/template-bun-library",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "Project template for a Bun library",
5
5
  "keywords": [
6
6
  "bun",
@@ -26,5 +26,11 @@
26
26
  },
27
27
  "peerDependencies": {
28
28
  "typescript": "^6.0.3"
29
+ },
30
+ "typedocOptions": {
31
+ "readme": "none",
32
+ "exclude": [
33
+ "tests/**"
34
+ ]
29
35
  }
30
36
  }