diff --git a/common/scripts/fix-packages.js b/common/scripts/fix-packages.js new file mode 100644 index 0000000000..7c05b81a68 --- /dev/null +++ b/common/scripts/fix-packages.js @@ -0,0 +1,57 @@ +#!/usr/bin/env node + +/** + * Run npm pkg fix on all @hcengineering packages in the monorepo. + * Usage: node common/scripts/fix-packages.js + */ + +const path = require('path') +const execSync = require('child_process').execSync + +const repo = '@hcengineering' +const repoRoot = execSync('git rev-parse --show-toplevel', { encoding: 'utf-8' }).trim() + +function main () { + const output = execSync('node common/scripts/install-run-rush.js list -p --json', { + encoding: 'utf-8', + cwd: repoRoot + }) + const lines = output.split('\n') + let jsonStart = -1 + for (let i = 0; i < lines.length; i++) { + if (lines[i].trim().startsWith('{')) { + jsonStart = i + break + } + } + if (jsonStart === -1) { + console.error('Could not find JSON output from rush list') + process.exit(1) + } + const config = JSON.parse(lines.slice(jsonStart).join('\n')) + + const packages = [] + for (const project of config.projects) { + const packageName = project.name ?? project.packageName + if (typeof packageName !== 'string' || !packageName.startsWith(repo)) continue + const projectPath = project.path ?? project.projectFolder ?? path.relative(repoRoot, project.fullPath ?? '') + if (typeof projectPath !== 'string' || projectPath.length === 0) continue + packages.push({ + name: packageName, + path: path.resolve(repoRoot, projectPath) + }) + } + + console.log('Fixing package.json in all @hcengineering packages...') + for (const pkg of packages) { + try { + console.log('fixing', pkg.name) + execSync('npm pkg fix', { encoding: 'utf-8', cwd: pkg.path, stdio: 'pipe' }) + } catch (err) { + console.error('Failed:', pkg.name, err.message) + } + } + console.log('... done') +} + +main() diff --git a/foundations/core/packages/account-client/package.json b/foundations/core/packages/account-client/package.json index e5a3e118b4..90352be0c7 100644 --- a/foundations/core/packages/account-client/package.json +++ b/foundations/core/packages/account-client/package.json @@ -46,7 +46,10 @@ "@hcengineering/core": "workspace:^0.7.24", "@hcengineering/platform": "workspace:^0.7.19" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/analytics-service/package.json b/foundations/core/packages/analytics-service/package.json index 54cbaeec57..911c73074d 100644 --- a/foundations/core/packages/analytics-service/package.json +++ b/foundations/core/packages/analytics-service/package.json @@ -47,7 +47,10 @@ "winston": "^3.11.0", "winston-daily-rotate-file": "^5.0.0" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/analytics/package.json b/foundations/core/packages/analytics/package.json index c6ad017740..55df6e16bc 100644 --- a/foundations/core/packages/analytics/package.json +++ b/foundations/core/packages/analytics/package.json @@ -42,7 +42,10 @@ "dependencies": { "@hcengineering/platform": "workspace:^0.7.19" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/api-client/package.json b/foundations/core/packages/api-client/package.json index bfecd53454..0d9f4165a2 100644 --- a/foundations/core/packages/api-client/package.json +++ b/foundations/core/packages/api-client/package.json @@ -62,7 +62,10 @@ "@hcengineering/text-markdown": "workspace:^0.7.20", "snappyjs": "^0.7.0" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/client-resources/package.json b/foundations/core/packages/client-resources/package.json index 5f7866b954..4ac3fa0bcd 100644 --- a/foundations/core/packages/client-resources/package.json +++ b/foundations/core/packages/client-resources/package.json @@ -51,7 +51,10 @@ "@hcengineering/rpc": "workspace:^0.7.17", "snappyjs": "^0.7.0" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/client/package.json b/foundations/core/packages/client/package.json index 303c444d03..04f4ce523d 100644 --- a/foundations/core/packages/client/package.json +++ b/foundations/core/packages/client/package.json @@ -44,7 +44,10 @@ "@hcengineering/platform": "workspace:^0.7.19", "@hcengineering/core": "workspace:^0.7.24" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/collaborator-client/package.json b/foundations/core/packages/collaborator-client/package.json index ae85f0991e..0f226d4842 100644 --- a/foundations/core/packages/collaborator-client/package.json +++ b/foundations/core/packages/collaborator-client/package.json @@ -45,7 +45,10 @@ "dependencies": { "@hcengineering/core": "workspace:^0.7.24" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/core/package.json b/foundations/core/packages/core/package.json index ad3470f686..993a3c8c63 100644 --- a/foundations/core/packages/core/package.json +++ b/foundations/core/packages/core/package.json @@ -50,7 +50,10 @@ "@hcengineering/measurements": "workspace:^0.7.18", "fast-equals": "^5.2.2" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/hulylake-client/package.json b/foundations/core/packages/hulylake-client/package.json index a937134e04..16c7fab3a4 100644 --- a/foundations/core/packages/hulylake-client/package.json +++ b/foundations/core/packages/hulylake-client/package.json @@ -46,7 +46,10 @@ "@hcengineering/core": "workspace:^0.7.24", "@hcengineering/retry": "workspace:^0.7.17" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/measurements-otlp/package.json b/foundations/core/packages/measurements-otlp/package.json index 6c030b5f6c..3151a957d9 100644 --- a/foundations/core/packages/measurements-otlp/package.json +++ b/foundations/core/packages/measurements-otlp/package.json @@ -57,7 +57,10 @@ "@opentelemetry/api-logs": "^0.203.0", "@opentelemetry/sdk-metrics": "^2.0.1" }, - "repository": "https://github.com/hcengineering/huly.utils", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.utils.git" + }, "exports": { ".": { "types": "./types/index.d.ts", diff --git a/foundations/core/packages/measurements/package.json b/foundations/core/packages/measurements/package.json index bdcdd1768c..cca1314851 100644 --- a/foundations/core/packages/measurements/package.json +++ b/foundations/core/packages/measurements/package.json @@ -40,7 +40,10 @@ "eslint-plugin-promise": "^6.1.1", "eslint-plugin-n": "^15.4.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "exports": { ".": { "types": "./types/index.d.ts", diff --git a/foundations/core/packages/model/package.json b/foundations/core/packages/model/package.json index 0e6eb0eaab..2369a60b5e 100644 --- a/foundations/core/packages/model/package.json +++ b/foundations/core/packages/model/package.json @@ -45,7 +45,10 @@ "toposort": "^2.0.2", "fast-equals": "^5.2.2" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/platform/package.json b/foundations/core/packages/platform/package.json index 200e5a3148..e9251eac74 100644 --- a/foundations/core/packages/platform/package.json +++ b/foundations/core/packages/platform/package.json @@ -43,7 +43,10 @@ "dependencies": { "intl-messageformat": "^10.7.14" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/postgres-base/package.json b/foundations/core/packages/postgres-base/package.json index 923f665fda..bd6d40bc2d 100644 --- a/foundations/core/packages/postgres-base/package.json +++ b/foundations/core/packages/postgres-base/package.json @@ -45,7 +45,10 @@ "dependencies": { "postgres": "^3.4.7" }, - "repository": "https://github.com/hcengineering/huly.utils", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.utils.git" + }, "exports": { ".": { "types": "./types/index.d.ts", diff --git a/foundations/core/packages/query/package.json b/foundations/core/packages/query/package.json index 58a8417189..5dcf9591f5 100644 --- a/foundations/core/packages/query/package.json +++ b/foundations/core/packages/query/package.json @@ -45,7 +45,10 @@ "@hcengineering/analytics": "workspace:^0.7.17", "fast-equals": "^5.2.2" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/rank/package.json b/foundations/core/packages/rank/package.json index 84992982f4..bc2a9f77ad 100644 --- a/foundations/core/packages/rank/package.json +++ b/foundations/core/packages/rank/package.json @@ -43,7 +43,10 @@ "@hcengineering/core": "workspace:^0.7.24", "lexorank": "~1.0.4" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/retry/package.json b/foundations/core/packages/retry/package.json index 5a94f3c87d..47c1b5c405 100644 --- a/foundations/core/packages/retry/package.json +++ b/foundations/core/packages/retry/package.json @@ -50,7 +50,10 @@ "import": "./lib/index.js" } }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" } diff --git a/foundations/core/packages/rpc/package.json b/foundations/core/packages/rpc/package.json index bc2cdcb154..2c18d926cf 100644 --- a/foundations/core/packages/rpc/package.json +++ b/foundations/core/packages/rpc/package.json @@ -45,7 +45,10 @@ "@hcengineering/platform": "workspace:^0.7.19", "msgpackr": "^1.11.2" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/storage-client/package.json b/foundations/core/packages/storage-client/package.json index 5708e6a983..38ef4b4572 100644 --- a/foundations/core/packages/storage-client/package.json +++ b/foundations/core/packages/storage-client/package.json @@ -44,7 +44,10 @@ "dependencies": { "@hcengineering/core": "workspace:^0.7.24" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/storage/package.json b/foundations/core/packages/storage/package.json index 9ff39fb5bc..1a44e98416 100644 --- a/foundations/core/packages/storage/package.json +++ b/foundations/core/packages/storage/package.json @@ -55,7 +55,10 @@ "import": "./lib/index.js" } }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" } diff --git a/foundations/core/packages/text-core/package.json b/foundations/core/packages/text-core/package.json index b030d74c77..d5466380b3 100644 --- a/foundations/core/packages/text-core/package.json +++ b/foundations/core/packages/text-core/package.json @@ -46,7 +46,10 @@ "fast-equals": "^5.2.2", "hash-it": "^6.0.0" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/text-html/package.json b/foundations/core/packages/text-html/package.json index a0921a2bb4..d859b17c03 100644 --- a/foundations/core/packages/text-html/package.json +++ b/foundations/core/packages/text-html/package.json @@ -43,7 +43,10 @@ "@hcengineering/text-core": "workspace:^0.7.18", "htmlparser2": "^9.0.0" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/text-markdown/package.json b/foundations/core/packages/text-markdown/package.json index 34d22bab56..19b465c13e 100644 --- a/foundations/core/packages/text-markdown/package.json +++ b/foundations/core/packages/text-markdown/package.json @@ -46,7 +46,10 @@ "markdown-it": "^14.0.0", "fast-equals": "^5.2.2" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/text-ydoc/package.json b/foundations/core/packages/text-ydoc/package.json index 00365ef2f7..cf088e7033 100644 --- a/foundations/core/packages/text-ydoc/package.json +++ b/foundations/core/packages/text-ydoc/package.json @@ -49,7 +49,10 @@ "yjs": "^13.6.27", "y-protocols": "^1.0.6" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/text/package.json b/foundations/core/packages/text/package.json index e70d898457..f47a09c346 100644 --- a/foundations/core/packages/text/package.json +++ b/foundations/core/packages/text/package.json @@ -82,7 +82,10 @@ "@tiptap/extension-text-align": "~2.11.0", "@tiptap/extension-text-style": "~2.11.0" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/core/packages/token/package.json b/foundations/core/packages/token/package.json index 4290cc86e0..f0fb07f16c 100644 --- a/foundations/core/packages/token/package.json +++ b/foundations/core/packages/token/package.json @@ -47,7 +47,10 @@ "jwt-simple": "^0.5.6", "uuid": "^8.3.2" }, - "repository": "https://github.com/hcengineering/huly.core", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.core.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/server/packages/client/package.json b/foundations/server/packages/client/package.json index 12577d2e7a..8997b55035 100644 --- a/foundations/server/packages/client/package.json +++ b/foundations/server/packages/client/package.json @@ -46,7 +46,10 @@ "@hcengineering/server-token": "workspace:^0.7.17", "ws": "^8.18.2" }, - "repository": "https://github.com/hcengineering/huly.server", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.server.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/server/packages/collaboration/package.json b/foundations/server/packages/collaboration/package.json index aba9e0811a..81876b856c 100644 --- a/foundations/server/packages/collaboration/package.json +++ b/foundations/server/packages/collaboration/package.json @@ -42,7 +42,10 @@ "base64-js": "^1.5.1", "yjs": "^13.6.27" }, - "repository": "https://github.com/hcengineering/huly.server", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.server.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/server/packages/core/package.json b/foundations/server/packages/core/package.json index b7ddb307f1..b64d9d9d08 100644 --- a/foundations/server/packages/core/package.json +++ b/foundations/server/packages/core/package.json @@ -46,7 +46,10 @@ "fast-equals": "^5.2.2", "uuid": "^8.3.2" }, - "repository": "https://github.com/hcengineering/huly.server", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.server.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/server/packages/datalake/package.json b/foundations/server/packages/datalake/package.json index f913545ba8..7bdb22be8b 100644 --- a/foundations/server/packages/datalake/package.json +++ b/foundations/server/packages/datalake/package.json @@ -41,7 +41,10 @@ "@hcengineering/server-core": "workspace:^0.7.18", "@hcengineering/server-token": "workspace:^0.7.17" }, - "repository": "https://github.com/hcengineering/huly.server", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.server.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/server/packages/elastic/package.json b/foundations/server/packages/elastic/package.json index 22440ff656..e4eb17b422 100644 --- a/foundations/server/packages/elastic/package.json +++ b/foundations/server/packages/elastic/package.json @@ -61,7 +61,10 @@ "@elastic/elasticsearch": "^7.17.14", "@hcengineering/analytics": "workspace:^0.7.17" }, - "repository": "https://github.com/hcengineering/huly.server", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.server.git" + }, "publishConfig": { "access": "public" } diff --git a/foundations/server/packages/hulylake/package.json b/foundations/server/packages/hulylake/package.json index 8b60746a70..6810d9d38a 100644 --- a/foundations/server/packages/hulylake/package.json +++ b/foundations/server/packages/hulylake/package.json @@ -42,7 +42,10 @@ "@hcengineering/server-token": "workspace:^0.7.17", "@hcengineering/hulylake-client": "workspace:^0.7.17" }, - "repository": "https://github.com/hcengineering/huly.server", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.server.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/server/packages/kafka/package.json b/foundations/server/packages/kafka/package.json index 85150b78e4..9c672bce8d 100644 --- a/foundations/server/packages/kafka/package.json +++ b/foundations/server/packages/kafka/package.json @@ -41,7 +41,10 @@ "@hcengineering/storage": "workspace:^0.7.17", "kafkajs": "^2.2.4" }, - "repository": "https://github.com/hcengineering/huly.server", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.server.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/server/packages/middleware/package.json b/foundations/server/packages/middleware/package.json index 5ec5b8bf39..15234dc2b1 100644 --- a/foundations/server/packages/middleware/package.json +++ b/foundations/server/packages/middleware/package.json @@ -44,7 +44,10 @@ "@hcengineering/analytics": "workspace:^0.7.17", "fast-equals": "^5.2.2" }, - "repository": "https://github.com/hcengineering/huly.server", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.server.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/server/packages/minio/package.json b/foundations/server/packages/minio/package.json index d2e9f6602f..fb7e1a0047 100644 --- a/foundations/server/packages/minio/package.json +++ b/foundations/server/packages/minio/package.json @@ -40,7 +40,10 @@ "@hcengineering/server-core": "workspace:^0.7.18", "minio": "^8.0.5" }, - "repository": "https://github.com/hcengineering/huly.server", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.server.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/server/packages/mongo/package.json b/foundations/server/packages/mongo/package.json index 62e6aa9449..55b78356bf 100644 --- a/foundations/server/packages/mongo/package.json +++ b/foundations/server/packages/mongo/package.json @@ -41,7 +41,10 @@ "mongodb": "^6.16.0", "bson": "^6.10.3" }, - "repository": "https://github.com/hcengineering/huly.server", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.server.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/server/packages/postgres/package.json b/foundations/server/packages/postgres/package.json index 951733eb90..905b5aa0c2 100644 --- a/foundations/server/packages/postgres/package.json +++ b/foundations/server/packages/postgres/package.json @@ -41,7 +41,10 @@ "@hcengineering/server-core": "workspace:^0.7.18", "@hcengineering/postgres-base": "workspace:^0.7.17" }, - "repository": "https://github.com/hcengineering/huly.server", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.server.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/server/packages/s3/package.json b/foundations/server/packages/s3/package.json index 15a4ac8c95..845a21cffa 100644 --- a/foundations/server/packages/s3/package.json +++ b/foundations/server/packages/s3/package.json @@ -44,7 +44,10 @@ "@aws-sdk/lib-storage": "^3.738.0", "@smithy/node-http-handler": "^4.0.2" }, - "repository": "https://github.com/hcengineering/huly.server", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.server.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/server/packages/server-storage/package.json b/foundations/server/packages/server-storage/package.json index bc93c97f71..a037899490 100644 --- a/foundations/server/packages/server-storage/package.json +++ b/foundations/server/packages/server-storage/package.json @@ -67,7 +67,10 @@ "@hcengineering/analytics": "workspace:^0.7.17", "@hcengineering/server-token": "workspace:^0.7.17" }, - "repository": "https://github.com/hcengineering/huly.server", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.server.git" + }, "publishConfig": { "access": "public" } diff --git a/foundations/server/packages/server/package.json b/foundations/server/packages/server/package.json index fa5c4e22e7..8485a00926 100644 --- a/foundations/server/packages/server/package.json +++ b/foundations/server/packages/server/package.json @@ -45,7 +45,10 @@ "@hcengineering/server-token": "workspace:^0.7.17", "utf-8-validate": "^6.0.4" }, - "repository": "https://github.com/hcengineering/huly.server", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.server.git" + }, "publishConfig": { "access": "public" }, diff --git a/foundations/utils/packages/platform-rig/package.json b/foundations/utils/packages/platform-rig/package.json index b1b3923ba7..a37935a4d5 100644 --- a/foundations/utils/packages/platform-rig/package.json +++ b/foundations/utils/packages/platform-rig/package.json @@ -30,13 +30,13 @@ "eslint-plugin-svelte": "^2.35.1" }, "bin": { - "format": "./bin/format.js", - "compile": "./bin/compile.js", - "do-svelte-check": "./bin/do-svelte-check.js", - "bump-package-version": "./bin/bump-package-version.js", - "bump-changes-from-tag": "./bin/bump-changes-from-tag.js", - "update-deps": "./bin/update-deps.js", - "sync-eslint-deps": "./bin/sync-eslint-deps.js" + "format": "bin/format.js", + "compile": "bin/compile.js", + "do-svelte-check": "bin/do-svelte-check.js", + "bump-package-version": "bin/bump-package-version.js", + "bump-changes-from-tag": "bin/bump-changes-from-tag.js", + "update-deps": "bin/update-deps.js", + "sync-eslint-deps": "bin/sync-eslint-deps.js" }, "files": [ "bin/**/*", diff --git a/foundations/utils/packages/ui-test/package.json b/foundations/utils/packages/ui-test/package.json index 0b240843ee..6dbb971b0e 100644 --- a/foundations/utils/packages/ui-test/package.json +++ b/foundations/utils/packages/ui-test/package.json @@ -52,7 +52,10 @@ "dependencies": { "svelte": "^4.2.20" }, - "repository": "https://github.com/hcengineering/huly.utils", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/huly.utils.git" + }, "publishConfig": { "access": "public" } diff --git a/packages/analytics-providers/package.json b/packages/analytics-providers/package.json index 832fd1b691..0659a09bd7 100644 --- a/packages/analytics-providers/package.json +++ b/packages/analytics-providers/package.json @@ -48,7 +48,10 @@ "ua-parser-js": "^2.0.4", "@hcengineering/ui": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" }, diff --git a/packages/billing-client/package.json b/packages/billing-client/package.json index 7e504c1c42..e24a88a2fe 100644 --- a/packages/billing-client/package.json +++ b/packages/billing-client/package.json @@ -43,7 +43,10 @@ "@hcengineering/core": "workspace:^0.7.24", "@hcengineering/platform": "workspace:^0.7.19" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" }, diff --git a/packages/hls/package.json b/packages/hls/package.json index 4405b63cd1..bd9ebe9857 100644 --- a/packages/hls/package.json +++ b/packages/hls/package.json @@ -46,7 +46,10 @@ "plyr": "3.7.8", "svelte": "^4.2.20" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/packages/importer/package.json b/packages/importer/package.json index 59628fd631..d60463a731 100644 --- a/packages/importer/package.json +++ b/packages/importer/package.json @@ -62,7 +62,10 @@ "image-size": "^1.1.1", "uuid": "^8.3.2" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/packages/integration-client/package.json b/packages/integration-client/package.json index 3f15f9332f..9d3350f673 100644 --- a/packages/integration-client/package.json +++ b/packages/integration-client/package.json @@ -48,7 +48,10 @@ "@hcengineering/kvs-client": "workspace:^0.7.0", "uuid": "^8.3.2" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" }, diff --git a/packages/kvs-client/package.json b/packages/kvs-client/package.json index c6061d6e97..f14188e49d 100644 --- a/packages/kvs-client/package.json +++ b/packages/kvs-client/package.json @@ -44,7 +44,10 @@ "@hcengineering/core": "workspace:^0.7.24", "@hcengineering/platform": "workspace:^0.7.19" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" }, diff --git a/packages/payment-client/package.json b/packages/payment-client/package.json index 945d5b5575..66cb796c48 100644 --- a/packages/payment-client/package.json +++ b/packages/payment-client/package.json @@ -43,7 +43,10 @@ "@hcengineering/core": "workspace:^0.7.24", "@hcengineering/platform": "workspace:^0.7.19" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" }, diff --git a/packages/presentation/package.json b/packages/presentation/package.json index cba9189c65..f791f43fe5 100644 --- a/packages/presentation/package.json +++ b/packages/presentation/package.json @@ -71,7 +71,10 @@ "uuid": "^8.3.2", "yjs": "^13.6.27" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/packages/theme/package.json b/packages/theme/package.json index 59b7e96157..57e500784a 100644 --- a/packages/theme/package.json +++ b/packages/theme/package.json @@ -40,7 +40,10 @@ "@hcengineering/platform": "workspace:^0.7.19", "@hcengineering/analytics": "workspace:^0.7.17" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/packages/ui/package.json b/packages/ui/package.json index cac40eb1ee..7d9ca040fe 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -54,7 +54,10 @@ "plyr": "3.7.8", "blurhash": "^2.0.5" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/achievement/package.json b/plugins/achievement/package.json index 7aebbbf2f8..2632a87fae 100644 --- a/plugins/achievement/package.json +++ b/plugins/achievement/package.json @@ -41,7 +41,10 @@ "@hcengineering/core": "workspace:^0.7.24", "@hcengineering/ui": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/activity/package.json b/plugins/activity/package.json index 1a7c93db55..ed920ef945 100644 --- a/plugins/activity/package.json +++ b/plugins/activity/package.json @@ -44,7 +44,10 @@ "@hcengineering/ui": "workspace:^0.7.0", "@hcengineering/view": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/attachment-resources/package.json b/plugins/attachment-resources/package.json index cfdb2ad50f..330ca28735 100644 --- a/plugins/attachment-resources/package.json +++ b/plugins/attachment-resources/package.json @@ -60,7 +60,10 @@ "filesize": "^8.0.3", "svelte": "^4.2.20" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/attachment/package.json b/plugins/attachment/package.json index 9f8583d0d0..3c1c5154ae 100644 --- a/plugins/attachment/package.json +++ b/plugins/attachment/package.json @@ -43,7 +43,10 @@ "@hcengineering/workbench": "workspace:^0.7.0", "@hcengineering/preference": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/billing/package.json b/plugins/billing/package.json index d38e2fed15..46136437fe 100644 --- a/plugins/billing/package.json +++ b/plugins/billing/package.json @@ -41,7 +41,10 @@ "@hcengineering/platform": "workspace:^0.7.19", "@hcengineering/ui": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/bitrix-resources/package.json b/plugins/bitrix-resources/package.json index 6a6c9c9f06..ee9403db04 100644 --- a/plugins/bitrix-resources/package.json +++ b/plugins/bitrix-resources/package.json @@ -61,7 +61,10 @@ "@hcengineering/recruit": "workspace:^0.7.0", "@hcengineering/task": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/bitrix/package.json b/plugins/bitrix/package.json index 597f05d9f5..3bf24b1c97 100644 --- a/plugins/bitrix/package.json +++ b/plugins/bitrix/package.json @@ -51,7 +51,10 @@ "fast-equals": "^5.2.2", "qs": "~6.11.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/board/package.json b/plugins/board/package.json index 433fccaf3a..74f6314b36 100644 --- a/plugins/board/package.json +++ b/plugins/board/package.json @@ -46,7 +46,10 @@ "@hcengineering/preference": "workspace:^0.7.0", "@hcengineering/tags": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/calendar/package.json b/plugins/calendar/package.json index f959d3bec3..0b476ca715 100644 --- a/plugins/calendar/package.json +++ b/plugins/calendar/package.json @@ -45,7 +45,10 @@ "@hcengineering/contact": "workspace:^0.7.0", "@hcengineering/setting": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" }, diff --git a/plugins/card/package.json b/plugins/card/package.json index 378f34a348..6f7a5d123c 100644 --- a/plugins/card/package.json +++ b/plugins/card/package.json @@ -43,7 +43,10 @@ "@hcengineering/ui": "workspace:^0.7.0", "@hcengineering/view": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/chat-assets/package.json b/plugins/chat-assets/package.json index b21e7f713f..0bf25e2e75 100644 --- a/plugins/chat-assets/package.json +++ b/plugins/chat-assets/package.json @@ -44,7 +44,10 @@ "@hcengineering/platform": "workspace:^0.7.19", "@hcengineering/chat": "workspace:^0.7.0" }, - "repository": "https://github.com/hcenginneing/anticrm", + "repository": { + "type": "git", + "url": "git+https://github.com/hcenginneing/anticrm.git" + }, "publishConfig": { "access": "public" }, diff --git a/plugins/chat/package.json b/plugins/chat/package.json index 4adb124f73..54f66d178a 100644 --- a/plugins/chat/package.json +++ b/plugins/chat/package.json @@ -41,7 +41,10 @@ "@hcengineering/card": "workspace:^0.7.0", "@hcengineering/platform": "workspace:^0.7.19" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/chunter/package.json b/plugins/chunter/package.json index 69c524df6a..9d873cf8ee 100644 --- a/plugins/chunter/package.json +++ b/plugins/chunter/package.json @@ -47,7 +47,10 @@ "@hcengineering/workbench": "workspace:^0.7.0", "fast-equals": "^5.2.2" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/contact/package.json b/plugins/contact/package.json index ed69d6b542..a5e4635ce6 100644 --- a/plugins/contact/package.json +++ b/plugins/contact/package.json @@ -53,7 +53,10 @@ "@hcengineering/preference": "workspace:^0.7.0", "@hcengineering/card": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/document/package.json b/plugins/document/package.json index 23f0321b21..52074d74b2 100644 --- a/plugins/document/package.json +++ b/plugins/document/package.json @@ -45,7 +45,10 @@ "@hcengineering/attachment": "workspace:^0.7.0", "@hcengineering/preference": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/drive/package.json b/plugins/drive/package.json index 1941dba54c..c680cc2f20 100644 --- a/plugins/drive/package.json +++ b/plugins/drive/package.json @@ -42,7 +42,10 @@ "@hcengineering/preference": "workspace:^0.7.0", "@hcengineering/ui": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/emoji/package.json b/plugins/emoji/package.json index a21244d110..0865359d3b 100644 --- a/plugins/emoji/package.json +++ b/plugins/emoji/package.json @@ -44,7 +44,10 @@ "emojibase-data": "^16.0.0", "emojibase-regex": "^16.0.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/gmail/package.json b/plugins/gmail/package.json index 83afec5aa8..d207f6a13b 100644 --- a/plugins/gmail/package.json +++ b/plugins/gmail/package.json @@ -44,7 +44,10 @@ "@hcengineering/notification": "workspace:^0.7.0", "@hcengineering/setting": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/guest/package.json b/plugins/guest/package.json index ae8aed11db..5c5ff89160 100644 --- a/plugins/guest/package.json +++ b/plugins/guest/package.json @@ -41,7 +41,10 @@ "@hcengineering/platform": "workspace:^0.7.19", "@hcengineering/ui": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/hr/package.json b/plugins/hr/package.json index 7c5496902b..44097112d1 100644 --- a/plugins/hr/package.json +++ b/plugins/hr/package.json @@ -43,7 +43,10 @@ "@hcengineering/view": "workspace:^0.7.0", "@hcengineering/notification": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/inbox-assets/package.json b/plugins/inbox-assets/package.json index 774037711d..bd8bfa4289 100644 --- a/plugins/inbox-assets/package.json +++ b/plugins/inbox-assets/package.json @@ -44,7 +44,10 @@ "@hcengineering/platform": "workspace:^0.7.19", "@hcengineering/inbox": "workspace:^0.7.0" }, - "repository": "https://github.com/hcenginneing/anticrm", + "repository": { + "type": "git", + "url": "git+https://github.com/hcenginneing/anticrm.git" + }, "publishConfig": { "registry": "https://npm.pkg.github.com" }, diff --git a/plugins/inbox/package.json b/plugins/inbox/package.json index 0ae2f49b7f..e11c879927 100644 --- a/plugins/inbox/package.json +++ b/plugins/inbox/package.json @@ -40,7 +40,10 @@ "@hcengineering/core": "workspace:^0.7.24", "@hcengineering/platform": "workspace:^0.7.19" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "registry": "https://npm.pkg.github.com" } diff --git a/plugins/inventory/package.json b/plugins/inventory/package.json index 61a91d7604..269da15967 100644 --- a/plugins/inventory/package.json +++ b/plugins/inventory/package.json @@ -40,7 +40,10 @@ "@hcengineering/core": "workspace:^0.7.24", "@hcengineering/platform": "workspace:^0.7.19" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/login/package.json b/plugins/login/package.json index 6d3aab8dac..d354bf92ee 100644 --- a/plugins/login/package.json +++ b/plugins/login/package.json @@ -42,7 +42,10 @@ "@hcengineering/platform": "workspace:^0.7.19", "@hcengineering/ui": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/love/package.json b/plugins/love/package.json index 303a8394e4..92e90b11d9 100644 --- a/plugins/love/package.json +++ b/plugins/love/package.json @@ -49,7 +49,10 @@ "@hcengineering/view": "workspace:^0.7.0", "@hcengineering/workbench": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" }, diff --git a/plugins/mail/package.json b/plugins/mail/package.json index 7f91fb9a6b..bad43369d9 100644 --- a/plugins/mail/package.json +++ b/plugins/mail/package.json @@ -41,7 +41,10 @@ "@hcengineering/card": "workspace:^0.7.0", "@hcengineering/core": "workspace:^0.7.24" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/media/package.json b/plugins/media/package.json index c40eebb6e7..202c6e2445 100644 --- a/plugins/media/package.json +++ b/plugins/media/package.json @@ -44,7 +44,10 @@ "@hcengineering/ui": "workspace:^0.7.0", "events": "^3.3.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/notification/package.json b/plugins/notification/package.json index b52f87b3a6..b35e2a4818 100644 --- a/plugins/notification/package.json +++ b/plugins/notification/package.json @@ -48,7 +48,10 @@ "@hcengineering/ui": "workspace:^0.7.0", "@hcengineering/view": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/preference/package.json b/plugins/preference/package.json index c3aaa2931b..101530dd1c 100644 --- a/plugins/preference/package.json +++ b/plugins/preference/package.json @@ -41,7 +41,10 @@ "@hcengineering/core": "workspace:^0.7.24", "@hcengineering/ui": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/presence/package.json b/plugins/presence/package.json index 44093f600e..1e6a4e1076 100644 --- a/plugins/presence/package.json +++ b/plugins/presence/package.json @@ -42,7 +42,10 @@ "@hcengineering/core": "workspace:^0.7.24", "@hcengineering/ui": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/rating/package.json b/plugins/rating/package.json index 78ca28b100..81ab249bd1 100644 --- a/plugins/rating/package.json +++ b/plugins/rating/package.json @@ -41,7 +41,10 @@ "@hcengineering/platform": "workspace:^0.7.19", "@hcengineering/ui": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/recorder/package.json b/plugins/recorder/package.json index b399f59652..e321ee8387 100644 --- a/plugins/recorder/package.json +++ b/plugins/recorder/package.json @@ -43,7 +43,10 @@ "@hcengineering/uploader": "workspace:^0.7.0", "tus-js-client": "^4.3.1" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/recruit/package.json b/plugins/recruit/package.json index dab94bbe0d..aeb374cd7d 100644 --- a/plugins/recruit/package.json +++ b/plugins/recruit/package.json @@ -48,7 +48,10 @@ "@hcengineering/tags": "workspace:^0.7.0", "@hcengineering/view": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/request/package.json b/plugins/request/package.json index a7d6786b82..c3af87e721 100644 --- a/plugins/request/package.json +++ b/plugins/request/package.json @@ -43,7 +43,10 @@ "@hcengineering/platform": "workspace:^0.7.19", "@hcengineering/ui": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/setting/package.json b/plugins/setting/package.json index 8bc242eb7a..597092ee94 100644 --- a/plugins/setting/package.json +++ b/plugins/setting/package.json @@ -43,7 +43,10 @@ "@hcengineering/ui": "workspace:^0.7.0", "@hcengineering/account-client": "workspace:^0.7.21" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/support-resources/package.json b/plugins/support-resources/package.json index c291eda807..7f320580ee 100644 --- a/plugins/support-resources/package.json +++ b/plugins/support-resources/package.json @@ -43,7 +43,10 @@ "@hcengineering/ui": "workspace:^0.7.0", "svelte": "^4.2.20" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/support/package.json b/plugins/support/package.json index e64c36223e..c251f54e69 100644 --- a/plugins/support/package.json +++ b/plugins/support/package.json @@ -40,7 +40,10 @@ "@hcengineering/core": "workspace:^0.7.24", "@hcengineering/platform": "workspace:^0.7.19" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/survey-assets/package.json b/plugins/survey-assets/package.json index 9815c39c6e..55917f4c95 100644 --- a/plugins/survey-assets/package.json +++ b/plugins/survey-assets/package.json @@ -44,7 +44,10 @@ "@hcengineering/platform": "workspace:^0.7.19", "@hcengineering/survey": "workspace:^0.7.0" }, - "repository": "https://github.com/hcenginneing/anticrm", + "repository": { + "type": "git", + "url": "git+https://github.com/hcenginneing/anticrm.git" + }, "publishConfig": { "access": "public" }, diff --git a/plugins/survey/package.json b/plugins/survey/package.json index 78518c42f5..48de1b6a09 100644 --- a/plugins/survey/package.json +++ b/plugins/survey/package.json @@ -42,7 +42,10 @@ "@hcengineering/platform": "workspace:^0.7.19", "@hcengineering/view": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/tags/package.json b/plugins/tags/package.json index 1a1fdd10ff..27367ebdd8 100644 --- a/plugins/tags/package.json +++ b/plugins/tags/package.json @@ -43,7 +43,10 @@ "@hcengineering/view": "workspace:^0.7.0", "@hcengineering/ui": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/task/package.json b/plugins/task/package.json index 66052d2382..114eca9cdf 100644 --- a/plugins/task/package.json +++ b/plugins/task/package.json @@ -45,7 +45,10 @@ "@hcengineering/ui": "workspace:^0.7.0", "@hcengineering/view": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/telegram/package.json b/plugins/telegram/package.json index 4098305c51..c3c44da519 100644 --- a/plugins/telegram/package.json +++ b/plugins/telegram/package.json @@ -46,7 +46,10 @@ "@hcengineering/templates": "workspace:^0.7.0", "@hcengineering/ui": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/templates/package.json b/plugins/templates/package.json index e287e5e35d..82fb763f44 100644 --- a/plugins/templates/package.json +++ b/plugins/templates/package.json @@ -41,7 +41,10 @@ "@hcengineering/core": "workspace:^0.7.24", "@hcengineering/ui": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/test-management/package.json b/plugins/test-management/package.json index deae5233d6..bdd2427d48 100644 --- a/plugins/test-management/package.json +++ b/plugins/test-management/package.json @@ -49,7 +49,10 @@ "@hcengineering/preference": "workspace:^0.7.0", "lexorank": "~1.0.4" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/time/package.json b/plugins/time/package.json index a135a19f99..1224825e00 100644 --- a/plugins/time/package.json +++ b/plugins/time/package.json @@ -45,7 +45,10 @@ "@hcengineering/ui": "workspace:^0.7.0", "@hcengineering/rank": "workspace:^0.7.17" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/tracker/package.json b/plugins/tracker/package.json index 6ebfbcff7e..a6449966c3 100644 --- a/plugins/tracker/package.json +++ b/plugins/tracker/package.json @@ -50,7 +50,10 @@ "@hcengineering/preference": "workspace:^0.7.0", "lexorank": "~1.0.4" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/uploader/package.json b/plugins/uploader/package.json index 6c989c1cb3..336a918a87 100644 --- a/plugins/uploader/package.json +++ b/plugins/uploader/package.json @@ -41,7 +41,10 @@ "@hcengineering/core": "workspace:^0.7.24", "@hcengineering/ui": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/view/package.json b/plugins/view/package.json index e36799c523..b878919ea1 100644 --- a/plugins/view/package.json +++ b/plugins/view/package.json @@ -42,7 +42,10 @@ "@hcengineering/ui": "workspace:^0.7.0", "@hcengineering/preference": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" } diff --git a/plugins/workbench/package.json b/plugins/workbench/package.json index b514f488db..72d8620d8b 100644 --- a/plugins/workbench/package.json +++ b/plugins/workbench/package.json @@ -44,7 +44,10 @@ "@hcengineering/ui": "workspace:^0.7.0", "@hcengineering/view": "workspace:^0.7.0" }, - "repository": "https://github.com/hcengineering/platform", + "repository": { + "type": "git", + "url": "git+https://github.com/hcengineering/platform.git" + }, "publishConfig": { "access": "public" }