From e81051dad1e9a3fb8a418b1e5f767001789a6070 Mon Sep 17 00:00:00 2001 From: jonniebigodes Date: Fri, 7 May 2021 15:51:42 +0100 Subject: [PATCH] community frameworks location updated --- docs/get-started/installation-problems/marko.mdx | 2 +- docs/get-started/installation-problems/mithril.mdx | 2 +- docs/get-started/installation-problems/rax.mdx | 2 +- docs/get-started/installation-problems/riot.mdx | 2 +- .../common/storybook-babel-configuration-example.ts.mdx | 8 +++++--- 5 files changed, 9 insertions(+), 7 deletions(-) diff --git a/docs/get-started/installation-problems/marko.mdx b/docs/get-started/installation-problems/marko.mdx index ec4168801c7..e3c28611ab2 100644 --- a/docs/get-started/installation-problems/marko.mdx +++ b/docs/get-started/installation-problems/marko.mdx @@ -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). diff --git a/docs/get-started/installation-problems/mithril.mdx b/docs/get-started/installation-problems/mithril.mdx index 7e2d8f66869..615cd7735d5 100644 --- a/docs/get-started/installation-problems/mithril.mdx +++ b/docs/get-started/installation-problems/mithril.mdx @@ -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). diff --git a/docs/get-started/installation-problems/rax.mdx b/docs/get-started/installation-problems/rax.mdx index 8c8a34c5f79..5789fa6ecbe 100644 --- a/docs/get-started/installation-problems/rax.mdx +++ b/docs/get-started/installation-problems/rax.mdx @@ -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). diff --git a/docs/get-started/installation-problems/riot.mdx b/docs/get-started/installation-problems/riot.mdx index 320277cef28..0485388898e 100644 --- a/docs/get-started/installation-problems/riot.mdx +++ b/docs/get-started/installation-problems/riot.mdx @@ -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/). diff --git a/docs/snippets/common/storybook-babel-configuration-example.ts.mdx b/docs/snippets/common/storybook-babel-configuration-example.ts.mdx index 8ce82c58d99..242728e780b 100644 --- a/docs/snippets/common/storybook-babel-configuration-example.ts.mdx +++ b/docs/snippets/common/storybook-babel-configuration-example.ts.mdx @@ -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'], ], }; }