Skip to content

Commit

Permalink
renamed to universal-react-form. npmignored .babelrc
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben G. Pedersen committed Jan 2, 2018
1 parent 0f2dd4e commit 36f4f58
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# react native seems to respect the babelrc file used for dev. So let's ignore it.
.babelrc
2 changes: 1 addition & 1 deletion examples/example.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
fieldDefaults,
withForm,
withInput,
} from '../lib/react-universal-form.min.js';
} from '../lib/universal-react-form.min.js';

const App = ({ children, ...rest }) => {
return <div>{children}</div>;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "universal-react-form",
"version": "0.1.2",
"description": "Form handling for cross-platform React",
"main": "lib/react-universal-form.min.js",
"main": "lib/universal-react-form.min.js",
"scripts": {
"build": "webpack --env build",
"dev": "webpack --progress --colors --watch --env dev",
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const UglifyJsPlugin = webpack.optimize.UglifyJsPlugin;
const path = require('path');
const env = require('yargs').argv.env; // use --env with webpack 2

let libraryName = 'react-universal-form';
let libraryName = 'universal-react-form';

let plugins = [], outputFile;

Expand Down

0 comments on commit 36f4f58

Please sign in to comment.