Skip to content

Commit

Permalink
v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guigrpa committed Oct 25, 2017
1 parent 29c197e commit ebec843
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 27 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,5 @@
## 1.4.0 (2017-10-25)

* Add **mergeDeep()** [#14, @dentrado]
* Update benchmarks to reflect current versions of *ImmutableJS* and *seamless-immutable*

Expand Down
46 changes: 19 additions & 27 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "timm",
"version": "1.3.1",
"version": "1.4.0",
"description": "Immutability helpers with fast reads and acceptable writes",
"main": "lib/timm.js",
"dependencies": {},
Expand Down Expand Up @@ -40,43 +40,35 @@
"lint": "eslint src/timm.js",
"test": "yarn testCovFull",
"testFast": "ava",
"testCovFast":
"yarn testCovPrepare && yarn testCovDev && yarn testCovReport",
"testCovFull":
"yarn testCovPrepare && yarn testCovDev && yarn testCovProd && yarn testCovMin && yarn testCovReport",
"testCovNoMin":
"yarn testCovPrepare && yarn testCovDev && yarn testCovProd && yarn testCovReport",
"testCovPrepare":
"rm -rf ./coverage .nyc_output .nyc_tmp && mkdir .nyc_tmp",
"testCovDev":
"cross-env NODE_ENV=development nyc ava && mv .nyc_output/* .nyc_tmp/",
"testCovProd":
"cross-env NODE_ENV=production nyc ava && mv .nyc_output/* .nyc_tmp/",
"testCovMin":
"cross-env TEST_MINIFIED_LIB=1 nyc ava && mv .nyc_output/* .nyc_tmp/",
"testCovReport":
"cp .nyc_tmp/* .nyc_output/ && nyc report --reporter=html --reporter=lcov",
"compile":
"rm -rf ./lib && mkdir lib && babel -o lib/timm.js src/timm.js && cp src/api.js.flow lib/timm.js.flow",
"docs":
"extract-docs --template docs/README_TEMPLATE.md --output README.md",
"uglify":
"cross-env NODE_ENV=production envify lib/timm.js | uglifyjs - -o lib/timm.min.js --mangle --compress --comments \"/^!/\"",
"build":
"yarn lint && yarn flow && yarn compile && yarn uglify && yarn testCovFull && yarn docs && yarn xxl",
"testCovFast": "yarn testCovPrepare && yarn testCovDev && yarn testCovReport",
"testCovFull": "yarn testCovPrepare && yarn testCovDev && yarn testCovProd && yarn testCovMin && yarn testCovReport",
"testCovNoMin": "yarn testCovPrepare && yarn testCovDev && yarn testCovProd && yarn testCovReport",
"testCovPrepare": "rm -rf ./coverage .nyc_output .nyc_tmp && mkdir .nyc_tmp",
"testCovDev": "cross-env NODE_ENV=development nyc ava && mv .nyc_output/* .nyc_tmp/",
"testCovProd": "cross-env NODE_ENV=production nyc ava && mv .nyc_output/* .nyc_tmp/",
"testCovMin": "cross-env TEST_MINIFIED_LIB=1 nyc ava && mv .nyc_output/* .nyc_tmp/",
"testCovReport": "cp .nyc_tmp/* .nyc_output/ && nyc report --reporter=html --reporter=lcov",
"compile": "rm -rf ./lib && mkdir lib && babel -o lib/timm.js src/timm.js && cp src/api.js.flow lib/timm.js.flow",
"docs": "extract-docs --template docs/README_TEMPLATE.md --output README.md",
"uglify": "cross-env NODE_ENV=production envify lib/timm.js | uglifyjs - -o lib/timm.min.js --mangle --compress --comments \"/^!/\"",
"build": "yarn lint && yarn flow && yarn compile && yarn uglify && yarn testCovFull && yarn docs && yarn xxl",
"travis": "yarn compile && yarn testCovNoMin",
"xxl": "xxl",
"benchmarks": "coffee tools/benchmarks.coffee"
},
"ava": {
"files": ["test/*.js"],
"files": [
"test/*.js"
],
"babel": "inherit"
},
"repository": {
"type": "git",
"url": "http://guigrpa.github.io/timm/"
},
"keywords": ["immutability"],
"keywords": [
"immutability"
],
"author": "Guillermo Grau Panea",
"license": "MIT"
}

0 comments on commit ebec843

Please sign in to comment.