admin-config
Common files used in both ng-admin and react-admin.
Installation
make install
Including In Another Library
Require whatever class you need directly.
// es5var NumberField = ;// es6;
Admin-config is written in ES6. You'll need a transpiler to use any of the classes (we recommend Webpack and babel). Here is an example Webpack configuration:
moduleexports = // ... module: loaders: test: /node_modules\/admin-config\/.*\.js$/ loader: 'babel' ;
Transpiling
In order to increase this library compatibility and to not force other users of this
library to use Babel, you need to transpile your ES6 code from src/
to good old ES5
code (in lib/
).
Just run:
make transpile
And you are done!
Running Tests
make test