-
-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Explanation `ts-bridge` finally supports project references. In this PR, I've swapped out `tsup` for `ts-bridge` everywhere. ## References Related to MetaMask/metamask-module-template#247, MetaMask/utils#182. Closes #4333. ## Checklist - [x] I've updated the test suite for new or updated code as appropriate - [x] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [x] I've highlighted breaking changes using the "BREAKING" category above as appropriate
- Loading branch information
Showing
78 changed files
with
487 additions
and
1,047 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -12,12 +12,10 @@ | |
"packages/*" | ||
], | ||
"scripts": { | ||
"build": "yarn run build:source && yarn run build:types", | ||
"build": "yarn ts-bridge --project tsconfig.build.json --verbose", | ||
"build:clean": "rimraf dist '**/*.tsbuildinfo' && yarn build", | ||
"build:docs": "yarn workspaces foreach --all --no-private --parallel --interlaced --verbose run build:docs", | ||
"build:source": "yarn workspaces foreach --all --no-private --parallel --interlaced --verbose run build", | ||
"build:types": "tsc --build tsconfig.build.json --verbose", | ||
"build:watch": "yarn run build --watch", | ||
"changelog:update": "yarn workspaces foreach --all --no-private --parallel --interlaced --verbose run changelog:update", | ||
"changelog:validate": "yarn workspaces foreach --all --no-private --parallel --interlaced --verbose run changelog:validate", | ||
"create-package": "ts-node scripts/create-package", | ||
|
@@ -45,7 +43,6 @@ | |
"resolutions": { | ||
"[email protected]": "^6.5.7", | ||
"fast-xml-parser@^4.3.4": "^4.4.1", | ||
"tsup@^8.0.2": "patch:tsup@npm%3A8.0.2#./.yarn/patches/tsup-npm-8.0.2-86e40f68a7.patch", | ||
"[email protected]": "^7.5.10" | ||
}, | ||
"devDependencies": { | ||
|
@@ -62,6 +59,7 @@ | |
"@metamask/eth-json-rpc-provider": "^4.1.3", | ||
"@metamask/json-rpc-engine": "^9.0.2", | ||
"@metamask/utils": "^9.1.0", | ||
"@ts-bridge/cli": "^0.5.1", | ||
"@types/jest": "^27.4.1", | ||
"@types/lodash": "^4.14.191", | ||
"@types/node": "^16.18.54", | ||
|
@@ -93,7 +91,6 @@ | |
"semver": "^7.6.3", | ||
"simple-git-hooks": "^2.8.0", | ||
"ts-node": "^10.9.1", | ||
"tsup": "^8.0.2", | ||
"typescript": "~5.2.2", | ||
"yargs": "^17.7.2" | ||
}, | ||
|
@@ -106,8 +103,7 @@ | |
"@lavamoat/preinstall-always-fail": false, | ||
"@keystonehq/bc-ur-registry-eth>hdkey>secp256k1": true, | ||
"babel-runtime>core-js": false, | ||
"simple-git-hooks": false, | ||
"tsup>esbuild": true | ||
"simple-git-hooks": false | ||
} | ||
} | ||
} |
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
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.