Skip to content

Commit

Permalink
NPM package 2.0.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffhall committed Aug 14, 2024
1 parent 6f0a170 commit 30121a1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
4 changes: 3 additions & 1 deletion VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Release Date: 8/13/24
Platform: JavaScript
Version: 2
Revision: 0
Minor: 4
Minor: 6
Authors: Saad Shams <[email protected]>
: David Foley <[email protected]>
: Cliff Hall <[email protected]>
Expand All @@ -14,3 +14,5 @@ Release Date: 8/13/24
2.0.2 - Version alignment in build
2.0.3 - Update package description
2.0.4 - Streamline exports and add ESM/CommonJS support
2.0.5 - NPM package borked for cjs
2.0.6 - NPM package bundling the ESM/CommonJS suuport
13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@puremvc/puremvc-js-multicore-framework",
"version": "2.0.4",
"main": "bin/cjs/puremvc.cjs",
"module": "bin/esm/puremvc.js",
"version": "2.0.6",
"type": "module",
"main": "bin/cjs/puremvc.js",
"modules": "bin/esm/puremvc.js",
"exports": {
".": {
"import": "./bin/esm/puremvc.js",
"require": "./bin/cjs/puremvc.cjs"
"require": "./bin/cjs/puremvc.js"
}
},
"description": "PureMVC MultiCore Framework for JavaScript",
Expand Down Expand Up @@ -35,9 +35,8 @@
"mvc"
],
"files": [
"bin/",
"bin/**/*.*",
"LICENSE",
"README.md",
"VERSION",
"package.json"
],
Expand Down Expand Up @@ -76,7 +75,7 @@
"rollup": "^4.6.1"
},
"bin": {
"puremvc-js-multicore-framework": "bin/esm/puremvc.js"
"puremvc-js-multicore-framework": "bin/puremvc.js"
},
"directories": {
"doc": "docs",
Expand Down

0 comments on commit 30121a1

Please sign in to comment.