chore(*): replace gatsby.app with gatsby.dev (#12153)

## Description

Replace gatsby.app with gatsby.dev

Command used to find all files:

```
grep -rl 'gatsby\.app' --exclude-dir=.git --exclude-dir=.idea --exclude-dir=node_modules .
```

Command used to replace files:

```
grep -rl 'gatsby\.app' --exclude-dir=.git --exclude-dir=.idea --exclude-dir=node_modules ./ | xargs sed -i 's/gatsby.app/gatsby.dev/g'
```

## Related Issues
Fixes #12152
This commit is contained in:
GatsbyJS Bot
2019-02-27 20:12:44 +00:00
parent 561fee86f9
commit 1e2bdca9a4
+1 -1
View File
@@ -10,7 +10,7 @@
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\""
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"dependencies": {
"gatsby": "^2.1.18",