mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:41:17 +08:00
WIP
This commit is contained in:
parent
9908625644
commit
44457d3633
@ -154,7 +154,7 @@ import { storiesOf } from '@storybook/react';
|
||||
|
||||
import BaseButton from './BaseButton';
|
||||
|
||||
const base = __dirname;
|
||||
const base = __dirname.replace(process.cwd(), '');
|
||||
|
||||
storiesOf(`Category|${base}/BaseButton`, module)
|
||||
.add('story 1', () => <BaseButton label="Story 1" />)
|
||||
|
@ -1,12 +1,12 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Other|/Users/dev/Projects/GitHub/storybook/core/examples/official-storybook/stories/Dirname Example story 1 1`] = `
|
||||
exports[`Storyshots Other|/examples/official-storybook/stories/Dirname Example story 1 1`] = `
|
||||
<button>
|
||||
Story 1
|
||||
</button>
|
||||
`;
|
||||
|
||||
exports[`Storyshots Other|/Users/dev/Projects/GitHub/storybook/core/examples/official-storybook/stories/Dirname Example story 2 1`] = `
|
||||
exports[`Storyshots Other|/examples/official-storybook/stories/Dirname Example story 2 1`] = `
|
||||
<button>
|
||||
Story 2
|
||||
</button>
|
||||
|
@ -3,7 +3,7 @@ import { storiesOf } from '@storybook/react';
|
||||
|
||||
import BaseButton from '../components/BaseButton';
|
||||
|
||||
const base = __dirname;
|
||||
const base = __dirname.replace(process.cwd(), '');
|
||||
|
||||
storiesOf(`Other|${base}/Dirname Example`, module)
|
||||
.add('story 1', () => <BaseButton label="Story 1" />)
|
||||
|
@ -2,7 +2,7 @@ const path = require('path');
|
||||
|
||||
module.exports = {
|
||||
node: {
|
||||
__dirname: true,
|
||||
__dirname: false,
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
|
Loading…
x
Reference in New Issue
Block a user