respect usual structure

This commit is contained in:
eric-burel 2019-03-15 14:21:17 +01:00
parent 9db0f47106
commit dfc4b45159
79 changed files with 4 additions and 4 deletions

View file

@ -1,3 +1,2 @@
export * from '../components/index';
export * from '../modules/index'; export * from '../modules/index';
import './wrapWithMuiTheme'; import './wrapWithMuiTheme';

View file

@ -0,0 +1 @@
export * from '../components';

View file

@ -1,3 +1,4 @@
export * from './components';
export * from './themes'; export * from './themes';
export JssCleanup from '../components/theme/JssCleanup'; export JssCleanup from '../components/theme/JssCleanup';
import './sampleTheme'; import './sampleTheme';

View file

@ -1,3 +1,2 @@
export * from '../components/index';
export * from '../modules/index'; export * from '../modules/index';
import './wrapWithMuiTheme'; import './wrapWithMuiTheme';

View file

@ -20,6 +20,6 @@ Package.onUse(function (api) {
'forms.css', 'forms.css',
], ['client', 'server']); ], ['client', 'server']);
api.mainModule('client/main.js', 'client'); api.mainModule('lib/client/main.js', 'client');
api.mainModule('server/main.js', 'server'); api.mainModule('lib/server/main.js', 'server');
}); });