-
Notifications
You must be signed in to change notification settings - Fork 346
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: ✨ Create TS monorepo structure (#3091)
* refactor: ✨ Dual publish typesbundle properly * refactor: ✨ ApiAugment fixed paths * feat: ✨ Added new ScrapeMetadata script * build: 🏗️ add built `/dist` to repo * style: 💄 lint * style: 💄 Exclude dist from editorconfig * fix: 🐛 Fix typegen check CI * refactor: ♻️ Tidy script call * fix: 🐛 Fix tracing CI * refactor: ♻️ Remove dist from repo * remove dist * fix: 📦 Fix packages! * fix: 💚 Fix typegen CI * style: 🚨 pretty * ci: 👷 Disable typegen check
- Loading branch information
1 parent
24de03a
commit 276c527
Showing
33 changed files
with
1,239 additions
and
895 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
# Typescript directories | ||
**/node_modules | ||
**/.yarn | ||
**/dist | ||
|
||
# Spec/Wasm build directory | ||
/build/ | ||
|
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 |
---|---|---|
@@ -1,4 +1,2 @@ | ||
# ignore files generated by typescript | ||
dist/ | ||
**.json | ||
tsconfig.tsbuildinfo |
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"name": "moonbeam", | ||
"version": "1.0.0", | ||
"description": "Moonbeam Network Monorepo", | ||
"private": true, | ||
"type": "module", | ||
"workspaces": [ | ||
"test", | ||
"typescript-api", | ||
"moonbeam-types-bundle" | ||
], | ||
"scripts": { | ||
"clean-all": "rm -rf node_modules && pnpm -r clean", | ||
"build": "pnpm -r build", | ||
"postinstall": "pnpm build", | ||
"lint": "pnpm -r lint", | ||
"fmt": "pnpm -r fmt", | ||
"fmt:fix": "pnpm -r fmt:fix" | ||
}, | ||
"dependencies": { | ||
"@polkadot/api": "14.3.1", | ||
"@polkadot/api-augment": "14.3.1", | ||
"@polkadot/api-derive": "14.3.1", | ||
"@polkadot/keyring": "13.2.3", | ||
"@polkadot/rpc-provider": "14.3.1", | ||
"@polkadot/types": "14.3.1", | ||
"@polkadot/types-codec": "14.3.1", | ||
"@polkadot/util": "13.2.3", | ||
"@polkadot/util-crypto": "13.2.3", | ||
"ethers": "6.13.4", | ||
"tsup": "8.3.5" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^22.10.1", | ||
"eslint": "^8.55.0", | ||
"prettier": "2.8.8", | ||
"tsx": "^4.19.2", | ||
"typescript": "^5.3.3" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC" | ||
} |
Oops, something went wrong.