Skip to content

Commit bdeb7cc

Browse files
Noelle Daleyandaley
authored andcommitted
upgrade storybook and babel deps (#9371)
1 parent f08ab1f commit bdeb7cc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+2364
-688
lines changed

ui/.storybook/babel.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* eslint-env node */
2+
13
module.exports = {
24
presets: [
35
[

ui/blueprints/story/files/__path__/stories/__name__.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import hbs from 'htmlbars-inline-precompile';
33
import { storiesOf } from '@storybook/ember';
44
<%= importMD %>
55

6-
storiesOf('<%= classifiedModuleName %>/', module)
6+
storiesOf('<%= classifiedModuleName %>', module)
77
.addParameters({ options: { showPanel: true } })
88
.add(`<%= classifiedModuleName %>`, () => ({
99
template: hbs`

ui/lib/core/stories/alert-banner.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import notes from './alert-banner.md';
44
import { withKnobs, object } from '@storybook/addon-knobs';
55
import { MESSAGE_TYPES } from '../addon/helpers/message-types.js';
66

7-
storiesOf('Alerts/AlertBanner/', module)
7+
storiesOf('Alerts/AlertBanner', module)
88
.addParameters({ options: { showPanel: false } })
99
.addDecorator(
1010
withKnobs({

ui/lib/core/stories/alert-inline.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { storiesOf } from '@storybook/ember';
33
import notes from './alert-inline.md';
44
import { MESSAGE_TYPES } from '../addon/helpers/message-types.js';
55

6-
storiesOf('Alerts/AlertInline/', module)
6+
storiesOf('Alerts/AlertInline', module)
77
.addParameters({ options: { showPanel: false } })
88
.add(
99
'AlertInline',

ui/lib/core/stories/chevron.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { storiesOf } from '@storybook/ember';
33
import { withKnobs, select } from '@storybook/addon-knobs';
44
import notes from './chevron.md';
55

6-
storiesOf('Chevron/', module)
6+
storiesOf('Chevron', module)
77
.addParameters({ options: { showPanel: true } })
88
.addDecorator(withKnobs())
99
.add(

ui/lib/core/stories/confirm-action.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { storiesOf } from '@storybook/ember';
33
import { withKnobs, text, boolean } from '@storybook/addon-knobs';
44
import notes from './confirm-action.md';
55

6-
storiesOf('ConfirmAction/', module)
6+
storiesOf('Confirm/ConfirmAction', module)
77
.addParameters({ options: { showPanel: true } })
88
.addDecorator(
99
withKnobs({

ui/lib/core/stories/doc-link.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import hbs from 'htmlbars-inline-precompile';
22
import { storiesOf } from '@storybook/ember';
33
import notes from './doc-link.md';
44

5-
storiesOf('DocLink/', module)
5+
storiesOf('DocLink', module)
66
.addParameters({ options: { showPanel: true } })
77
.add(
88
`DocLink`,

ui/lib/core/stories/empty-state.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { storiesOf } from '@storybook/ember';
33
import { withKnobs, text } from '@storybook/addon-knobs';
44
import notes from './empty-state.md';
55

6-
storiesOf('EmptyState/', module)
6+
storiesOf('EmptyState', module)
77
.addParameters({ options: { showPanel: true } })
88
.addDecorator(withKnobs({ escapeHTML: false }))
99
.add(

ui/lib/core/stories/form-field-groups.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const MODELS = {
2424

2525
const DEFAULT_VALUE = 'aws/client';
2626

27-
storiesOf('Form/FormFieldGroups/', module)
27+
storiesOf('Forms/FormFieldGroups', module)
2828
.addParameters({ options: { showPanel: true } })
2929
.addDecorator(withKnobs())
3030
.add(

ui/lib/core/stories/form-field.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const createAttr = (name, type, options) => {
1111
};
1212
};
1313

14-
storiesOf('Form/FormField/', module)
14+
storiesOf('Forms/FormField', module)
1515
.add(
1616
`FormField|string`,
1717
() => ({

0 commit comments

Comments
 (0)