Skip to content

Commit

Permalink
FIX package names
Browse files Browse the repository at this point in the history
  • Loading branch information
ndelangen committed May 25, 2017
1 parent d259a5c commit d59b20a
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@ dist
build
coverage
node_modules

*.bundle.js
*.js.map
5 changes: 3 additions & 2 deletions addons/events/.storybook/addons.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable import/no-extraneous-dependencies*/
import '@kadira/storybook/addons';
import '@storybook/addon-actions';
import '@storybook/addon-links';

import '../dist/register';
2 changes: 1 addition & 1 deletion addons/events/.storybook/config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { configure } from '@kadira/storybook';
import { configure } from '@storybook/react';

function loadStories() {
require('../stories');
Expand Down
2 changes: 1 addition & 1 deletion addons/events/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016 Your Name. <name@emailprovider.io>
Copyright (c) 2017 Kadira Inc. <hello@kadira.io>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Binary file modified addons/events/docs/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion addons/events/src/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, PropTypes } from 'react';
import addons from '@kadira/storybook-addons';
import addons from '@storybook/addons';

export default class WithEvents extends Component {
static propTypes = {
Expand Down
2 changes: 1 addition & 1 deletion addons/events/src/register.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { PropTypes, Component } from 'react';
import addons from '@kadira/storybook-addons';
import addons from '@storybook/addons';

import Item from './components/Item';

Expand Down
2 changes: 0 additions & 2 deletions addons/events/stories/Logger.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/* eslint-disable import/no-extraneous-dependencies*/
import React, { Component, PropTypes } from 'react';
import EventEmiter from 'eventemitter3';
/* eslint-enable import/no-extraneous-dependencies*/
import json from 'format-json';

import * as EVENTS from './events';
Expand Down
4 changes: 1 addition & 3 deletions addons/events/stories/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import React from 'react';
/* eslint-disable import/no-extraneous-dependencies */
import { storiesOf } from '@kadira/storybook';
import { storiesOf } from '@storybook/react';
import EventEmiter from 'eventemitter3';
/* eslint-enable import/no-extraneous-dependencies */

import WithEvents from '../dist/index';

Expand Down

0 comments on commit d59b20a

Please sign in to comment.