Skip to content

Commit

Permalink
Remove explicit files declaration from package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrookes committed Nov 11, 2015
1 parent b7432ce commit 1e1dcce
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Changelog

=======
* 0.3.2 Remove explicit files declaration from package.json (the npm docs lie!)
* 0.3.1 Add ./lib/ to package.json.
* 0.3.0 Split into separate files to allow individual import of MUI components
* 0.2.5 Fix issue #21 Textfield defaultValue handling.
* 0.2.4 Updated textfield handling (@vijayrawatsan), selectfield fix (@dmlinn).
* 0.2.3 Fix textfield initialization through this.refs.form.reset(model) (@vijayrawatsan).
Expand Down
13 changes: 3 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,21 @@
{
"name": "formsy-material-ui",
"version": "0.2.5",
"version": "0.3.2",
"description": "A formsy-react compatibility wrapper for Material-UI form components.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mbrookes/formsy-material-ui.git"
},
"files": [
"index.js",
"README.md",
"LICENSE"
],
"peerDependencies": {
"formsy-react": ">=0.14.1 <1"
},
"devDependencies": {
"babel": "^5.0.0"
},
"scripts": {
"prepublish": "babel formsy-material-ui.jsx -o index.js"
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "babel ./src -d ./lib"
},
"keywords": [
"formsy",
Expand Down

0 comments on commit 1e1dcce

Please sign in to comment.