We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8af8f25 commit bb3a1e9Copy full SHA for bb3a1e9
.github/workflows/release.yml
@@ -21,3 +21,5 @@ jobs:
21
- run: npm publish
22
env:
23
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
24
+ - run: cd language-extensions
25
+ - run: npm publish
package.json
@@ -33,7 +33,7 @@
33
"fix:prettier": "prettier --write .",
34
"check:language-extensions": "tsc --strict language-extensions/index.d.ts",
35
"preversion": "npm run build && npm test",
36
- "postversion": "git push && git push --tags"
+ "postversion": "git push && git push --tags && NEW_VERSION=$(npm pkg get version --workspaces=false | tr -d \") && cd language-extensions && npm version $NEW_VERSION && git push && git push --tags"
37
},
38
"bin": {
39
"tstl": "dist/tstl.js"
0 commit comments