Skip to content

Commit 6062554

Browse files
committed
Upgrade stuff and use npm instead of yarn
1 parent 72400b9 commit 6062554

File tree

8 files changed

+5330
-3395
lines changed

8 files changed

+5330
-3395
lines changed

.babelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"@babel/env",
55
{
66
"targets": {
7-
"node": "10"
7+
"node": "12"
88
}
99
}
1010
]

.eslintrc.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
module.exports = {
2+
env: {
3+
es6: true,
4+
node: true
5+
},
6+
globals: {
7+
location: "off"
8+
},
9+
extends: [
10+
"@runly"
11+
],
12+
rules:{
13+
"import/no-commonjs": "off"
14+
}
15+
};

.eslintrc.yml

Lines changed: 0 additions & 9 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ lib
22

33
node_modules
44
npm-debug.log*
5-
package-lock.json
5+
yarn.lock
66
yarn-error.log
77
.module-cache

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@ By default, Gatsby only makes system environment variables [prefixed with `GATSB
66

77
## Install
88

9-
```
10-
yarn add gatsby-plugin-env-variables
11-
```
12-
13-
or
14-
159
```
1610
npm install gatsby-plugin-env-variables
1711
```

0 commit comments

Comments
 (0)