Browse Source

Merge pull request #7409 from nocodb/fix/executable-build-fix

Executable build fix - override sqlite version
pull/7410/head
Pranav C 8 months ago committed by GitHub
parent
commit
67e9f8a456
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nc-gui/package.json
  2. 1618
      pnpm-lock.yaml
  3. 9
      scripts/pkg-executable/package.json

2
packages/nc-gui/package.json

@ -86,7 +86,7 @@
"tinycolor2": "^1.4.2",
"turndown": "^7.1.2",
"unique-names-generator": "^4.7.1",
"v3-infinite-loading": "^1.2.2",
"v3-infinite-loading": "^1.3.1",
"validator": "^13.7.0",
"vue-barcode-reader": "^1.0.3",
"vue-chartjs": "^5.2.0",

1618
pnpm-lock.yaml

File diff suppressed because it is too large Load Diff

9
scripts/pkg-executable/package.json

@ -27,9 +27,12 @@
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.3",
"nocodb": "0.202.10",
"@nestjs/common": "^10.2.10",
"@nestjs/core": "^10.2.10"
"@nestjs/core": "^10.2.10",
"express": "^4.17.3",
"nocodb": "0.202.10"
},
"overrides": {
"sqlite3": "5.1.6"
}
}

Loading…
Cancel
Save