Skip to content

Commit

Permalink
Merge pull request #63 from mauriciosoares/include-src-in-module-dist…
Browse files Browse the repository at this point in the history
…ribution

include src in module distribution, simplify files array, reorder
  • Loading branch information
GrosSacASac authored Jul 22, 2019
2 parents 200331a + 4a04541 commit 3e1da1b
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
{
"name": "@eroc/core",
"version": "0.13.5",
"version": "0.14.0",
"main": "dist/core.umd.js",
"module": "dist/core.js",
"description": "Lightweight framework for scalable applications",
"author": "Mauricio Soares",
"homepage": "https://github.com/msodeveloper/core.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/msodeveloper/core.js.git"
},
"main": "dist/core.umd.js",
"module": "dist/core.js",
"files": [
"dist/core.umd.js",
"dist/core.iife.js",
"dist/core.js",
"LICENSE",
"README.md"
],
"scripts": {
"serve": "serve",
"bundle": "rollup --config tools/rollup.config.js",
"prepublishOnly": "npm run bundle",
"test": "jasmine --config=tests/jasmine.json"
},
"files": [
"src",
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/msodeveloper/core.js.git"
},
"bugs": {
"url": "https://github.com/msodeveloper/core.js/issues"
},
Expand Down

0 comments on commit 3e1da1b

Please sign in to comment.