Skip to content

Commit

Permalink
Fix typedoc plugin invocation, rename clean script to clean-build
Browse files Browse the repository at this point in the history
  • Loading branch information
rafern committed Jan 18, 2024
1 parent 77e8414 commit 6498253
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 30 deletions.
46 changes: 23 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
"lint-fix": "eslint src/ --ext .ts --fix",
"build": "tsc",
"dev": "tsc --watch",
"docs": "typedoc --options typedoc.json",
"docs": "typedoc --options typedoc.json --plugin typedoc-plugin-external-resolver",
"test": "echo Dummy test - TODO implement tests",
"clean": "shx rm -rf dist/*",
"pack": "npm run clean && npm run lint && npm run test && npm run docs && npm run build && npm pack"
"clean-build": "shx rm -rf dist/*",
"pack": "npm run clean-build && npm run lint && npm run test && npm run docs && npm run build && npm pack"
},
"files": [
"dist"
Expand Down Expand Up @@ -48,9 +48,9 @@
"lazy-widgets": "^0.7.7",
"shx": "^0.3.4",
"tslib": "^2.4.1",
"typedoc": "^0.23.24",
"typedoc-plugin-external-resolver": "^1.0.1",
"typescript": "^4.9.4"
"typedoc": "^0.25.4",
"typedoc-plugin-external-resolver": "^1.0.3",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@wonderlandengine/api": ">= 1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"compilerOptions": {
"outDir": "dist",
"target": "es6",
"module": "es6",
"module": "NodeNext",
"lib": ["ESNext", "dom"],
"sourceMap": true,
"inlineSources": true,
Expand Down

0 comments on commit 6498253

Please sign in to comment.