This commit is contained in:
Norbert de Langen 2018-01-22 17:10:20 +01:00
parent 9908625644
commit 44457d3633
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
4 changed files with 5 additions and 5 deletions

View File

@ -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" />)

View File

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

View File

@ -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" />)

View File

@ -2,7 +2,7 @@ const path = require('path');
module.exports = {
node: {
__dirname: true,
__dirname: false,
},
module: {
rules: [