Skip to content

Commit 984e2e0

Browse files
committed
2.1.2 Release
1 parent 3e95082 commit 984e2e0

23 files changed

+220
-226
lines changed

README.md

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,27 @@
22

33
PureMVC is a lightweight framework for creating applications based upon the classic [Model-View-Controller](http://en.wikipedia.org/wiki/Model-view-controller) design meta-pattern. It supports [modular programming](http://en.wikipedia.org/wiki/Modular_programming) through the use of [Multiton](http://en.wikipedia.org/wiki/Multiton) Core actors instead of the [Singletons](http://en.wikipedia.org/wiki/Singleton_pattern).
44

5-
* [NPM Package](https://www.npmjs.com/package/@puremvc/puremvc-typescript-multicore-framework?activeTab=readme)
6-
* [API Docs](https://puremvc.org/pages/docs/TypeScript/multicore/)
7-
* [Legacy Implementation](https://github.com/PureMVC/puremvc-typescript-multicore-framework/tree/1.3)
8-
95
## Installation
106
```shell
11-
npm i @puremvc/puremvc-typescript-multicore-framework
7+
npm install @puremvc/puremvc-typescript-multicore-framework
128
```
139

10+
## Documentation
11+
* [API Docs](https://puremvc.org/pages/docs/TypeScript/multicore/)
12+
* [Legacy Implementation](https://github.com/PureMVC/puremvc-typescript-multicore-framework/tree/1.3)
13+
1414
## Demos
1515
* [Basic Employee Admin](https://github.com/PureMVC/puremvc-typescript-demo-employeeadmin/wiki)
1616

1717
## Utilities
1818
* [Async Command](https://github.com/PureMVC/puremvc-typescript-util-async-command)
1919
* [State Machine](https://github.com/PureMVC/puremvc-typescript-util-state-machine)
20-
20+
* [Pipes](https://github.com/PureMVC/puremvc-typescript-pipes)
2121

2222
## Platforms / Technologies
23-
* [TypeScript](https://en.wikipedia.org/wiki/TypeScript)
24-
* [JavaScript](https://en.wikipedia.org/wiki/JavaScript)
25-
* [ECMAScript](https://en.wikipedia.org/wiki/ECMAScript)
26-
* [CommonJS](https://en.wikipedia.org/wiki/CommonJS)
27-
* [Node.js](https://en.wikipedia.org/wiki/Node.js)
28-
29-
30-
## Status
31-
Production - [Version 2.1,1](https://github.com/PureMVC/puremvc-typescript-multicore-framework/blob/master/VERSION)
23+
* [TypeScript](https://typescriptlang.org)
24+
* [Node.js](https://nodejs.org)
25+
* [NPM](https://www.npmjs.com/package/@puremvc/puremvc-typescript-multicore-framework?activeTab=readme)
3226

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

docs/classes/Controller.html

Lines changed: 14 additions & 14 deletions
Large diffs are not rendered by default.

docs/classes/Facade.html

Lines changed: 29 additions & 29 deletions
Large diffs are not rendered by default.

docs/classes/MacroCommand.html

Lines changed: 10 additions & 10 deletions
Large diffs are not rendered by default.

docs/classes/Mediator.html

Lines changed: 17 additions & 17 deletions
Large diffs are not rendered by default.

docs/classes/Model.html

Lines changed: 13 additions & 13 deletions
Large diffs are not rendered by default.

docs/classes/Notification.html

Lines changed: 8 additions & 8 deletions
Large diffs are not rendered by default.

docs/classes/Notifier.html

Lines changed: 6 additions & 6 deletions
Large diffs are not rendered by default.

docs/classes/Observer.html

Lines changed: 8 additions & 8 deletions
Large diffs are not rendered by default.

docs/classes/Proxy.html

Lines changed: 15 additions & 15 deletions
Large diffs are not rendered by default.

docs/classes/SimpleCommand.html

Lines changed: 7 additions & 7 deletions
Large diffs are not rendered by default.

docs/classes/View.html

Lines changed: 16 additions & 16 deletions
Large diffs are not rendered by default.

docs/interfaces/ICommand.html

Lines changed: 4 additions & 4 deletions
Large diffs are not rendered by default.

docs/interfaces/IController.html

Lines changed: 5 additions & 5 deletions
Large diffs are not rendered by default.

docs/interfaces/IFacade.html

Lines changed: 15 additions & 15 deletions
Large diffs are not rendered by default.

docs/interfaces/IMediator.html

Lines changed: 9 additions & 9 deletions
Large diffs are not rendered by default.

docs/interfaces/IModel.html

Lines changed: 5 additions & 5 deletions
Large diffs are not rendered by default.

docs/interfaces/INotification.html

Lines changed: 5 additions & 5 deletions
Large diffs are not rendered by default.

docs/interfaces/INotifier.html

Lines changed: 3 additions & 3 deletions
Large diffs are not rendered by default.

docs/interfaces/IObserver.html

Lines changed: 5 additions & 5 deletions
Large diffs are not rendered by default.

docs/interfaces/IProxy.html

Lines changed: 7 additions & 7 deletions
Large diffs are not rendered by default.

docs/interfaces/IView.html

Lines changed: 8 additions & 8 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@puremvc/puremvc-typescript-multicore-framework",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"description": "PureMVC MultiCore Framework for TypeScript",
55
"main": "./bin/cjs/index.js",
66
"module": "./bin/esm/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
},

0 commit comments

Comments
 (0)