Updates per chillu feedback

This commit is contained in:
Aaron Carlino 2019-11-15 12:36:29 +13:00
parent 04dab1fe56
commit 7db3f56190
2 changed files with 33 additions and 9 deletions

View File

@ -1,3 +1,23 @@
[[redirects]] [[redirects]]
from = "/" from = "/"
to = "/en/4/" to = "/en/4/"
[[redirects]]
from = "/contributing"
to = "/en/4/contributing/"
[[redirects]]
from = "/en/4/getting_started/installation/common_problems"
to = "/en/4/getting_started/common_problems/"
[[redirects]]
from = "/en/4/getting_started/installation/server_requirements"
to = "/en/4/getting_started/server_requirements/"
[[redirects]]
from = "/en/3/getting_started/installation/common_problems"
to = "/en/3/getting_started/common_problems/"
[[redirects]]
from = "/en/3/getting_started/installation/server_requirements"
to = "/en/3/getting_started/server_requirements/"

View File

@ -1,9 +1,14 @@
{ {
"name": "gatsby-starter-default", "name": "doc-silverstripe-org",
"private": true, "private": true,
"description": "A simple starter to get up and developing quickly with Gatsby", "description": "The Silverstripe CMS documentation website (docs.silverstripe.org)",
"version": "0.1.0", "version": "1.0.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>", "author": "Aaron Carlino <unclecheese@leftandmain.com>",
"contributors": [
{
"name": "The Silverstripe Community"
}
],
"dependencies": { "dependencies": {
"@types/react-helmet": "^5.0.14", "@types/react-helmet": "^5.0.14",
"@types/styled-components": "^4.1.21", "@types/styled-components": "^4.1.21",
@ -55,24 +60,23 @@
"typescript": "^3.7.2" "typescript": "^3.7.2"
}, },
"keywords": [ "keywords": [
"gatsby" "silverstripe", "documentation"
], ],
"license": "MIT", "license": "BSD-3",
"scripts": { "scripts": {
"build": "gatsby build", "build": "gatsby build",
"develop": "gatsby develop", "develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}", "format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop", "start": "npm run develop",
"serve": "gatsby serve", "serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"type-check": "tsc --noEmit", "type-check": "tsc --noEmit",
"lint": "tslint --project ." "lint": "tslint --project ."
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default" "url": "https://github.com/silverstripe/doc.silverstripe.org"
}, },
"bugs": { "bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues" "url": "https://github.com/silverstripe/doc.silverstripe.org/issues"
} }
} }