Skip to content

Commit

Permalink
General changes:
Browse files Browse the repository at this point in the history
- #1 Start to work on AutoForm component
- #2 Add LayoutProvider
- Add test folder to all packages
- Add .babelrc config to all packages
- Add babel dependencies to all packages
- Add .gitignore to exclude node_modules in all packages
  • Loading branch information
jonatansalas committed May 6, 2017
1 parent dade499 commit 0c46bca
Show file tree
Hide file tree
Showing 19 changed files with 6,568 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
.idea/modules.xml
.idea/redux-autoform-next.iml
.idea/workspace.xml
node_modules
4 changes: 4 additions & 0 deletions packages/redux-autoform-bootstrap/.babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"presets": ["es2015", "stage-0", "react"],
"plugins": ["transform-decorators-legacy"]
}
2 changes: 2 additions & 0 deletions packages/redux-autoform-bootstrap/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Created by .ignore support plugin (hsz.mobi)
node_modules
16 changes: 15 additions & 1 deletion packages/redux-autoform-bootstrap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,19 @@
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Redux Autoform",
"license": "MIT"
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"react": "^15.5.4",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.5.4"
}
}
Empty file.
Loading

0 comments on commit 0c46bca

Please sign in to comment.