Skip to content

Commit

Permalink
updated release script
Browse files Browse the repository at this point in the history
  • Loading branch information
pelikhan committed Mar 18, 2024
1 parent cc201ca commit 14ac2ae
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "docs",
"type": "module",
"private": true,
"version": "1.15.5",
"version": "1.15.6",
"license": "MIT",
"scripts": {
"dev": "astro dev --host",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
"package": "cd packages/vscode && yarn package:insiders && yarn package",
"release:draft": "npx --yes release-it",
"release:vsix": "npx --yes release-it --no-increment --no-git --github.release --github.update --github.assets=packages/vscode/genaiscript.vsix --github.assets=packages/vscode/genaiscript.insiders.vsix --github.assets=packages/cli/built/genaiscript.cjs --no-github.draft",
"release:npm": "cd packages/cli && npm publish",
"release:npm": "cd packages/cli && npm publish --yarn",
"patch-versions": "npx --yes zx scripts/patch-version.mjs",
"commit-versions": "git add packages/**/package.json && git add docs/package.json && git commit -m '[skip ci] updated version numbers' && git push",
"release": "yarn typecheck && yarn compile && yarn package && yarn release:draft && yarn patch-versions && yarn compile && yarn package && yarn release:vsix && yarn release:npm && yarn commit-versions",
"release": "yarn typecheck && yarn compile && yarn package && yarn release:draft && yarn patch-versions && yarn compile && yarn package && yarn release:vsix && yarn commit-versions",
"bump": "yarn release",
"test:core": "cd packages/core && yarn test",
"test:samples": "cd packages/sample && yarn test",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "genaiscript-cli",
"version": "1.15.5",
"version": "1.15.6",
"main": "built/genaiscript.cjs",
"bin": {
"genaiscript": "./built/genaiscript.cjs"
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "genaiscript-core",
"version": "1.15.5",
"version": "1.15.6",
"main": "src/index.ts",
"license": "MIT",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/sample/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "genaiscript-sample",
"version": "1.15.5",
"version": "1.15.6",
"license": "MIT",
"private": true,
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"displayName": "GenAIScript Insiders",
"description": "Generative AI Scripting.",
"version": "1.15.5",
"version": "1.15.6",
"icon": "icon.png",
"engines": {
"vscode": "^1.86.0"
Expand Down

0 comments on commit 14ac2ae

Please sign in to comment.