Skip to content

Commit 812d5fb

Browse files
committed
Replace "rm -rf" with "rimraf" - fixes #8
1 parent 0041ad0 commit 812d5fb

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog nth-day
22

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+
38
## 1.1.3
49

510
* Updates for Node 8

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"eslint": "^4.0.0",
1717
"eslint-config-guyellis": "0.0.6",
1818
"istanbul": "^1.0.0-alpha",
19-
"mocha": "^3.0.1"
19+
"mocha": "^3.0.1",
20+
"rimraf": "2.6.1"
2021
},
2122
"engines": {
2223
"node": ">=4.2.3"
@@ -44,5 +45,5 @@
4445
"prepublishOnly": "npm run build",
4546
"test": "npm run coverage"
4647
},
47-
"version": "1.1.3"
48+
"version": "1.1.4"
4849
}

scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
2-
rm -rf lib/
2+
rimraf lib/
33
./node_modules/.bin/babel --presets es2015 src/ --out-dir lib/

0 commit comments

Comments
 (0)