-
Notifications
You must be signed in to change notification settings - Fork 41
Conversation
@@ -16,14 +16,21 @@ | |||
"type-check:watch": "npm run type-check -- --watch", | |||
"build": "yarn run build:tsc && yarn run build:snap", | |||
"build:tsc": "tsc -p tsconfig.build.json --pretty --outDir build", | |||
"build:snap": "nf-snap build --stripComments --debug --verbose", | |||
"build:snap": "yarn build:snap:bundle && yarn build:snap:postprocess && yarn build:snap:eval", | |||
"build:snap:bundle": "nf-snap build --stripComments --debug --verbose --eval false", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rekmarks is my pr with comment stripping released in snaps-cli? Maybe we can switch to official version instead of our fork
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup! The option is exactly the same as you have here. snaps-cli
is now released under this package: https://www.npmjs.com/package/@metamask/snaps-cli
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah than we dont need our fork anymore 😄
I'm not sure why the build is failing as of 7d3c5f8, it passes for me locally. |
These changes make
filsnap
compatible with the latest version of MetaMask Snaps.Note: This PR updates the TypeScript and
react-script
version of the monorepo. This was necessary for compatibility reasons with@metamask/
dependencies.