From ebdc4bbd07fda1d9bcf393daed5568ea91584436 Mon Sep 17 00:00:00 2001 From: ThuF Date: Mon, 23 Mar 2026 15:03:48 +0000 Subject: [PATCH] Migrate from project.json to package.json --- codbex-cities-data/package.json | 4 ++-- codbex-cities-data/project.json | 19 +------------------ codbex-cities-data/tsconfig.json | 23 ----------------------- 3 files changed, 3 insertions(+), 43 deletions(-) delete mode 100644 codbex-cities-data/tsconfig.json diff --git a/codbex-cities-data/package.json b/codbex-cities-data/package.json index c03309f..8ed7d6e 100644 --- a/codbex-cities-data/package.json +++ b/codbex-cities-data/package.json @@ -9,6 +9,6 @@ "registry": "https://npm.pkg.github.com" }, "dependencies": { - "@codbex/codbex-cities": "^1.0.1" + "@codbex/codbex-cities": "^1.1.0" } -} +} \ No newline at end of file diff --git a/codbex-cities-data/project.json b/codbex-cities-data/project.json index a1532c1..e51aa8e 100644 --- a/codbex-cities-data/project.json +++ b/codbex-cities-data/project.json @@ -1,20 +1,3 @@ { - "guid": "codbex-cities-data", - "dependencies": [], - "actions": [ - { - "name": "Build TypeScript", - "commands": [ - { - "os": "unix", - "command": "tsc" - }, - { - "os": "windows", - "command": "cmd /c tsc" - } - ], - "registry": "true" - } - ] + "guid": "codbex-cities-data" } \ No newline at end of file diff --git a/codbex-cities-data/tsconfig.json b/codbex-cities-data/tsconfig.json deleted file mode 100644 index 9b957e3..0000000 --- a/codbex-cities-data/tsconfig.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "compilerOptions": { - "module": "ESNext", - "target": "ES6", - "moduleResolution": "Node", - "baseUrl": "../", - "lib": [ - "ESNext", - "DOM" - ], - "paths": { - "sdk/*": [ - "./modules/src/*" - ], - "/*": [ - "./*" - ] - }, - "types": [ - "../modules/types" - ] - } -} \ No newline at end of file