Skip to content

Commit

Permalink
fix: all deps
Browse files Browse the repository at this point in the history
  • Loading branch information
alimd committed Sep 19, 2023
1 parent 8ce610c commit fb47833
Show file tree
Hide file tree
Showing 8 changed files with 182 additions and 422 deletions.
19 changes: 2 additions & 17 deletions demo/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,8 @@
"include": ["**/*.ts"],
"exclude": ["*.d.ts", "node_modules"],
"references": [
{"path": "../core/logger"},
{"path": "../core/fetch"},
{"path": "../core/signal"},
{"path": "../core/signal2"},
{"path": "../core/router"},
{"path": "../core/router2"},
{"path": "../core/type"},
{"path": "../core/storage-client"},
{"path": "../core/crypto"},
{"path": "../core/math"},
{"path": "../core/util"},
{"path": "../core/fsm"},
{"path": "../core/fsm2"},
{"path": "../core/context"},
{"path": "../packages/router"},
{"path": "../packages/icon"},
{"path": "../core/storage-engine"},
{"path": "../core/validator"},
{"path": "../core/i18n2"}
{"path": "../packages/i18n"}
]
}
2 changes: 1 addition & 1 deletion packages/demo-pwa/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alwatr/ui-demo-pwa",
"version": "1.0.0",
"version": "0.0.0",
"description": "Alwatr Progressive Web Application Demo.",
"type": "module",
"author": "S. Ali Mihandoost <[email protected]> (https://ali.mihandoost.com)",
Expand Down
2 changes: 1 addition & 1 deletion packages/fract/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
"dependencies": {
"@alwatr/logger": "^1.1.2",
"@alwatr/signal2": "^1.0.0",
"@alwatr/signal": "^2.0.0",
"lit-html": "^2.8.0",
"tslib": "^2.6.2"
}
Expand Down
7 changes: 3 additions & 4 deletions packages/i18n/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alwatr/i18n2",
"version": "1.0.0",
"name": "@alwatr/i18n",
"version": "2.0.0-beta",
"description": "Elegant powerful translation module (i18n/l10n) with dynamic json storage written in tiny TypeScript, ES module.",
"keywords": [
"i18n",
Expand All @@ -16,7 +16,6 @@
"types": "index.d.ts",
"author": "S. Ali Mihandoost <[email protected]> (https://ali.mihandoost.com)",
"license": "MIT",
"private": "true",
"files": [
"**/*.{d.ts.map,d.ts,js.map,js,html,md}"
],
Expand All @@ -35,7 +34,7 @@
"dependencies": {
"@alwatr/logger": "^1.0.0",
"@alwatr/math": "^1.0.0",
"@alwatr/signal2": "^1.0.0",
"@alwatr/signal": "^2.0.0",
"tslib": "^2.6.2"
}
}
7 changes: 3 additions & 4 deletions packages/router/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alwatr/router2",
"version": "1.0.0",
"name": "@alwatr/router",
"version": "2.0.0-beta",
"description": "Elegant powerful router (fundamental advance browser page routing) based on the simplicity of the signals written in tiny TypeScript module.",
"keywords": [
"router",
Expand All @@ -15,7 +15,6 @@
"types": "index.d.ts",
"author": "S. Ali Mihandoost <[email protected]>",
"license": "MIT",
"private": "true",
"files": [
"**/*.{d.ts.map,d.ts,js.map,js,html,md}"
],
Expand All @@ -34,7 +33,7 @@
"dependencies": {
"@alwatr/logger": "^1.0.0",
"@alwatr/math": "^1.0.0",
"@alwatr/signal2": "^1.0.0",
"@alwatr/signal": "^2.0.0",
"tslib": "^2.6.2"
}
}
9 changes: 4 additions & 5 deletions packages/ui-kit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alwatr/ui-kit2",
"version": "1.0.0",
"name": "@alwatr/ui-kit",
"version": "0.0.0",
"description": "Alwatr UI Elements Kit",
"keywords": [
"element",
Expand All @@ -21,7 +21,6 @@
"files": [
"**/**/*.{d.ts.map,d.ts,js.map,js,md,css}"
],
"private": true,
"publishConfig": {
"access": "public"
},
Expand All @@ -35,8 +34,8 @@
"url": "https://github.com/AliMD/fract/issues"
},
"dependencies": {
"@alwatr/i18n2": "^1.0.0",
"@alwatr/signal2": "^1.0.0",
"@alwatr/i18n": "^2.0.0-beta",
"@alwatr/signal": "^2.0.0",
"@alwatr/util": "^1.0.0",
"tslib": "^2.6.2"
}
Expand Down
50 changes: 5 additions & 45 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,56 +15,16 @@
"files": [],
"exclude": [],
"references": [
// core
{"path": "./core/logger"},
{"path": "./core/fetch"},
{"path": "./core/signal"},
{"path": "./core/signal2"},
{"path": "./core/context"},
{"path": "./core/server-context"},
{"path": "./core/router"},
{"path": "./core/router2"},
{"path": "./core/i18n"},
{"path": "./core/i18n2"},
{"path": "./core/math"},
{"path": "./core/nano-server"},
{"path": "./core/storage-engine"},
{"path": "./core/storage-client"},
{"path": "./core/crypto"},
{"path": "./core/validator"},
{"path": "./core/util"},
{"path": "./core/fsm"},
{"path": "./core/fsm2"},
{"path": "./core/type"},
{"path": "./core/fract"},

// ui
{"path": "./packages/element"},
// packages
{"path": "./packages/router"},
{"path": "./packages/i18n"},
{"path": "./packages/fract"},
{"path": "./packages/icon"},
{"path": "./packages/ui-kit"},
{"path": "./packages/ui-kit2"},
{"path": "./packages/pwa-helper"},
{"path": "./packages/style"},
{"path": "./packages/demo-pwa"},

// demo
{"path": "./demo"},

// services
{"path": "./services/telegram-notifier"},
{"path": "./services/flight-crawler"},
{"path": "./services/storage-server"},
{"path": "./services/comment"},
{"path": "./services/form-registration"},

// uniquely
{"path": "./packages/demo-pwa"},
{"path": "./uniquely/flight-finder-api"},
{"path": "./uniquely/soffit-pwa"},
{"path": "./uniquely/com-api"},
{"path": "./uniquely/com-pwa"},
{"path": "./uniquely/keep-pwa"},

// labs
{"path": "./labs/zx-example"}
]
}
Loading

0 comments on commit fb47833

Please sign in to comment.