Skip to content

Commit 00eb6f3

Browse files
committed
2.1.4
1 parent 46fdc61 commit 00eb6f3

File tree

3 files changed

+3934
-3
lines changed

3 files changed

+3934
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 2.1.4 - 2018-01-22
2+
3+
- Prevent webpack parsing issue
4+
(see https://github.com/zaach/jison/pull/352)
5+
16
# 2.1.3 - 2017-11-27
27

38
- Fixed: Incorrect reduction for a specific case (e.g. `calc(1em + (1em - 5px))`) ([#43](https://github.com/MoOx/reduce-css-calc/pull/43) - @Justineo)

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reduce-css-calc",
3-
"version": "2.1.3",
3+
"version": "2.1.4",
44
"description": "Reduce CSS calc() function to the maximum",
55
"keywords": [
66
"css",
@@ -15,7 +15,8 @@
1515
"prepublish": "npm run build && del-cli dist/__tests__",
1616
"build": "del-cli dist && cross-env BABEL_ENV=publish babel src --out-dir dist && jison parser.jison -o dist/parser.js",
1717
"pretest": "eslint src && npm run build",
18-
"test": "ava dist/__tests__/"
18+
"test": "ava dist/__tests__/",
19+
"release": "npmpub"
1920
},
2021
"author": "Maxime Thirouin",
2122
"license": "MIT",
@@ -34,7 +35,8 @@
3435
"eslint-config-i-am-meticulous": "^6.0.1",
3536
"eslint-plugin-babel": "^4.0.0",
3637
"eslint-plugin-import": "^2.2.0",
37-
"jison": "https://github.com/download13/jison#b7d6e0de7d2c2c1bde5451b8e99813843a473315"
38+
"jison": "https://github.com/download13/jison#b7d6e0de7d2c2c1bde5451b8e99813843a473315",
39+
"npmpub": "^3.1.0"
3840
},
3941
"dependencies": {
4042
"css-unit-converter": "^1.1.1",

0 commit comments

Comments
 (0)