-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove yarn and workspace for website
- Loading branch information
Showing
17 changed files
with
47,584 additions
and
17,751 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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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,22 +1,14 @@ | ||
[build] | ||
base = "website" | ||
publish = "website/build" | ||
command = "yarn build && cp _redirects ./build" | ||
ignore = "git diff --quiet HEAD^ HEAD -- ../docs/ ." | ||
base = "website" | ||
publish = "website/build" | ||
command = "npm install && npm run build && cp _redirects ./build" | ||
ignore = "git diff --quiet HEAD^ HEAD -- ../docs/ ." | ||
|
||
[build.environment] | ||
NODE_VERSION = "14" | ||
NODE_OPTIONS = "--max_old_space_size=4096" | ||
NETLIFY_USE_YARN = "true" | ||
YARN_VERSION = "1.22.10" | ||
|
||
|
||
[[plugins]] | ||
package = "netlify-plugin-cache" | ||
[plugins.inputs] | ||
paths = [ | ||
"node_modules/.cache", | ||
"website/node_modules/.cache", | ||
".yarn/.cache" | ||
] | ||
|
||
package = "netlify-plugin-cache" | ||
[plugins.inputs] | ||
paths = ["node_modules/.cache", "website/node_modules/.cache"] |
Oops, something went wrong.