forked from gregberge/svgr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: move website to svgr repo (gregberge#251)
- Loading branch information
Showing
59 changed files
with
16,694 additions
and
1,084 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,6 @@ __fixtures__/ | |
__fixtures_build__/ | ||
coverage/ | ||
examples/ | ||
svgr.now.sh/ | ||
svgr.now.sh/ | ||
/website/.cache/ | ||
/website/public/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"root": true, | ||
"parser": "babel-eslint", | ||
"extends": ["airbnb", "prettier", "prettier/react"], | ||
"env": { | ||
"jest": true | ||
}, | ||
"rules": { | ||
"no-plusplus": "off", | ||
"no-shadow": "off", | ||
"class-methods-use-this": "off", | ||
"no-param-reassign": "off", | ||
"no-use-before-define": "off", | ||
"import/prefer-default-export": "off", | ||
"react/jsx-filename-extension": ["error", { "extensions": [".js"] }], | ||
"react/jsx-wrap-multilines": "off", | ||
"react/no-unused-state": "off", | ||
"react/destructuring-assignment": "off", | ||
"react/prop-types": "off", | ||
"react/sort-comp": "off" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,6 @@ CHANGELOG.md | |
package.json | ||
lerna.json | ||
lib/ | ||
.next/ | ||
.next/ | ||
/website/.cache/ | ||
/website/public/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Global settings applied to the whole site. | ||
# | ||
# “publish” is the directory to publish (relative to root of your repo), | ||
# “command” is your build command, | ||
# “base” is directory to change to before starting build. if you set base: | ||
# that is where we will look for package.json/.nvmrc/etc not repo root! | ||
|
||
[build] | ||
base = "website" | ||
publish = "website/public" | ||
command = "yarn build:pp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"version": 1, | ||
"name": "svgr", | ||
"alias": "svgr" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.