community frameworks location updated

This commit is contained in:
jonniebigodes 2021-05-07 15:51:42 +01:00
parent 11d1c1410b
commit e81051dad1
5 changed files with 9 additions and 7 deletions

View File

@ -1,2 +1,2 @@
- You can also setup Storybook manually through the Storybook CLI. Add the `--type marko` flag when you initialize Storybook in your project.
- If there's an installation problem, check the [README for the Marko framework](../../app/marko/README.md).
- If there's an installation problem, check the [README for the Marko framework](https://github.com/storybookjs/marko).

View File

@ -1,2 +1,2 @@
- You can also setup Storybook manually through the Storybook CLI. Add the `--type mithril` flag when you initialize Storybook in your project.
- If there's an installation problem, check the [README for the Mithril framework](../../app/mithril/README.md).
- If there's an installation problem, check the [README for the Mithril framework](https://github.com/storybookjs/mithril).

View File

@ -1,2 +1,2 @@
- You can also setup Storybook manually through the Storybook CLI. Add the `--type rax` flag when you initialize Storybook in your project.
- If there's an installation problem, check the [README for the Rax framework](../../app/rax/README.md).
- If there's an installation problem, check the [README for the Rax framework](https://github.com/storybookjs/rax).

View File

@ -1,2 +1,2 @@
- You can also setup Storybook manually through the Storybook CLI. Add the `--type riot` flag when you initialize Storybook in your project.
- If there's an installation problem, check the [README for the Riot framework](../../app/riot/README.md).
- If there's an installation problem, check the [README for the Riot framework](https://github.com/storybookjs/riot/).

View File

@ -1,12 +1,14 @@
```ts
// mithril/src/server/framework-preset-mithril.ts
// app/mithril/src/server/framework-preset-mithril.ts
import { TransformOptions } from '@babel/core';
export function babelDefault(config: TransformOptions) {
return {
...config,
plugins: [
...config.plugins,
require.resolve('@babel/plugin-transform-react-jsx')
...config.plugins,
[require.resolve('@babel/plugin-transform-react-jsx'), {}, 'preset'],
],
};
}