Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
timeout-minutes: 30
permissions:
contents: write
id-token: write # Required for OIDC trusted publishing
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -30,6 +31,9 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 22.x
registry-url: 'https://registry.npmjs.org/'
- name: Upgrade npm for OIDC support
run: npm install -g npm@11.7.0
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> "$GITHUB_OUTPUT"
Expand Down Expand Up @@ -59,12 +63,10 @@ jobs:
run: yarn lerna run --concurrency 1 build
env:
NODE_OPTIONS: --max_old_space_size=4096
- name: Set NPM token
run: echo //registry.npmjs.org/:_authToken="$NPM_TOKEN" > ~/.npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: NPM publish
run: ./node_modules/.bin/lerna publish from-package --yes
env:
NPM_CONFIG_PROVENANCE: true

native_linux:
# Please use minimal possible version of ubuntu, because it produces constraint on glibc
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
],
"nohoist": [
"packages/cubejs-client-ngx/*",
"**/vue/*"
"**/vue/*",
"**/inquirer"
]
},
"scripts": {
Expand All @@ -27,7 +28,7 @@
"author": "Cube Dev, Inc.",
"dependencies": {
"core-js": "^3.34.0",
"lerna": "^8.2.2"
"lerna": "^9.0.0"
},
"files": [
"src",
Expand Down
5 changes: 5 additions & 0 deletions packages/cubejs-backend-cloud/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
"node": "^14.0.0 || ^16.0.0 || >=17.0.0"
},
"author": "Cube Dev, Inc.",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
"directory": "packages/cubejs-backend-cloud"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.24.5",
Expand Down
3 changes: 2 additions & 1 deletion packages/cubejs-backend-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"typings": "dist/js/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/cube-js/cube.git"
"url": "https://github.com/cube-js/cube.git",
"directory": "packages/cubejs-backend-native"
},
"scripts": {
"tsc": "tsc",
Expand Down
5 changes: 5 additions & 0 deletions packages/cubejs-backend-shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@
"node": "^14.0.0 || ^16.0.0 || >=17.0.0"
},
"author": "Cube Dev, Inc.",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
"directory": "packages/cubejs-backend-shared"
},
"license": "Apache-2.0",
"devDependencies": {
"@cubejs-backend/linter": "1.5.13",
Expand Down
2 changes: 1 addition & 1 deletion packages/cubejs-client-vue3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"engines": {},
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.js.git",
"url": "https://github.com/cube-js/cube.git",
"directory": "packages/cubejs-client-vue3"
},
"description": "Vue.js 3 components for cube.js",
Expand Down
5 changes: 5 additions & 0 deletions packages/cubejs-templates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"version": "1.5.13",
"description": "Cube.js Templates helpers",
"author": "Cube Dev, Inc.",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
"directory": "packages/cubejs-templates"
},
"license": "Apache-2.0",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
Expand Down
5 changes: 5 additions & 0 deletions packages/cubejs-testing-drivers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"version": "1.5.13",
"description": "Cube.js drivers test suite",
"author": "Cube Dev, Inc.",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
"directory": "packages/cubejs-testing-drivers"
},
"license": "MIT",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
Expand Down
5 changes: 5 additions & 0 deletions packages/cubejs-testing-shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"version": "1.5.13",
"description": "Cube.js Testing Helpers",
"author": "Cube Dev, Inc.",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
"directory": "packages/cubejs-testing-shared"
},
"license": "Apache-2.0",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
Expand Down
5 changes: 5 additions & 0 deletions packages/cubejs-testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"version": "1.5.13",
"description": "Cube.js e2e tests",
"author": "Cube Dev, Inc.",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
"directory": "packages/cubejs-testing"
},
"license": "Apache-2.0",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/cubejs-vertica-driver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"version": "1.5.13",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.js.git",
"url": "https://github.com/cube-js/cube.git",
"directory": "packages/cubejs-vertica-driver"
},
"engines": {
Expand Down
5 changes: 5 additions & 0 deletions rust/cubesql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
"index.js"
],
"author": "Cube Dev, Inc.",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
"directory": "rust/cubesql"
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
Expand Down
5 changes: 5 additions & 0 deletions rust/cubestore/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@
"bin"
],
"author": "Cube Dev, Inc.",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
"directory": "rust/cubestore"
},
"license": "Apache-2.0",
"devDependencies": {
"@cubejs-backend/linter": "1.5.13",
Expand Down
Loading
Loading