Skip to content

Commit

Permalink
Upgrade stuff and use npm instead of yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
chadly committed Apr 30, 2020
1 parent 72400b9 commit 6062554
Show file tree
Hide file tree
Showing 8 changed files with 5,330 additions and 3,395 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"@babel/env",
{
"targets": {
"node": "10"
"node": "12"
}
}
]
Expand Down
15 changes: 15 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
env: {
es6: true,
node: true
},
globals: {
location: "off"
},
extends: [
"@runly"
],
rules:{
"import/no-commonjs": "off"
}
};
9 changes: 0 additions & 9 deletions .eslintrc.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ lib

node_modules
npm-debug.log*
package-lock.json
yarn.lock
yarn-error.log
.module-cache
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,6 @@ By default, Gatsby only makes system environment variables [prefixed with `GATSB

## Install

```
yarn add gatsby-plugin-env-variables
```

or

```
npm install gatsby-plugin-env-variables
```
Expand Down
Loading

0 comments on commit 6062554

Please sign in to comment.