Skip to content

Commit

Permalink
Replace webpack with rollup for cleaner releases (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkuykendall authored Jun 23, 2019
1 parent f35d717 commit 02db580
Show file tree
Hide file tree
Showing 19 changed files with 8,155 additions and 3,548 deletions.
8 changes: 3 additions & 5 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
.babelrc
.editorconfig
.travis.yml
testrunner.js
webpack.config.js
examples/
release/
tests/
rollup.config.js
__tests__/
__test_utils__/
2 changes: 1 addition & 1 deletion __test_utils__/TestInput.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import Formsy, { withFormsy } from '../lib';
import { withFormsy } from './..';

class TestInput extends React.Component {
static defaultProps = { type: 'text' };
Expand Down
2 changes: 1 addition & 1 deletion __test_utils__/TestInputHoc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import Formsy, { withFormsy } from '../lib';
import { withFormsy } from './..';

class TestComponent extends React.Component {
methodOnWrappedInstance = param => {
Expand Down
Loading

0 comments on commit 02db580

Please sign in to comment.