File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog nth-day
2
2
3
+ ## 1.1.4
4
+
5
+ * Replace ` rm -rf ` with ` rimraf ` for cross platform compatibility
6
+ * Fix node engine >= requirement to fix yarn install
7
+
3
8
## 1.1.3
4
9
5
10
* Updates for Node 8
Original file line number Diff line number Diff line change 16
16
"eslint" : " ^4.0.0" ,
17
17
"eslint-config-guyellis" : " 0.0.6" ,
18
18
"istanbul" : " ^1.0.0-alpha" ,
19
- "mocha" : " ^3.0.1"
19
+ "mocha" : " ^3.0.1" ,
20
+ "rimraf" : " 2.6.1"
20
21
},
21
22
"engines" : {
22
23
"node" : " >=4.2.3"
44
45
"prepublishOnly" : " npm run build" ,
45
46
"test" : " npm run coverage"
46
47
},
47
- "version" : " 1.1.3 "
48
+ "version" : " 1.1.4 "
48
49
}
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
- rm -rf lib/
2
+ rimraf lib/
3
3
./node_modules/.bin/babel --presets es2015 src/ --out-dir lib/
You can’t perform that action at this time.
0 commit comments