-
-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(yarn3): Using workspaces for local tools
Improving the overall build ergonomics - introduced a tools workspaces - imported it in all needed packages/examples - inclusive project root
- Loading branch information
ja0nz
committed
Nov 17, 2021
1 parent
51bf3ae
commit bf7a404
Showing
172 changed files
with
1,138 additions
and
1,579 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,8 @@ | |
"type": "module", | ||
"workspaces": [ | ||
"packages/*", | ||
"examples/*" | ||
"examples/*", | ||
"tools" | ||
], | ||
"devDependencies": { | ||
"@microsoft/api-documenter": "^7.13.68", | ||
|
@@ -17,6 +18,7 @@ | |
"html-minifier-terser": "^6.0.2", | ||
"rimraf": "^3.0.2", | ||
"snowpack": "^3.8.8", | ||
"tools": "workspace:^", | ||
"ts-node": "^10.4.0", | ||
"typedoc": "^0.22.8", | ||
"typescript": "4.4.4" | ||
|
@@ -32,16 +34,16 @@ | |
"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": "scripts/node-esm tools/src/readme-examples.ts", | ||
"doc:examples": "tools:node-esm tools/src/readme-examples.ts", | ||
"examples": "scripts/build-examples", | ||
"pub": "yarn @thi.ng npm publish --tolerate-republish && yarn doc && scripts/node-esm tools/src/deploy-docs.ts", | ||
"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": "scripts/node-esm tools/src/adjacency.ts", | ||
"tool:exports": "scripts/node-esm tools/src/check-exports.ts", | ||
"tool:imports": "scripts/node-esm tools/src/check-imports.ts", | ||
"tool:prune": "scripts/node-esm tools/src/prune-changelogs.ts", | ||
"tool:searchindex": "scripts/node-esm tools/src/build-search-index.ts" | ||
"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": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.