Skip to content

Commit a3855e5

Browse files
authored
fix: broken gist with files starting with . (#38)
* fix: broken gist with files starting with . * Update travis, dropping nodejs 8 support * Update travis
1 parent 21766de commit a3855e5

File tree

6 files changed

+2103
-2729
lines changed

6 files changed

+2103
-2729
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
language: node_js
22

33
node_js:
4-
- "8"
5-
- "10"
6-
- "11"
4+
- "12"
75

86
sudo: false
97

package.json

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -36,39 +36,38 @@
3636
"release": "yarn run build && ./node_modules/.bin/standard-version"
3737
},
3838
"devDependencies": {
39-
"@babel/cli": "^7.10.3",
40-
"@babel/core": "^7.10.3",
41-
"@babel/preset-env": "^7.10.3",
42-
"@babel/preset-react": "^7.10.1",
43-
"@babel/plugin-proposal-object-rest-spread": "^7.10.3",
44-
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
45-
"@babel/plugin-transform-runtime": "^7.10.3",
39+
"@babel/cli": "^7.10.5",
40+
"@babel/core": "^7.11.4",
41+
"@babel/preset-env": "^7.11.0",
42+
"@babel/preset-react": "^7.10.4",
43+
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
44+
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
45+
"@babel/plugin-transform-runtime": "^7.11.0",
4646
"babel-eslint": "^10.1.0",
4747
"babel-plugin-add-module-exports": "^1.0.2",
4848
"cross-env": "^7.0.2",
49-
"eslint": "^7.3.1",
49+
"eslint": "^7.7.0",
5050
"eslint-config-prettier": "^6.11.0",
5151
"eslint-plugin-filenames": "^1.3.2",
52-
"eslint-plugin-jest": "^23.17.1",
53-
"eslint-plugin-json": "^2.1.1",
52+
"eslint-plugin-jest": "^23.20.0",
53+
"eslint-plugin-json": "^2.1.2",
5454
"eslint-plugin-prettier": "^3.1.4",
55-
"eslint-plugin-react": "^7.20.0",
55+
"eslint-plugin-react": "^7.20.6",
5656
"husky": "^4.2.5",
57-
"jest": "^26.1.0",
58-
"lint-staged": "^10.2.11",
59-
"prettier": "^2.0.5",
57+
"jest": "^26.4.2",
58+
"lint-staged": "^10.2.12",
59+
"prettier": "^2.1.0",
6060
"react": "^16.13.1",
61-
"remark": "^12.0.0",
61+
"remark": "^12.0.1",
6262
"rimraf": "^3.0.2",
63-
"standard-version": "^8.0.0"
63+
"standard-version": "^9.0.0"
6464
},
6565
"dependencies": {
66-
"@babel/runtime": "^7.10.3",
66+
"@babel/runtime": "^7.11.2",
6767
"async-unist-util-visit": "^1.0.0",
6868
"cheerio": "^1.0.0-rc.3",
6969
"parse-numeric-range": "^1.2.0",
70-
"request": "^2.88.2",
71-
"request-promise": "^4.2.5"
70+
"node-fetch": "^2.6.0"
7271
},
7372
"peerDependencies": {
7473
"gatsby": "*",

0 commit comments

Comments
 (0)