Merge branch 'future/sb-start-build' into future/remove-start-build-storybook

This commit is contained in:
Michael Shilman 2022-04-16 07:55:19 +08:00
commit eb05bfbb37
5 changed files with 14 additions and 57 deletions

View File

@ -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',
]}
/>

View File

@ -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'],
};
```

View File

@ -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,
},
};

View File

@ -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 } };

View File

@ -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) => {