@flowscripter/dynamic-plugin-framework 1.5.0 → 1.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/README.md +1 -1
  2. package/package.json +7 -1
package/README.md CHANGED
@@ -252,7 +252,7 @@ Lint:
252
252
 
253
253
  Generate HTML API Documentation:
254
254
 
255
- `bunx typedoc --readme none index.ts`
255
+ `bunx typedoc index.ts`
256
256
 
257
257
  The following diagram provides an overview of the main internal classes:
258
258
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowscripter/dynamic-plugin-framework",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "Dynamic plugin framework for Bun based on Javascript Modules and import() function",
5
5
  "keywords": [
6
6
  "bun",
@@ -27,5 +27,11 @@
27
27
  },
28
28
  "peerDependencies": {
29
29
  "typescript": "^6.0.3"
30
+ },
31
+ "typedocOptions": {
32
+ "readme": "none",
33
+ "exclude": [
34
+ "tests/**"
35
+ ]
30
36
  }
31
37
  }