diff --git a/VERSION b/VERSION index d24cf4a..ad7b853 100644 --- a/VERSION +++ b/VERSION @@ -4,7 +4,7 @@ Release Date: 8/13/24 Platform: JavaScript Version: 2 Revision: 0 - Minor: 4 + Minor: 6 Authors: Saad Shams : David Foley : Cliff Hall @@ -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 \ No newline at end of file diff --git a/package.json b/package.json index 9733326..06eb463 100755 --- a/package.json +++ b/package.json @@ -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", @@ -35,9 +35,8 @@ "mvc" ], "files": [ - "bin/", + "bin/**/*.*", "LICENSE", - "README.md", "VERSION", "package.json" ], @@ -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",