From d1f621a02bd004f2bb74fb8cfc9d838c06f7161c Mon Sep 17 00:00:00 2001 From: Pranav C Date: Fri, 5 Apr 2024 12:22:09 +0530 Subject: [PATCH 1/2] chore: sync package-lock.json Signed-off-by: Pranav C --- pnpm-lock.yaml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d2a8504d75..18760699f8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -154,7 +154,7 @@ importers: specifier: ^0.11.0 version: 0.11.0 nocodb-sdk: - specifier: 0.205.0 + specifier: workspace:^ version: link:../nocodb-sdk papaparse: specifier: ^5.4.1 @@ -701,7 +701,7 @@ importers: specifier: ^0.4.4 version: 0.4.4(@nestjs/common@10.3.7)(@nestjs/core@10.3.7)(@nestjs/throttler@5.1.2)(ioredis@5.3.2)(reflect-metadata@0.2.1) nocodb-sdk: - specifier: 0.205.0 + specifier: workspace:^ version: link:../nocodb-sdk nodemailer: specifier: ^6.9.13 @@ -23909,9 +23909,6 @@ packages: /sqlite3@5.1.6: resolution: {integrity: sha512-olYkWoKFVNSSSQNvxVUfjiVbz3YtBwTJj+mfV5zpHmqW3sELx2Cf4QCdirMelhM5Zh+KDVaKgQHqCxrqiWHybw==} requiresBuild: true - peerDependenciesMeta: - node-gyp: - optional: true dependencies: '@mapbox/node-pre-gyp': 1.0.11 node-addon-api: 4.3.0 @@ -23926,9 +23923,6 @@ packages: /sqlite3@5.1.7: resolution: {integrity: sha512-GGIyOiFaG+TUra3JIfkI/zGP8yZYLPQ0pl1bH+ODjiX57sPhrLU5sQJn1y9bDKZUFYkX1crlrPfSYt0BKKdkog==} requiresBuild: true - peerDependenciesMeta: - node-gyp: - optional: true dependencies: bindings: 1.5.0 node-addon-api: 7.0.0 From cf0d969fc8b337a7aebd8fb9ded98c97da2238d6 Mon Sep 17 00:00:00 2001 From: Pranav C Date: Fri, 5 Apr 2024 12:24:33 +0530 Subject: [PATCH 2/2] chore: run pnpm bootstrap to update package-lock.json Signed-off-by: Pranav C --- .github/workflows/sync-to-develop.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/sync-to-develop.yml b/.github/workflows/sync-to-develop.yml index 2f95378921..ca67059ba7 100644 --- a/.github/workflows/sync-to-develop.yml +++ b/.github/workflows/sync-to-develop.yml @@ -13,6 +13,10 @@ jobs: uses: actions/setup-node@v3 with: node-version: 18.19.1 + - name: Setup pnpm + uses: pnpm/action-setup@v2 + with: + version: 8 - name: Checkout uses: actions/checkout@v3 with: @@ -39,6 +43,7 @@ jobs: git config user.name 'github-actions[bot]' git config user.email 'github-actions[bot]@users.noreply.github.com' revertSDK=true node scripts/upgradeNocodbSdk.js + pnpm bootstrap git add . git diff-index --quiet HEAD || git commit -m "chore: update sdk path" git push origin $BRANCH_NAME