Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Commit

Permalink
build: fix release script
Browse files Browse the repository at this point in the history
  • Loading branch information
Rico Kahler committed Jan 19, 2023
1 parent ef0461c commit f4b81b1
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 47 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ jobs:
run: npm run build

- name: lerna publish
run: lerna publish from-package --dist-tag alpha --no-verify-access --no-git-reset --yes
run: lerna publish from-package --dist-tag alpha --no-git-reset --yes
13 changes: 3 additions & 10 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,6 @@
"test": "jest",
"version": "npx oclif-dev readme && git add README.md"
},
"jest": {
"transform": {
"\\.[jt]sx?$": [
"babel-jest",
{
"rootMode": "upward"
}
]
}
},
"dependencies": {
"@babel/core": "^7.20.12",
"@oclif/command": "^1.8.21",
Expand All @@ -77,6 +67,9 @@
"engines": {
"node": ">=12.22.0"
},
"publishConfig": {
"access": "public"
},
"oclif": {
"commands": "./lib/commands",
"bin": "sanity-codegen",
Expand Down
13 changes: 3 additions & 10 deletions packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,21 +39,14 @@
"sort-package-json": "sort-package-json",
"test": "jest"
},
"jest": {
"transform": {
"\\.[jt]sx?$": [
"babel-jest",
{
"rootMode": "upward"
}
]
}
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"rollup": "^3.10.0"
},
"publishConfig": {
"access": "public"
}
}
6 changes: 0 additions & 6 deletions packages/groq-codegen/.babelrc

This file was deleted.

13 changes: 3 additions & 10 deletions packages/groq-codegen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,6 @@
"sort-package-json": "sort-package-json",
"test": "jest"
},
"jest": {
"transform": {
"\\.[jt]sx?$": [
"babel-jest",
{
"rootMode": "upward"
}
]
}
},
"dependencies": {
"@babel/core": "^7.20.12",
"@babel/generator": "^7.20.7",
Expand Down Expand Up @@ -73,5 +63,8 @@
},
"engines": {
"node": ">=12.22.0"
},
"publishConfig": {
"access": "public"
}
}
13 changes: 3 additions & 10 deletions packages/schema-codegen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,6 @@
"sort-package-json": "sort-package-json",
"test": "jest"
},
"jest": {
"transform": {
"\\.[jt]sx?$": [
"babel-jest",
{
"rootMode": "upward"
}
]
}
},
"dependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
Expand Down Expand Up @@ -75,5 +65,8 @@
},
"engines": {
"node": ">=12.22.0"
},
"publishConfig": {
"access": "public"
}
}
3 changes: 3 additions & 0 deletions packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,8 @@
"lint": ":",
"sort-package-json": "sort-package-json",
"test": ":"
},
"publishConfig": {
"access": "public"
}
}

1 comment on commit f4b81b1

@vercel
Copy link

@vercel vercel bot commented on f4b81b1 Jan 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.