Skip to content

Commit 7e3b9ad

Browse files
committed
[CI/CD] automation token
1 parent 4d619f9 commit 7e3b9ad

File tree

8 files changed

+7
-8
lines changed

8 files changed

+7
-8
lines changed

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262

6363
- name: Publish to npm (only on main branch)
6464
if: github.ref == 'refs/heads/main'
65-
run: cd ./packages/main && npm publish --access public
65+
run: cd ./packages/main && npm publish --verbose --access public
6666

6767

6868
# - name: Configure Yarn authentication

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
nodeLinker: pnp
22
npmRegistryServer: "https://registry.npmjs.org/"
33
npmAlwaysAuth: true
4-
npmAuthToken: ${NODE_AUTH_TOKEN}
4+
npmAuthToken: ${NPM_TOKEN}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"workspaces": [
44
"packages/*"
55
],
6-
"version": "0.1.14",
6+
"version": "0.1.26",
77
"packageManager": "yarn@4.5.3",
88
"scripts": {
99
"build": "yarn workspaces foreach --all npm run build",

packages/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spreadsheet-orm/docs",
3-
"version": "0.1.14",
3+
"version": "0.1.26",
44
"private": true,
55
"dependencies": {
66
"spreadsheet-orm": "workspace:*"

packages/main/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "spreadsheet-orm",
3-
"version": "0.1.14",
3+
"version": "0.1.26",
44
"description": "ORM for Google Spreadsheet - Query Builder and Schema Management for spreadsheet database",
55
"keywords": [
66
"google-spreadsheet",
@@ -38,8 +38,7 @@
3838
"bundle": "yarn node esbuild.config.js",
3939
"build": "yarn run clean && tsc -p tsconfig.build.json && yarn run bundle",
4040
"start": "tsx src/index.ts",
41-
"dev": "nodemon --exec tsx src/index.ts",
42-
"publish": "yarn publish"
41+
"dev": "nodemon --exec tsx src/index.ts"
4342
},
4443
"exports": {
4544
".": {

packages/test/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spreadsheet-orm/test",
3-
"version": "0.1.14",
3+
"version": "0.1.26",
44
"private": true,
55
"description": "Test suite for spreadsheet-orm",
66
"scripts": {

src/core/DML/implements/SelectBuilder.ts

Whitespace-only changes.

src/decorator/ExecuteAllPrototypes.ts

Whitespace-only changes.

0 commit comments

Comments
 (0)