Skip to content

Commit

Permalink
build: update build tools/scripts to use bun
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Nov 5, 2023
1 parent 336bd1b commit 5e94c2d
Show file tree
Hide file tree
Showing 189 changed files with 242 additions and 425 deletions.
87 changes: 43 additions & 44 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,45 @@
{
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"examples/*",
"tools"
],
"devDependencies": {
"@microsoft/api-documenter": "^7.23.9",
"@microsoft/api-extractor": "^7.38.0",
"@types/node": "^20.8.7",
"all-contributors-cli": "^6.26.1",
"esbuild": "^0.19.5",
"html-minifier-terser": "^7.2.0",
"rimraf": "^5.0.5",
"tools": "workspace:^",
"ts-node": "^10.9.1",
"typedoc": "^0.25.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@ygoe/msgpack": "^1.0.3"
},
"scripts": {
"@thi.ng": "yarn workspaces foreach -pv --include '@thi.ng/*'",
"@example": "yarn workspaces foreach -pv --include '@example/*'",
"build": "yarn @thi.ng -t run build",
"clean": "yarn @thi.ng run clean",
"doc": "yarn @thi.ng run doc",
"doc:ae": "yarn @thi.ng run doc:ae && scripts/collect-apis",
"doc:readme": "yarn @thi.ng run doc:readme",
"doc:stats": "yarn @thi.ng run doc:stats",
"doc:examples": "tools:node-esm tools/src/readme-examples.ts",
"examples": "yarn @example run build",
"pub": "yarn @thi.ng npm publish --tolerate-republish && yarn doc && tools:node-esm tools/src/deploy-docs.ts",
"test": "yarn build && yarn test:only",
"test:only": "yarn @thi.ng run test",
"tool:deps": "tools:node-esm tools/src/adjacency.ts",
"tool:exports": "tools:node-esm tools/src/check-exports.ts",
"tool:imports": "tools:node-esm tools/src/check-imports.ts",
"tool:prune": "tools:node-esm tools/src/prune-changelogs.ts",
"tool:searchindex": "tools:node-esm tools/src/build-search-index.ts"
},
"packageManager": "yarn@3.2.1"
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"examples/*",
"tools"
],
"devDependencies": {
"@microsoft/api-documenter": "^7.23.9",
"@microsoft/api-extractor": "^7.38.0",
"@types/node": "^20.8.7",
"all-contributors-cli": "^6.26.1",
"esbuild": "^0.19.5",
"html-minifier-terser": "^7.2.0",
"rimraf": "^5.0.5",
"tools": "workspace:^",
"ts-node": "^10.9.1",
"typedoc": "^0.25.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@ygoe/msgpack": "^1.0.3"
},
"scripts": {
"@thi.ng": "yarn workspaces foreach -pv --include '@thi.ng/*'",
"@example": "yarn workspaces foreach -pv --include '@example/*'",
"build": "yarn @thi.ng -t run build",
"clean": "yarn @thi.ng run clean",
"doc": "yarn @thi.ng run doc",
"doc:ae": "yarn @thi.ng run doc:ae && scripts/collect-apis",
"doc:readme": "yarn @thi.ng run doc:readme",
"doc:examples": "bun tools/src/readme-examples.ts",
"examples": "yarn @example run build",
"pub": "yarn @thi.ng npm publish --tolerate-republish && yarn doc && bun tools/src/deploy-docs.ts",
"test": "yarn build && yarn test:only",
"test:only": "yarn @thi.ng run test",
"tool:deps": "bun tools/src/adjacency.ts",
"tool:exports": "bun tools/src/check-exports.ts",
"tool:imports": "bun tools/src/check-imports.ts",
"tool:prune": "bun tools/src/prune-changelogs.ts",
"tool:searchindex": "bun tools/src/build-search-index.ts"
},
"packageManager": "yarn@3.2.1"
}
3 changes: 1 addition & 2 deletions packages/adapt-dpi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/adjacency/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc api decorators mixins",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/args/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/arrays/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/associative/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc internal",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/atom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/axidraw/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/base-n/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/bench/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc format",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/bencode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/binary/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/bitfield/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/bitstream/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/boids/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/cache/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/cellular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/checks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/color-palettes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test",
"build:binary": "tools:node-esm tools/encode.ts",
Expand Down
3 changes: 1 addition & 2 deletions packages/color/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc api css hcy hsi hsl hsv int internal lab lch oklab oklch rgb srgb xyy xyz ycc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test",
"tool:limits": "tools:node-esm tools/limits.ts",
Expand Down
3 changes: 1 addition & 2 deletions packages/colored-noise/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/compare/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/complex/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/compose/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/csp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test",
"testasync": "tsc -p test && node build/test/async.js",
Expand Down
3 changes: 1 addition & 2 deletions packages/csv/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/date/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc internal i18n",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/dcons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/defmulti/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/dgraph-dot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/dgraph/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "testament test"
},
Expand Down
Loading

0 comments on commit 5e94c2d

Please sign in to comment.