mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:01:16 +08:00
Merge branch 'future/sb-start-build' into future/remove-start-build-storybook
This commit is contained in:
commit
eb05bfbb37
@ -32,7 +32,7 @@ Update your Storybook configuration (in [`.storybook/main.js`](../configure/over
|
||||
|
||||
<CodeSnippets
|
||||
paths={[
|
||||
'common/storybook-main-register-individual-actions-addon.js.mdx',
|
||||
'common/storybook-main-register-essentials-addon.js.mdx',
|
||||
]}
|
||||
/>
|
||||
|
||||
|
@ -0,0 +1,8 @@
|
||||
```js
|
||||
// .storybook/main.js
|
||||
|
||||
module.exports = {
|
||||
stories: ['../src/**/*.stories.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
|
||||
addons: ['@storybook/addon-links', '@storybook/addon-essentials'],
|
||||
};
|
||||
```
|
@ -1,29 +0,0 @@
|
||||
import React from 'react';
|
||||
|
||||
export default {
|
||||
title: 'Addons/Options',
|
||||
};
|
||||
|
||||
export const SettingName = () => (
|
||||
<div>This story should have changed the name of the storybook</div>
|
||||
);
|
||||
|
||||
SettingName.storyName = 'setting name';
|
||||
|
||||
SettingName.parameters = {
|
||||
options: {
|
||||
name: 'Custom Storybook',
|
||||
},
|
||||
};
|
||||
|
||||
export const HidingAddonPanel = () => (
|
||||
<div>This story should have changed hidden the addons panel</div>
|
||||
);
|
||||
|
||||
HidingAddonPanel.storyName = 'hiding addon panel';
|
||||
|
||||
HidingAddonPanel.parameters = {
|
||||
options: {
|
||||
showPanel: false,
|
||||
},
|
||||
};
|
@ -1,27 +0,0 @@
|
||||
import global from 'global';
|
||||
import React from 'react';
|
||||
|
||||
const { document } = global;
|
||||
|
||||
export default {
|
||||
title: 'Addons/QueryParams',
|
||||
|
||||
parameters: {
|
||||
query: {
|
||||
mock: true,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export const MockIsTrue = () => (
|
||||
<div>This story should have an extra url query param: {document.location.search}</div>
|
||||
);
|
||||
|
||||
MockIsTrue.storyName = 'mock is true';
|
||||
|
||||
export const MockIs4 = () => (
|
||||
<div>This story should have an extra url query param: {document.location.search}</div>
|
||||
);
|
||||
|
||||
MockIs4.storyName = 'mock is 4';
|
||||
MockIs4.parameters = { query: { mock: 4 } };
|
@ -1,6 +1,7 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
const { readJson, writeFile } = require('fs-extra');
|
||||
const { exec } = require('child_process');
|
||||
const path = require('path');
|
||||
const globby = require('globby');
|
||||
const semver = require('@storybook/semver');
|
||||
@ -47,6 +48,10 @@ const run = async () => {
|
||||
export default ${JSON.stringify(packageToVersionMap, null, 2)}
|
||||
`
|
||||
);
|
||||
|
||||
exec(`yarn lint:js:cmd --fix ${path.join(__dirname, '..', 'src', 'versions.ts')}`, {
|
||||
cwd: path.join(__dirname, '..', '..', '..'),
|
||||
});
|
||||
};
|
||||
|
||||
run().catch((e) => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user