Skip to content

Commit

Permalink
2.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
MoOx committed Jan 22, 2018
1 parent 46fdc61 commit 00eb6f3
Show file tree
Hide file tree
Showing 3 changed files with 3,934 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 2.1.4 - 2018-01-22

- Prevent webpack parsing issue
(see https://github.com/zaach/jison/pull/352)

# 2.1.3 - 2017-11-27

- Fixed: Incorrect reduction for a specific case (e.g. `calc(1em + (1em - 5px))`) ([#43](https://github.com/MoOx/reduce-css-calc/pull/43) - @Justineo)
Expand Down
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reduce-css-calc",
"version": "2.1.3",
"version": "2.1.4",
"description": "Reduce CSS calc() function to the maximum",
"keywords": [
"css",
Expand All @@ -15,7 +15,8 @@
"prepublish": "npm run build && del-cli dist/__tests__",
"build": "del-cli dist && cross-env BABEL_ENV=publish babel src --out-dir dist && jison parser.jison -o dist/parser.js",
"pretest": "eslint src && npm run build",
"test": "ava dist/__tests__/"
"test": "ava dist/__tests__/",
"release": "npmpub"
},
"author": "Maxime Thirouin",
"license": "MIT",
Expand All @@ -34,7 +35,8 @@
"eslint-config-i-am-meticulous": "^6.0.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"jison": "https://github.com/download13/jison#b7d6e0de7d2c2c1bde5451b8e99813843a473315"
"jison": "https://github.com/download13/jison#b7d6e0de7d2c2c1bde5451b8e99813843a473315",
"npmpub": "^3.1.0"
},
"dependencies": {
"css-unit-converter": "^1.1.1",
Expand Down
Loading

0 comments on commit 00eb6f3

Please sign in to comment.