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

+9-15
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

+14-14
Large diffs are not rendered by default.

docs/classes/Facade.html

+29-29
Large diffs are not rendered by default.

docs/classes/MacroCommand.html

+10-10
Large diffs are not rendered by default.

docs/classes/Mediator.html

+17-17
Large diffs are not rendered by default.

docs/classes/Model.html

+13-13
Large diffs are not rendered by default.

docs/classes/Notification.html

+8-8
Large diffs are not rendered by default.

docs/classes/Notifier.html

+6-6
Large diffs are not rendered by default.

docs/classes/Observer.html

+8-8
Large diffs are not rendered by default.

docs/classes/Proxy.html

+15-15
Large diffs are not rendered by default.

docs/classes/SimpleCommand.html

+7-7
Large diffs are not rendered by default.

docs/classes/View.html

+16-16
Large diffs are not rendered by default.

docs/interfaces/ICommand.html

+4-4
Large diffs are not rendered by default.

docs/interfaces/IController.html

+5-5
Large diffs are not rendered by default.

docs/interfaces/IFacade.html

+15-15
Large diffs are not rendered by default.

docs/interfaces/IMediator.html

+9-9
Large diffs are not rendered by default.

docs/interfaces/IModel.html

+5-5
Large diffs are not rendered by default.

docs/interfaces/INotification.html

+5-5
Large diffs are not rendered by default.

docs/interfaces/INotifier.html

+3-3
Large diffs are not rendered by default.

docs/interfaces/IObserver.html

+5-5
Large diffs are not rendered by default.

docs/interfaces/IProxy.html

+7-7
Large diffs are not rendered by default.

docs/interfaces/IView.html

+8-8
Large diffs are not rendered by default.

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.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)