@flowscripter/template-bun-wasm-rust-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.
package/README.md CHANGED
@@ -57,7 +57,7 @@ Lint:
57
57
 
58
58
  Generate HTML API Documentation:
59
59
 
60
- `bunx typedoc --readme none index.ts`
60
+ `bunx typedoc index.ts`
61
61
 
62
62
  ## Documentation
63
63
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowscripter/template-bun-wasm-rust-library",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "Project template for a Rust library compiled to WASM exposed as a Bun module",
5
5
  "keywords": [
6
6
  "bun",
@@ -35,5 +35,11 @@
35
35
  },
36
36
  "peerDependencies": {
37
37
  "typescript": "^6.0.3"
38
+ },
39
+ "typedocOptions": {
40
+ "readme": "none",
41
+ "exclude": [
42
+ "tests/**"
43
+ ]
38
44
  }
39
45
  }