File tree 2 files changed +21
-18
lines changed
2 files changed +21
-18
lines changed Original file line number Diff line number Diff line change
1
+ # 1.2.1 - 2016-02-22
2
+
3
+ - Fixed: uppercase letters in units are now supported
4
+ ([ #8 ] ( https://github.com/MoOx/reduce-css-calc/pull/8 ) )
5
+
1
6
# 1.2.0 - 2014-11-24
2
7
3
- * Decimal precision is now customisable as the ` precision ` option
8
+ - Decimal precision is now customisable as the ` precision ` option
4
9
5
10
# 1.1.4 - 2014-11-12
6
11
7
- * 5 decimals rounding for everything
12
+ - 5 decimals rounding for everything
8
13
9
14
# 1.1.3 - 2014-08-13
10
15
11
- * 5 decimals rounding for percentage
16
+ - 5 decimals rounding for percentage
12
17
13
18
# 1.1.2 - 2014-08-10
14
19
15
- * Prevent infinite loop by adding a ` Call stack overflow `
16
- * Correctly ignore unrecognized values (safer evaluation for nested expressions, see [ postcss/postcss-calc #2 ] ( https://github.com/postcss/postcss-calc/issues/2 ) )
17
- * Handle rounding issues (eg: 10% * 20% now give 2%, not 2.0000000000000004%)
20
+ - Prevent infinite loop by adding a ` Call stack overflow `
21
+ - Correctly ignore unrecognized values (safer evaluation for nested expressions,
22
+ see [ postcss/postcss-calc #2 ] ( https://github.com/postcss/postcss-calc/issues/2 ) )
23
+ - Handle rounding issues (eg: 10% * 20% now give 2%, not 2.0000000000000004%)
18
24
19
25
# 1.1.1 - 2014-08-06
20
26
21
- * Fix issue when using mutiples differents prefixes in the same function
27
+ - Fix issue when using mutiples differents prefixes in the same function
22
28
23
29
# 1.1.0 - 2014-08-06
24
30
25
- * support more complex formulas
26
- * use ` reduce-function-call `
27
- * better error message
31
+ - support more complex formulas
32
+ - use ` reduce-function-call `
33
+ - better error message
28
34
29
35
30
36
# 1.0.0 - 2014-08-04
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " reduce-css-calc" ,
3
- "version" : " 1.2.0 " ,
3
+ "version" : " 1.2.1 " ,
4
4
"description" : " Reduce CSS calc() function to the maximum" ,
5
5
"keywords" : [
6
6
" css" ,
9
9
],
10
10
"author" : " Maxime Thirouin" ,
11
11
"license" : " MIT" ,
12
- "repository" : {
13
- "type" : " git" ,
14
- "url" : " https://github.com/MoOx/reduce-css-calc.git"
15
- },
12
+ "repository" : " https://github.com/MoOx/reduce-css-calc.git" ,
16
13
"files" : [
17
- " CHANGELOG.md" ,
18
- " LICENSE" ,
19
14
" index.js"
20
15
],
21
16
"dependencies" : {
25
20
"devDependencies" : {
26
21
"jscs" : " ^1.5.9" ,
27
22
"jshint" : " ^2.5.2" ,
23
+ "npmpub" : " ^3.0.3" ,
28
24
"tape" : " ^2.13.4"
29
25
},
30
26
"scripts" : {
31
27
"jscs" : " jscs *.js **/*.js" ,
32
28
"jshint" : " jshint . --exclude node_modules" ,
33
- "test" : " npm run jscs && npm run jshint && tape test"
29
+ "test" : " npm run jscs && npm run jshint && tape test" ,
30
+ "release" : " npmpub"
34
31
}
35
32
}
You can’t perform that action at this time.
0 commit comments