Skip to content

Commit

Permalink
update docs and website content
Browse files Browse the repository at this point in the history
  • Loading branch information
thescientist13 committed Sep 22, 2022
1 parent 44835de commit 3a9b514
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 15 deletions.
5 changes: 2 additions & 3 deletions packages/plugin-babel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default {
...

plugins: [
...greenwoodPluginBabel() // notice the spread ... !
greenwoodPluginBabel()
]
}
```
Expand Down Expand Up @@ -68,8 +68,7 @@ If you would like to use it, either standalone or with your own custom _babel.co
...
plugins: [
// notice the spread ... !
...greenwoodPluginBabel({
greenwoodPluginBabel({
extendConfig: true
})
]
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-graphql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ export default {
...

plugins: [
...greenwoodPluginGraphQL(), // notice the spread ... !
...greenwoodPluginRendererPuppeteer() // notice the spread ... !
greenwoodPluginGraphQL(),
greenwoodPluginRendererPuppeteer()
]
}
```
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-import-commonjs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default {
...

plugins: [
...greenwoodPluginImportCommonJs() // notice the spread ... !
greenwoodPluginImportCommonJs()
]
}
```
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-import-css/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default {
...

plugins: [
...greenwoodPluginImportCss() // notice the spread ... !
greenwoodPluginImportCss()
]
}
```
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-import-json/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default {
...

plugins: [
...greenwoodPluginImportJson() // notice the spread ... !
greenwoodPluginImportJson()
]
}
```
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-include-html/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default {
...

plugins: [
...greenwoodPluginIncludeHtml() // notice the spread ... !
greenwoodPluginIncludeHtml()
]
}
```
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-polyfills/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default {
...

plugins: [
...greenwoodPluginPolyfills() // notice the spread ... !
greenwoodPluginPolyfills()
]
}
```
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-renderer-puppeteer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export default {
...

plugins: [
...greenwoodPluginRendererPuppeteer() // notice the spread!
greenwoodPluginRendererPuppeteer()
]
}
```
Expand Down
5 changes: 2 additions & 3 deletions packages/plugin-typescript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default {
...

plugins: [
...greenwoodPluginTypeScript() // notice the spread ... !
greenwoodPluginTypeScript()
]
}
```
Expand Down Expand Up @@ -90,8 +90,7 @@ If you would like to extend / override these options:
...

plugins: [
// notice the spread ... !
...greenwoodPluginTypeScript({
greenwoodPluginTypeScript({
extendConfig: true
})
]
Expand Down
2 changes: 1 addition & 1 deletion www/pages/blog/release/v0-26-0.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ So although WCC is now the default for SSR, Puppeteer is still available as a pl
export default {
plugins: [
...greenwoodPluginRendererPuppeteer()
greenwoodPluginRendererPuppeteer()
]
}
```
Expand Down

0 comments on commit 3a9b514

Please sign in to comment.