Skip to content

Commit 072c60c

Browse files
committed
Drop fs-extra version to retain Node 8 compatibility
1 parent f48c0c7 commit 072c60c

File tree

3 files changed

+28
-37
lines changed

3 files changed

+28
-37
lines changed

.github/workflows/nodejs.yml

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,26 @@ name: Node.js CI
55

66
on:
77
push:
8-
branches: [ master ]
8+
branches: [master]
99
pull_request:
10-
branches: [ master ]
10+
branches: [master]
1111

1212
jobs:
1313
build:
14-
1514
runs-on: ubuntu-latest
1615

1716
strategy:
1817
matrix:
19-
node-version: [10.x, 12.x]
18+
node-version: [8.x, 10.x, 12.x]
2019

2120
steps:
22-
- uses: actions/checkout@v2
23-
- name: Use Node.js ${{ matrix.node-version }}
24-
uses: actions/setup-node@v1
25-
with:
26-
node-version: ${{ matrix.node-version }}
27-
- run: npm install
28-
- run: npm run prepare
29-
- run: npm test
30-
env:
31-
CI: true
21+
- uses: actions/checkout@v2
22+
- name: Use Node.js ${{ matrix.node-version }}
23+
uses: actions/setup-node@v1
24+
with:
25+
node-version: ${{ matrix.node-version }}
26+
- run: npm install
27+
- run: npm run prepare
28+
- run: npm test
29+
env:
30+
CI: true

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"bytes": "^3.0.0",
4646
"chalk": "^4.0.0",
4747
"detective": "^5.2.0",
48-
"fs-extra": "^9.0.0",
48+
"fs-extra": "^8.0.0",
4949
"lodash": "^4.17.15",
5050
"node-emoji": "^1.8.1",
5151
"normalize.css": "^8.0.1",

yarn.lock

Lines changed: 14 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1306,11 +1306,6 @@ asynckit@^0.4.0:
13061306
resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
13071307
integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
13081308

1309-
at-least-node@^1.0.0:
1310-
version "1.0.0"
1311-
resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2"
1312-
integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==
1313-
13141309
atob@^2.1.1:
13151310
version "2.1.2"
13161311
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
@@ -2386,15 +2381,14 @@ fragment-cache@^0.2.1:
23862381
dependencies:
23872382
map-cache "^0.2.2"
23882383

2389-
fs-extra@^9.0.0:
2390-
version "9.0.0"
2391-
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.0.tgz#b6afc31036e247b2466dc99c29ae797d5d4580a3"
2392-
integrity sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==
2384+
fs-extra@^8.0.0:
2385+
version "8.1.0"
2386+
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0"
2387+
integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==
23932388
dependencies:
2394-
at-least-node "^1.0.0"
23952389
graceful-fs "^4.2.0"
2396-
jsonfile "^6.0.1"
2397-
universalify "^1.0.0"
2390+
jsonfile "^4.0.0"
2391+
universalify "^0.1.0"
23982392

23992393
fs-minipass@^1.2.5:
24002394
version "1.2.6"
@@ -3456,12 +3450,10 @@ json5@^2.1.2:
34563450
dependencies:
34573451
minimist "^1.2.5"
34583452

3459-
jsonfile@^6.0.1:
3460-
version "6.0.1"
3461-
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.0.1.tgz#98966cba214378c8c84b82e085907b40bf614179"
3462-
integrity sha512-jR2b5v7d2vIOust+w3wtFKZIfpC2pnRmFAhAC/BuweZFQR8qZzxH1OyrQ10HmdVYiXWkYUqPVsz91cG7EL2FBg==
3463-
dependencies:
3464-
universalify "^1.0.0"
3453+
jsonfile@^4.0.0:
3454+
version "4.0.0"
3455+
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
3456+
integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=
34653457
optionalDependencies:
34663458
graceful-fs "^4.1.6"
34673459

@@ -5329,10 +5321,10 @@ uniq@^1.0.1:
53295321
resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
53305322
integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=
53315323

5332-
universalify@^1.0.0:
5333-
version "1.0.0"
5334-
resolved "https://registry.yarnpkg.com/universalify/-/universalify-1.0.0.tgz#b61a1da173e8435b2fe3c67d29b9adf8594bd16d"
5335-
integrity sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==
5324+
universalify@^0.1.0:
5325+
version "0.1.2"
5326+
resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
5327+
integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
53365328

53375329
unset-value@^1.0.0:
53385330
version "1.0.0"

0 commit comments

Comments
 (0)