Skip to content

Commit 7a36c28

Browse files
committed
1.0.0 Release
1 parent b29adb9 commit 7a36c28

31 files changed

+179
-342
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
* PureMVC Utility for JS - AsyncCommand - Ported by Cliff Hall (no relation)
1+
* PureMVC Utility for Typescript - AsyncCommand - Ported by Cliff Hall (no relation)
22
* From PureMVC Utility for AS3 - AsyncCommand - Copyright © 2008 Duncan Hall
33
* PureMVC - Copyright © 2007-2025 Futurescale, Inc.
44
* All rights reserved.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Production - [Version 1.0.0](https://github.com/PureMVC/puremvc-typescript-util-
2020

2121

2222
## License
23-
* PureMVC Utility for JS - AsyncCommand - Ported by Cliff Hall (no relation)
24-
* From PureMVC Utility for AS3 - AsyncCommand - Copyright © 2008 Duncan Hall
23+
* PureMVC Utility for Typescript - AsyncCommand - Ported by Cliff Hall
24+
* From PureMVC Utility for AS3 - AsyncCommand - Copyright © 2008 Duncan Hall (no relation)
2525
* PureMVC - Copyright © 2007-2025 Futurescale, Inc.
2626
* All rights reserved.
2727

VERSION

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
PureMVC Typescript Utility - State Machine
22
--------------------------------------------------------------------------
3-
Release Date: 2/24/25
3+
Release Date: 4/13/25
44
Platform: Typescript
5-
Version: 1
5+
Version: 1
66
Revision: 0
7-
Authors: Neil Manuell <neil.manuell@puremvc.org>
8-
: Cliff Hall <cliff.hall@puremvc.org>
7+
Minor: 0
8+
Authors: Cliff Hall <cliff.hall@puremvc.org>
99
--------------------------------------------------------------------------
1010

11-
1.0 Initial port from the AS3 source.
11+
1.0.0 Initial port from the AS3 source.

bin/cjs/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use strict";
22
Object.defineProperty(exports, "__esModule", { value: true });
33
exports.AsyncMacroCommand = exports.AsyncCommand = void 0;
4-
const AsyncCommand_1 = require("./AsyncCommand");
4+
var AsyncCommand_1 = require("./command/AsyncCommand");
55
Object.defineProperty(exports, "AsyncCommand", { enumerable: true, get: function () { return AsyncCommand_1.AsyncCommand; } });
6-
const AsyncMacroCommand_1 = require("./AsyncMacroCommand");
6+
var AsyncMacroCommand_1 = require("./command/AsyncMacroCommand");
77
Object.defineProperty(exports, "AsyncMacroCommand", { enumerable: true, get: function () { return AsyncMacroCommand_1.AsyncMacroCommand; } });

bin/cjs/types.js

Lines changed: 0 additions & 2 deletions
This file was deleted.

bin/esm/index.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
import { AsyncCommand } from "./AsyncCommand";
2-
import { AsyncMacroCommand } from "./AsyncMacroCommand";
3-
export { AsyncCommand, AsyncMacroCommand };
1+
export { AsyncCommand } from "./command/AsyncCommand";
2+
export { AsyncMacroCommand } from "./command/AsyncMacroCommand";

0 commit comments

Comments
 (0)