Skip to content

Commit 1f97fae

Browse files
committed
Version 2.0.8
* Remove auto-publish, it makes it difficult to improve testing without increasing framework version * Remove interfaces folder from bin/cjs and bin/esm * Remove some unused classes from command tests
1 parent da93aeb commit 1f97fae

13 files changed

+10
-94
lines changed

README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ npm i @puremvc/puremvc-typescript-multicore-framework
1212
```
1313

1414
## Demos
15-
* [React Native Demo: EmployeeAdmin](https://github.com/PureMVC/puremvc-typescript-demo-reactnative-employeeadmin)
15+
* [Basic Employee Admin](https://github.com/PureMVC/puremvc-typescript-demo-employeeadmin/wiki)
16+
17+
## Utilities
18+
* [Async Command]() https://github.com/PureMVC/puremvc-typescript-util-async-command
19+
* [State Machine]() https://github.com/PureMVC/puremvc-typescript-util-state-machine
20+
1621

1722
## Platforms / Technologies
1823
* [TypeScript](https://en.wikipedia.org/wiki/TypeScript)
@@ -24,7 +29,7 @@ npm i @puremvc/puremvc-typescript-multicore-framework
2429
* [React Native](https://en.wikipedia.org/wiki/React_Native)
2530

2631
## Status
27-
Production - [Version 2.0.8](https://github.com/PureMVC/puremvc-typescript-multicore-framework/blob/master/VERSION)
32+
Production - [Version 2.0.9](https://github.com/PureMVC/puremvc-typescript-multicore-framework/blob/master/VERSION)
2833

2934
## License
3035
* PureMVC MultiCore Framework for TypeScript - Copyright © 2025 [Saad Shams](https://www.linkedin.com/in/muizz)

VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ Release Date: 4/13/25
1717
2.0.6 - Add test coverage reporting
1818
2.0.7 - Increase test coverage
1919
2.0.8 - Remove auto-publish to npm. Remove interfaces folder from bin/cjs and bin/esm
20+
2.0.9 - Fix demo link

bin/cjs/interfaces/ICommand.js

-9
This file was deleted.

bin/cjs/interfaces/IController.js

-9
This file was deleted.

bin/cjs/interfaces/IFacade.js

-9
This file was deleted.

bin/cjs/interfaces/IMediator.js

-9
This file was deleted.

bin/cjs/interfaces/IModel.js

-9
This file was deleted.

bin/cjs/interfaces/INotification.js

-9
This file was deleted.

bin/cjs/interfaces/INotifier.js

-9
This file was deleted.

bin/cjs/interfaces/IObserver.js

-9
This file was deleted.

bin/cjs/interfaces/IProxy.js

-9
This file was deleted.

bin/cjs/interfaces/IView.js

-9
This file was deleted.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@puremvc/puremvc-typescript-multicore-framework",
3-
"version": "2.0.8",
3+
"version": "2.0.9",
44
"description": "PureMVC MultiCore Framework for TypeScript",
55
"main": "./bin/cjs/index.js",
66
"module": "./bin/esm/index.js",
@@ -21,7 +21,7 @@
2121
"build": "npm run clean && npm run build:lib",
2222
"build:lib": "npm run build:cjs && npm run build:esm",
2323
"build:esm": "tsc --module esnext --outDir bin/esm && echo '{\"type\": \"module\"}' > bin/esm/package.json && rm -rf bin/esm/interfaces",
24-
"build:cjs": "tsc --module commonjs --outDir bin/cjs && echo '{\"type\": \"commonjs\"}' > bin/cjs/package.json && rm -rf bin/esm/interfaces",
24+
"build:cjs": "tsc --module commonjs --outDir bin/cjs && echo '{\"type\": \"commonjs\"}' > bin/cjs/package.json && rm -rf bin/cjs/interfaces",
2525
"build:doc": "typedoc",
2626
"clean": "rm -rf bin",
2727
"test": "jest --coverage",

0 commit comments

Comments
 (0)