Skip to content

Commit

Permalink
Fix snippets
Browse files Browse the repository at this point in the history
  • Loading branch information
jonniebigodes committed Dec 14, 2023
1 parent 2131586 commit a742b55
Show file tree
Hide file tree
Showing 25 changed files with 25 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@
}
}
}
```
```
2 changes: 1 addition & 1 deletion docs/snippets/angular/compodoc-install.npm.js.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
npm install @compodoc/compodoc --save-dev
```
```
2 changes: 1 addition & 1 deletion docs/snippets/angular/compodoc-install.pnpm.js.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
pnpm add --save-dev @compodoc/compodo
```
```
2 changes: 1 addition & 1 deletion docs/snippets/angular/compodoc-install.yarn.js.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
yarn add --dev @compodoc/compodoc
```
```
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ const preview: Preview = {
};

export default preview;
```
```
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
npx storybook@latest init --package-manager=npm
```
```
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
pnpm dlx storybook@latest init --package-manager=npm
```
```
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
yarn dlx storybook@latest init --package-manager=npm
```
```
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
npx storybook@latest init --type solid
```
```
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
pnpm dlx storybook@latest init --type solid
```
```
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
yarn dlx storybook@latest init --type solid
```
```
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
export default {
component: 'button',
};
```
```
2 changes: 1 addition & 1 deletion docs/snippets/ember/storybook-ember-cli-build.js.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ module.exports = function (defaults) {

return app.toTree();
};
```
```
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ export default {
},
},
};
```
```
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ import { Button } from './Button';
export default {
component: Button,
};
```
```
2 changes: 1 addition & 1 deletion docs/snippets/svelte/main-config-csf-addon-register.js.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ export default {
'@storybook/addon-svelte-csf', //👈 The Svelte CSF addon goes here
],
};
```
```
2 changes: 1 addition & 1 deletion docs/snippets/svelte/main-config-csf-addon-register.ts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ const config: StorybookConfig = {
};

export default config;
```
```
2 changes: 1 addition & 1 deletion docs/snippets/svelte/svelte-csf-addon-install.npm.js.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
npm install @storybook/addon-svelte-csf --save-dev
```
```
2 changes: 1 addition & 1 deletion docs/snippets/svelte/svelte-csf-addon-install.pnpm.js.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
pnpm add --save-dev @storybook/addon-svelte-csf
```
```
2 changes: 1 addition & 1 deletion docs/snippets/svelte/svelte-csf-addon-install.yarn.js.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
yarn add --dev @storybook/addon-svelte-csf
```
```
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ export default {
};

export default meta;
```
```
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ export const ExampleStory = {
propertyB: 'Another Item One',
},
};
```
```
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ export const ExampleStory: Story = {
propertyB: 'Another Item One',
},
};
```
```
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ export default {
},
},
};
```
```
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ const preview: Preview = {
};

export default preview;
```
```

0 comments on commit a742b55

Please sign in to comment.