Re-adding index.js for easier imports
This commit is contained in:
parent
f0ae10ce0d
commit
5e876f99bc
|
@ -3,6 +3,7 @@
|
||||||
"version": "1.2.0",
|
"version": "1.2.0",
|
||||||
"description": "Core functions, classes and components for RecogitoJS",
|
"description": "Core functions, classes and components for RecogitoJS",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
|
"main": "src/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "NODE_ENV=test ./node_modules/.bin/mocha --require @babel/register"
|
"test": "NODE_ENV=test ./node_modules/.bin/mocha --require @babel/register"
|
||||||
},
|
},
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
export { default as Editor } from './editor/Editor';
|
||||||
|
export { default as I18n } from './i18n';
|
||||||
|
export { default as WebAnnotation } from './WebAnnotation';
|
||||||
|
export { default as Selection } from './Selection';
|
||||||
|
export { default as createEnvironment } from './Environment';
|
||||||
|
|
||||||
|
export * from './Icons';
|
||||||
|
export * from './utils';
|
Loading…
Reference in New Issue