Fix npm packages to not use legacy repository format (#10576)

* Fix packages script

Signed-off-by: Artem Savchenko <armisav@gmail.com>

* Fix npm packages to not use legacy string repo

Signed-off-by: Artem Savchenko <armisav@gmail.com>

---------

Signed-off-by: Artem Savchenko <armisav@gmail.com>
This commit is contained in:
Artyom Savchenko
2026-03-06 12:25:21 +07:00
committed by GitHub
parent 7a7020292b
commit 5613b4f708
102 changed files with 464 additions and 107 deletions
+57
View File
@@ -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()
@@ -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"
},
@@ -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"
},
@@ -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"
},
@@ -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"
},
@@ -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"
},
@@ -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"
},
@@ -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"
},
+4 -1
View File
@@ -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"
},
@@ -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"
},
@@ -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",
@@ -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",
+4 -1
View File
@@ -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"
},
@@ -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"
},
@@ -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",
+4 -1
View File
@@ -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"
},
+4 -1
View File
@@ -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"
},
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
},
@@ -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"
},
@@ -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"
}
@@ -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"
},
@@ -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"
},
@@ -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"
},
@@ -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"
},
+4 -1
View File
@@ -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"
},
+4 -1
View File
@@ -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"
},
@@ -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"
},
@@ -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"
},
@@ -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"
},
@@ -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"
},
@@ -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"
}
@@ -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"
},
@@ -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"
},
@@ -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"
},
@@ -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"
},
@@ -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"
},
@@ -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"
},
+4 -1
View File
@@ -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"
},
@@ -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"
}
@@ -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"
},
@@ -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/**/*",
@@ -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"
}
+4 -1
View File
@@ -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"
},
+4 -1
View File
@@ -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"
},
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
},
+4 -1
View File
@@ -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"
},
+4 -1
View File
@@ -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"
},
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
},
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
},
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
},
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
},
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
},
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}
+4 -1
View File
@@ -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"
}

Some files were not shown because too many files have changed in this diff Show More