chore(monorepo): reintegrate update nightly version

This commit is contained in:
Elian Doran 2025-04-18 16:39:37 +03:00
parent eb6c89f1b4
commit 15bba955fd
No known key found for this signature in database
4 changed files with 29 additions and 4 deletions

View File

@ -44,8 +44,7 @@
"dev:format-fix": "eslint -c eslint.format.config.js . --fix", "dev:format-fix": "eslint -c eslint.format.config.js . --fix",
"dev:linter-check": "eslint .", "dev:linter-check": "eslint .",
"dev:linter-fix": "eslint . --fix", "dev:linter-fix": "eslint . --fix",
"chore:update-build-info": "tsx bin/update-build-info.ts", "chore:update-build-info": "tsx bin/update-build-info.ts",
"chore:ci-update-nightly-version": "tsx ./bin/update-nightly-version.ts",
"chore:generate-document": "cross-env nodemon ./bin/generate_document.ts 1000", "chore:generate-document": "cross-env nodemon ./bin/generate_document.ts 1000",
"chore:generate-openapi": "tsx bin/generate-openapi.js" "chore:generate-openapi": "tsx bin/generate-openapi.js"
}, },

22
package-lock.json generated
View File

@ -11,7 +11,10 @@
"workspaces": [ "workspaces": [
"apps/*", "apps/*",
"packages/*" "packages/*"
] ],
"devDependencies": {
"tsx": "^4.19.3"
}
}, },
"apps/client": { "apps/client": {
"name": "@triliumnext/client", "name": "@triliumnext/client",
@ -9001,6 +9004,21 @@
"version": "1.0.0", "version": "1.0.0",
"license": "ISC" "license": "ISC"
}, },
"node_modules/fsevents": {
"version": "2.3.3",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
"dev": true,
"hasInstallScript": true,
"license": "MIT",
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
}
},
"node_modules/function-bind": { "node_modules/function-bind": {
"version": "1.1.2", "version": "1.1.2",
"license": "MIT", "license": "MIT",
@ -15942,6 +15960,8 @@
}, },
"node_modules/tsx": { "node_modules/tsx": {
"version": "4.19.3", "version": "4.19.3",
"resolved": "https://registry.npmjs.org/tsx/-/tsx-4.19.3.tgz",
"integrity": "sha512-4H8vUNGNjQ4V2EOoGw005+c+dGuPSnhpPBPHBtsZdGZBk/iJb4kguGlPWaZTZ3q5nMtFOEsY0nRDlh9PJyd6SQ==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {

View File

@ -11,5 +11,11 @@
"workspaces": [ "workspaces": [
"apps/*", "apps/*",
"packages/*" "packages/*"
] ],
"scripts": {
"chore:ci-update-nightly-version": "tsx ./scripts/update-nightly-version.ts"
},
"devDependencies": {
"tsx": "^4.19.3"
}
} }