cachefactory
Advanced tools
Comparing version 1.5.0 to 1.5.1
@@ -0,1 +1,6 @@ | ||
##### 1.5.1 - 29 April 2016 | ||
###### Backwards compatible changes | ||
- Added `jsnext:main` | ||
##### 1.5.0 - 29 April 2016 | ||
@@ -2,0 +7,0 @@ |
/** | ||
* CacheFactory | ||
* @version 1.5.0 - Homepage <https://github.com/jmdobry/CacheFactory> | ||
* @version 1.5.1 - Homepage <https://github.com/jmdobry/CacheFactory> | ||
* @copyright (c) 2013-2016 CacheFactory project authors | ||
@@ -5,0 +5,0 @@ * @license MIT <https://github.com/jmdobry/CacheFactory/blob/master/LICENSE> |
{ | ||
"name": "cachefactory", | ||
"description": "CacheFactory is a very simple and useful cache for the browser.", | ||
"version": "1.5.0", | ||
"version": "1.5.1", | ||
"homepage": "https://github.com/jmdobry/CacheFactory", | ||
"main": "dist/cachefactory.js", | ||
"jsnext:main": "dist/cachefactory.es2015.js", | ||
"files": [ | ||
@@ -38,3 +39,5 @@ "dist/", | ||
"lint": "standard src/ test/ *.js", | ||
"bundle": "rollup src/index.js -c -o dist/cachefactory.js -m dist/cachefactory.js.map -f umd", | ||
"bundle:es5": "rollup src/index.js -c -o dist/cachefactory.js -m dist/cachefactory.js.map -f umd", | ||
"bundle:esnext": "rollup src/index.js -c -o dist/cachefactory.es2015.js -m dist/cachefactory.es2015.js.map -f es6", | ||
"bundle": "npm run bundle:es5 && npm run bundle:esnext", | ||
"min": "uglifyjs dist/cachefactory.js -o dist/cachefactory.min.js --source-map dist/cachefactory.min.map --source-map-url cachefactory.min.map -v -m -c --screw-ie8", | ||
@@ -41,0 +44,0 @@ "build": "npm run lint && npm run bundle && npm run min", |
254483
14
2940