Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: chadly/gatsby-plugin-env-variables
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.1
Choose a base ref
...
head repository: chadly/gatsby-plugin-env-variables
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.0.2
Choose a head ref
  • 1 commit
  • 8 files changed
  • 1 contributor

Commits on Apr 30, 2020

  1. Copy the full SHA
    6062554 View commit details
Showing with 5,330 additions and 3,395 deletions.
  1. +1 −1 .babelrc
  2. +15 −0 .eslintrc.js
  3. +0 −9 .eslintrc.yml
  4. +1 −1 .gitignore
  5. +0 −6 README.md
  6. +5,304 −0 package-lock.json
  7. +9 −9 package.json
  8. +0 −3,369 yarn.lock
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
"@babel/env",
{
"targets": {
"node": "10"
"node": "12"
}
}
]
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
@@ -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
@@ -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
```
Loading