Skip to content

Commit

Permalink
Add some basic bindings (ra-data-json-server, Admin, Resource) (#1)
Browse files Browse the repository at this point in the history
* added initial package.json

* installed dependencies, added npm scripts, and added gitignore file.

* added ra-data-json-server and react-admin.Admin

* added react-admin.Resource and bsconfig.json

* fixed typo

* trying to get default export to work

* used bucklescript workaround to get the default field to work (rescript-lang/rescript#2456)

* fixed errors in react-admin.Resource
  • Loading branch information
ctbucha authored Aug 29, 2018
1 parent ab42af4 commit d671846
Show file tree
Hide file tree
Showing 8 changed files with 1,265 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.DS_Store
node_modules
lib
.bsb.lock
.vscode
npm-debug.log*
*.bs.js
.merlin
23 changes: 23 additions & 0 deletions bsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "@ctbucha/bs-react-admin",
"sources": [
{
"dir": "src",
"subdirs": true
}
],
"bs-dependencies": [
"reason-react"
],
"package-specs": {
"module": "commonjs"
},
"reason": {
"react-jsx": 2
},
"suffix": ".bs.js",
"bsc-flags": [
"-bs-super-errors"
],
"refmt": 3
}
Loading

0 comments on commit d671846

Please sign in to comment.