Skip to content

Commit

Permalink
fix files
Browse files Browse the repository at this point in the history
  • Loading branch information
Narazaka committed Jul 13, 2023
1 parent 25154d7 commit 4b2a86a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@
"*.js",
"*.d.ts",
"util/*.js",
"util/*.d.ts"
"util/*.d.ts",
"util/graphic/*.js",
"util/graphic/*.d.ts"
],
"dependencies": {
"nanoid": "^4.0.2"
Expand Down
6 changes: 5 additions & 1 deletion typedoc.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ function listFiles(root) {

/** @type {import('typedoc').TypeDocOptions} */
module.exports = {
entryPoints: [...listFiles("src"), ...listFiles("src/util")],
entryPoints: [
...listFiles("src"),
...listFiles("src/util"),
...listFiles("src/util/graphic"),
],
basePath: "src",
navigationLinks: {
Github: "https://github.com/Narazaka/verseengine-modules",
Expand Down
1 change: 1 addition & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export default defineConfig({
entry: {
...toMap(listFiles("src"), "src"),
...toMap(listFiles("src/util"), "src"),
...toMap(listFiles("src/util/graphic"), "src"),
},
name: "verseengineModules",
formats: ["es"],
Expand Down

0 comments on commit 4b2a86a

Please sign in to comment.