Skip to content

Commit

Permalink
fix: all new repo path and packages dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
alimd committed Sep 19, 2023
1 parent a965ecd commit 21a6afa
Show file tree
Hide file tree
Showing 8 changed files with 464 additions and 480 deletions.
344 changes: 172 additions & 172 deletions demo/CHANGELOG.md

Large diffs are not rendered by default.

21 changes: 3 additions & 18 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": "../ui/icon"},
{"path": "../core/storage-engine"},
{"path": "../core/validator"},
{"path": "../core/i18n2"}
{"path": "../packages/signal"},
{"path": "../packages/fsm"},
{"path": "../packages/server-context"}
]
}
128 changes: 64 additions & 64 deletions packages/fsm/CHANGELOG.md

Large diffs are not rendered by default.

19 changes: 9 additions & 10 deletions packages/fsm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alwatr/fsm2",
"version": "1.0.0",
"name": "@alwatr/fsm",
"version": "2.0.0-prv",
"description": "Managing invocations finite-state machines for lit-element written in tiny TypeScript module.",
"keywords": [
"state",
Expand All @@ -18,7 +18,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 @@ -27,17 +26,17 @@
},
"repository": {
"type": "git",
"url": "https://github.com/AliMD/alwatr",
"directory": "core/fsm"
"url": "https://github.com/AliMD/alwatr-signal",
"directory": "packages/fsm"
},
"homepage": "https://github.com/AliMD/alwatr/tree/main/core/fsm#readme",
"homepage": "https://github.com/AliMD/alwatr-signal/tree/next/packages/fsm#readme",
"bugs": {
"url": "https://github.com/AliMD/alwatr/issues"
"url": "https://github.com/AliMD/alwatr-signal/issues"
},
"dependencies": {
"@alwatr/logger": "^1.0.0",
"@alwatr/signal": "^1.0.0",
"@alwatr/type": "^1.0.0",
"@alwatr/signal": "^2.0.0-prv",
"@alwatr/logger": "^1.1.5",
"@alwatr/type": "^1.1.4",
"tslib": "^2.6.2"
}
}
70 changes: 35 additions & 35 deletions packages/server-context/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,86 +3,86 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.1.2](https://github.com/AliMD/alwatr/compare/@alwatr/[email protected]...@alwatr/[email protected]) (2023-09-12)
## [1.1.2](https://github.com/AliMD/alwatr-signal/compare/@alwatr/[email protected]...@alwatr/[email protected]) (2023-09-12)

**Note:** Version bump only for package @alwatr/context

## [1.1.1](https://github.com/AliMD/alwatr/compare/@alwatr/[email protected]...@alwatr/[email protected]) (2023-09-12)
## [1.1.1](https://github.com/AliMD/alwatr-signal/compare/@alwatr/[email protected]...@alwatr/[email protected]) (2023-09-12)

**Note:** Version bump only for package @alwatr/context

# 1.1.0 (2023-09-12)

### Bug Fixes

* **server-context:** convert some `super` to `this` ([3a79736](https://github.com/AliMD/alwatr/commit/3a7973658daf2ee364aced0c7c4880041dfc9a1a))
* **server-context:** export `server-context` to use ([b71c9a5](https://github.com/AliMD/alwatr/commit/b71c9a5efa35ac4b5e53fd5cd966277abd7ff592))
* **server-context:** convert some `super` to `this` ([3a79736](https://github.com/AliMD/alwatr-signal/commit/3a7973658daf2ee364aced0c7c4880041dfc9a1a))
* **server-context:** export `server-context` to use ([b71c9a5](https://github.com/AliMD/alwatr-signal/commit/b71c9a5efa35ac4b5e53fd5cd966277abd7ff592))

### Features

* **server-context:** AlwatrServerContext ([2ca976a](https://github.com/AliMD/alwatr/commit/2ca976afd50b3022a264eef880274a9e1496056a))
* **server-context:** dynamic extra state/event type ([1cb6db1](https://github.com/AliMD/alwatr/commit/1cb6db1573f9349edecdc7d73e66243cadea40d4))
* **server-context:** AlwatrServerContext ([2ca976a](https://github.com/AliMD/alwatr-signal/commit/2ca976afd50b3022a264eef880274a9e1496056a))
* **server-context:** dynamic extra state/event type ([1cb6db1](https://github.com/AliMD/alwatr-signal/commit/1cb6db1573f9349edecdc7d73e66243cadea40d4))

# 1.0.0 (2023-06-14)

### Bug Fixes

- **server-context:** add `_request` & `_actionRecord` ([5037fec](https://github.com/AliMD/alwatr/commit/5037fecf68fc59727c7d66afdc2accce4d78f107))
- **server-context:** arg of `request` in `AlwatrApiRequest` ([d1835eb](https://github.com/AliMD/alwatr/commit/d1835eba2ac024d297b439721a57515eca798f32))
- **server-context:** export `api-request` ([b91fe96](https://github.com/AliMD/alwatr/commit/b91fe964a14e75aa0d544437e6aa4de1e990272d))
- **server-context:** review and fix runtime issues ([e2f6814](https://github.com/AliMD/alwatr/commit/e2f6814a0ad8d2da8f2b76a9c10706234364c3c9))
- **server-context:** tsconfig ([b200a21](https://github.com/AliMD/alwatr/commit/b200a2171fe68f04e7dd839c1746160281ff847b))
- **server-request:** review and enhance ([ae3b530](https://github.com/AliMD/alwatr/commit/ae3b5301da7a0de76ed1eafbeca62fa34695892f))
- **server-context:** add `_request` & `_actionRecord` ([5037fec](https://github.com/AliMD/alwatr-signal/commit/5037fecf68fc59727c7d66afdc2accce4d78f107))
- **server-context:** arg of `request` in `AlwatrApiRequest` ([d1835eb](https://github.com/AliMD/alwatr-signal/commit/d1835eba2ac024d297b439721a57515eca798f32))
- **server-context:** export `api-request` ([b91fe96](https://github.com/AliMD/alwatr-signal/commit/b91fe964a14e75aa0d544437e6aa4de1e990272d))
- **server-context:** review and fix runtime issues ([e2f6814](https://github.com/AliMD/alwatr-signal/commit/e2f6814a0ad8d2da8f2b76a9c10706234364c3c9))
- **server-context:** tsconfig ([b200a21](https://github.com/AliMD/alwatr-signal/commit/b200a2171fe68f04e7dd839c1746160281ff847b))
- **server-request:** review and enhance ([ae3b530](https://github.com/AliMD/alwatr-signal/commit/ae3b5301da7a0de76ed1eafbeca62fa34695892f))

### Features

- **api-request:** base on server-request ([8cfd0d9](https://github.com/AliMD/alwatr/commit/8cfd0d971e9b06c3859db3bdaac3afb43ed996ab))
- **server-context:** add new module ([01d843c](https://github.com/AliMD/alwatr/commit/01d843c4fb6a363dedb6c1fa23d8fa5f87b50cef))
- **api-request:** base on server-request ([8cfd0d9](https://github.com/AliMD/alwatr-signal/commit/8cfd0d971e9b06c3859db3bdaac3afb43ed996ab))
- **server-context:** add new module ([01d843c](https://github.com/AliMD/alwatr-signal/commit/01d843c4fb6a363dedb6c1fa23d8fa5f87b50cef))

# 0.32.0 (2023-05-27)

### Bug Fixes

* **context:** compatible with new storage api ([5251ff0](https://github.com/AliMD/alwatr/commit/5251ff005624720e091cdbc40e6b0142743428cb))
* **context:** compatible with new storage api ([5251ff0](https://github.com/AliMD/alwatr-signal/commit/5251ff005624720e091cdbc40e6b0142743428cb))

# 0.31.0 (2023-05-08)

### Bug Fixes

* build issues ([e1060bc](https://github.com/AliMD/alwatr/commit/e1060bccbfe3c775c32b85e9b8eb601e48b2998c))
* **context:** merge request option issue ([e24e695](https://github.com/AliMD/alwatr/commit/e24e695a8c25ab1dcb1c351a3ae0434e921610d0))
* new logger api ([9d83a7d](https://github.com/AliMD/alwatr/commit/9d83a7dc5c103bc3bb4282dacfd85fa998915300))
* packages and refs ([eea2382](https://github.com/AliMD/alwatr/commit/eea2382e459ccaa3e7b4b329d9c196eda146a08e))
* build issues ([e1060bc](https://github.com/AliMD/alwatr-signal/commit/e1060bccbfe3c775c32b85e9b8eb601e48b2998c))
* **context:** merge request option issue ([e24e695](https://github.com/AliMD/alwatr-signal/commit/e24e695a8c25ab1dcb1c351a3ae0434e921610d0))
* new logger api ([9d83a7d](https://github.com/AliMD/alwatr-signal/commit/9d83a7dc5c103bc3bb4282dacfd85fa998915300))
* packages and refs ([eea2382](https://github.com/AliMD/alwatr-signal/commit/eea2382e459ccaa3e7b4b329d9c196eda146a08e))

### Features

* **context:** add `requestIfNotComplete` ([580d5c9](https://github.com/AliMD/alwatr/commit/580d5c9c74f1c8921b45d402641df9444f438547))
* **context:** awesome server context ([c001c58](https://github.com/AliMD/alwatr/commit/c001c58a2b1b4e13fd1c34b5128031fd640a98e1))
* **context:** new package ([98ee43d](https://github.com/AliMD/alwatr/commit/98ee43d83b1ad5b3806ec6053c5cac70912000b3))
* **context:** simple context api ([2a1b152](https://github.com/AliMD/alwatr/commit/2a1b152380f267a6b173f08bbbe10295325b1fd8))
* **context:** add `requestIfNotComplete` ([580d5c9](https://github.com/AliMD/alwatr-signal/commit/580d5c9c74f1c8921b45d402641df9444f438547))
* **context:** awesome server context ([c001c58](https://github.com/AliMD/alwatr-signal/commit/c001c58a2b1b4e13fd1c34b5128031fd640a98e1))
* **context:** new package ([98ee43d](https://github.com/AliMD/alwatr-signal/commit/98ee43d83b1ad5b3806ec6053c5cac70912000b3))
* **context:** simple context api ([2a1b152](https://github.com/AliMD/alwatr-signal/commit/2a1b152380f267a6b173f08bbbe10295325b1fd8))

# [1.0.0](https://github.com/AliMD/alwatr/compare/v0.32.0...v1.0.0) (2023-06-14)
# [1.0.0](https://github.com/AliMD/alwatr-signal/compare/v0.32.0...v1.0.0) (2023-06-14)

**Note:** Version bump only for package @alwatr/context

# [0.32.0](https://github.com/AliMD/alwatr/compare/v0.31.0...v0.32.0) (2023-05-27)
# [0.32.0](https://github.com/AliMD/alwatr-signal/compare/v0.31.0...v0.32.0) (2023-05-27)

### Bug Fixes

- **context:** compatible with new storage api ([5251ff0](https://github.com/AliMD/alwatr/commit/5251ff005624720e091cdbc40e6b0142743428cb))
- **context:** compatible with new storage api ([5251ff0](https://github.com/AliMD/alwatr-signal/commit/5251ff005624720e091cdbc40e6b0142743428cb))

# [0.31.0](https://github.com/AliMD/alwatr/compare/v0.30.0...v0.31.0) (2023-05-08)
# [0.31.0](https://github.com/AliMD/alwatr-signal/compare/v0.30.0...v0.31.0) (2023-05-08)

### Bug Fixes

- build issues ([e1060bc](https://github.com/AliMD/alwatr/commit/e1060bccbfe3c775c32b85e9b8eb601e48b2998c))
- **context:** merge request option issue ([e24e695](https://github.com/AliMD/alwatr/commit/e24e695a8c25ab1dcb1c351a3ae0434e921610d0))
- new logger api ([9d83a7d](https://github.com/AliMD/alwatr/commit/9d83a7dc5c103bc3bb4282dacfd85fa998915300))
- packages and refs ([eea2382](https://github.com/AliMD/alwatr/commit/eea2382e459ccaa3e7b4b329d9c196eda146a08e))
- build issues ([e1060bc](https://github.com/AliMD/alwatr-signal/commit/e1060bccbfe3c775c32b85e9b8eb601e48b2998c))
- **context:** merge request option issue ([e24e695](https://github.com/AliMD/alwatr-signal/commit/e24e695a8c25ab1dcb1c351a3ae0434e921610d0))
- new logger api ([9d83a7d](https://github.com/AliMD/alwatr-signal/commit/9d83a7dc5c103bc3bb4282dacfd85fa998915300))
- packages and refs ([eea2382](https://github.com/AliMD/alwatr-signal/commit/eea2382e459ccaa3e7b4b329d9c196eda146a08e))

### Features

- **context:** add `requestIfNotComplete` ([580d5c9](https://github.com/AliMD/alwatr/commit/580d5c9c74f1c8921b45d402641df9444f438547))
- **context:** awesome server context ([c001c58](https://github.com/AliMD/alwatr/commit/c001c58a2b1b4e13fd1c34b5128031fd640a98e1))
- **context:** new package ([98ee43d](https://github.com/AliMD/alwatr/commit/98ee43d83b1ad5b3806ec6053c5cac70912000b3))
- **context:** simple context api ([2a1b152](https://github.com/AliMD/alwatr/commit/2a1b152380f267a6b173f08bbbe10295325b1fd8))
- **context:** add `requestIfNotComplete` ([580d5c9](https://github.com/AliMD/alwatr-signal/commit/580d5c9c74f1c8921b45d402641df9444f438547))
- **context:** awesome server context ([c001c58](https://github.com/AliMD/alwatr-signal/commit/c001c58a2b1b4e13fd1c34b5128031fd640a98e1))
- **context:** new package ([98ee43d](https://github.com/AliMD/alwatr-signal/commit/98ee43d83b1ad5b3806ec6053c5cac70912000b3))
- **context:** simple context api ([2a1b152](https://github.com/AliMD/alwatr-signal/commit/2a1b152380f267a6b173f08bbbe10295325b1fd8))
19 changes: 10 additions & 9 deletions packages/server-context/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,20 @@
},
"repository": {
"type": "git",
"url": "https://github.com/AliMD/alwatr",
"directory": "core/server-context"
"url": "https://github.com/AliMD/alwatr-signal",
"directory": "packages/server-context"
},
"homepage": "https://github.com/AliMD/alwatr/tree/main/core/server-context#readme",
"homepage": "https://github.com/AliMD/alwatr-signal/tree/next/packages/server-context#readme",
"bugs": {
"url": "https://github.com/AliMD/alwatr/issues"
"url": "https://github.com/AliMD/alwatr-signal/issues"
},
"dependencies": {
"@alwatr/fetch": "^1.1.2",
"@alwatr/fsm": "^1.1.2",
"@alwatr/logger": "^1.1.2",
"@alwatr/signal": "^1.1.2",
"@alwatr/util": "^1.2.0",
"@alwatr/fetch": "^2.0.1",
"@alwatr/fsm": "^2.0.0-prv",
"@alwatr/signal": "^2.0.0-prv",
"@alwatr/logger": "^1.1.5",
"@alwatr/util": "^1.2.3",
"@alwatr/type": "^1.1.4",
"tslib": "^2.6.2"
}
}
Loading

0 comments on commit 21a6afa

Please sign in to comment.