Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.13.0
22.18.0
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,15 @@ To add this plugin to an _existing_ Greenwood project (where `@greenwood/cli` ha
```
1. Add this and Greenwood's Import Raw plugin to your _greenwood.config.js_
```js
import { greenwoodPluginMarkdown } from '@greenwood/plugin-markdown';
import { greenwoodPluginImportCss } from '@greenwood/plugin-import-raw';
import { greenwoodThemeStarterPresentation } from 'greenwood-starter-presentation';

export default {
// ...

plugins: [
greenwoodPluginMarkdown(),
greenwoodPluginImportRaw(),
greenwoodThemeStarterPresentation()
]
Expand Down
2 changes: 2 additions & 0 deletions greenwood.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { greenwoodThemeStarterPresentation } from './index.js';
import { greenwoodPluginImportRaw } from '@greenwood/plugin-import-raw';
import { greenwoodPluginMarkdown } from '@greenwood/plugin-markdown';

const packageJson = (await import(new URL("./package.json", import.meta.url), { with: { type: "json" } })).default;
const packageName = packageJson.name;
Expand Down Expand Up @@ -29,6 +30,7 @@ class MyThemePackDevelopmentResource {

export default {
plugins: [
greenwoodPluginMarkdown(),
greenwoodPluginImportRaw(),
greenwoodThemeStarterPresentation({
__isDevelopment: true
Expand Down
Loading
Loading