Skip to content

Commit c9c0f2f

Browse files
committed
1.0.2 Release
1 parent 5f373bf commit c9c0f2f

File tree

5 files changed

+25
-25
lines changed

5 files changed

+25
-25
lines changed

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
* PureMVC Utility for Typescript - AsyncCommand - Ported by Cliff Hall (no relation)
2-
* From PureMVC Utility for AS3 - AsyncCommand - Copyright © 2008 Duncan Hall
1+
* PureMVC Utility for Typescript - AsyncCommand - Copyright © 2008 [Cliff Hall](https://github.com/cliffhall)
2+
* From PureMVC Utility for AS3 - AsyncCommand - Copyright © 2008 Duncan Hall (no relation)
33
* PureMVC - Copyright © 2007-2025 Futurescale, Inc.
44
* All rights reserved.
55

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@ But that leads to a tight coupling of one command to the next, if the first must
77

88
With the `AsyncCommand` and `AsyncMacroCommand` you could dynamically create a pipeline of commands to be executed sequentially, each of which may have multiple async tasks to complete. None need know anything about the others.
99

10-
* [NPM Package](https://www.npmjs.com/package/@puremvc/puremvc-typescript-util-async-command?activeTab=readme)
11-
12-
## Status
13-
Production - [Version 1.0.0](https://github.com/PureMVC/puremvc-typescript-util-async-command/blob/master/VERSION)
10+
```shell
11+
npm install @puremvc/puremvc-typescript-multicore-framework
12+
npm install @puremvc/puremvc-typescript-util-async-command
13+
```
1414

1515
## Platforms / Technologies
16-
* [Typescript](http://en.wikipedia.org/wiki/Typescript)
16+
* [Typescript](http://typescriptlang.org)
17+
* [PureMVC MultiCore](https://github.com/PureMVC/puremvc-typescript-multicore-framework)
18+
* [NPM](https://www.npmjs.com/package/@puremvc/puremvc-typescript-util-async-command?activeTab=readme)
1719

1820
## Ported Utility
1921
* This is a direct port of the original [AS3 AsyncCommand utility](https://github.com/PureMVC/puremvc-as3-util-asynccommand)
20-
* [Historical Discussion](http://forums.puremvc.org/index.php?topic=831.0)
21-
2222

2323
## License
24-
* PureMVC Utility for Typescript - AsyncCommand - Ported by Cliff Hall
24+
* PureMVC Utility for Typescript - AsyncCommand - Copyright © 2008 [Cliff Hall](https://github.com/cliffhall)
2525
* From PureMVC Utility for AS3 - AsyncCommand - Copyright © 2008 Duncan Hall (no relation)
2626
* PureMVC - Copyright © 2007-2025 Futurescale, Inc.
2727
* All rights reserved.

VERSION

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
PureMVC Typescript Utility - State Machine
22
--------------------------------------------------------------------------
3-
Release Date: 4/13/25
3+
Release Date: 4/22/25
44
Platform: Typescript
55
Version: 1
66
Revision: 0
7-
Minor: 0
7+
Minor: 2
88
Authors: Cliff Hall <[email protected]>
99
--------------------------------------------------------------------------
1010

1111
1.0.0 Initial port from the AS3 source.
12+
1.0.2 Fix entrypoint

package-lock.json

Lines changed: 7 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@puremvc/puremvc-typescript-util-async-command",
3-
"version": "1.0.0",
3+
"version": "1.0.2",
44
"description": "PureMVC AsyncCommand Utility for TypeScript",
55
"main": "./bin/cjs/index.js",
66
"module": "bin/esm/command/index.js",
@@ -12,7 +12,7 @@
1212
},
1313
"require": {
1414
"types": "./bin/types/index.d.ts",
15-
"default": "./bin/cjs/index.cjs"
15+
"default": "./bin/cjs/index.js"
1616
}
1717
}
1818
},
@@ -53,11 +53,11 @@
5353
},
5454
"repository": {
5555
"type": "git",
56-
"url": "git+https://github.com/PureMVC/puremvc-typescript-util-state-machine.git"
56+
"url": "git+https://github.com/PureMVC/puremvc-typescript-util-async-command.git"
5757
},
5858
"homepage": "https://puremvc.org",
5959
"bugs": {
60-
"url": "https://github.com/PureMVC/puremvc-typescript-util-state-machine/issues"
60+
"url": "https://github.com/PureMVC/puremvc-typescript-util-async-command/issues"
6161
},
6262
"keywords": [
6363
"puremvc",
@@ -73,7 +73,7 @@
7373
"bin": "bin"
7474
},
7575
"dependencies": {
76-
"@puremvc/puremvc-typescript-multicore-framework": "^2.1.1",
76+
"@puremvc/puremvc-typescript-multicore-framework": "^2.1.2",
7777
"typescript": "^5.7.3"
7878
},
7979
"devDependencies": {

0 commit comments

Comments
 (0)