mirror of
https://github.com/vale981/Vulcan
synced 2025-03-05 09:31:43 -05:00
respect usual structure
This commit is contained in:
parent
9db0f47106
commit
dfc4b45159
79 changed files with 4 additions and 4 deletions
|
@ -1,3 +1,2 @@
|
||||||
export * from '../components/index';
|
|
||||||
export * from '../modules/index';
|
export * from '../modules/index';
|
||||||
import './wrapWithMuiTheme';
|
import './wrapWithMuiTheme';
|
1
packages/vulcan-ui-material/lib/modules/components.js
Normal file
1
packages/vulcan-ui-material/lib/modules/components.js
Normal file
|
@ -0,0 +1 @@
|
||||||
|
export * from '../components';
|
|
@ -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';
|
|
@ -1,3 +1,2 @@
|
||||||
export * from '../components/index';
|
|
||||||
export * from '../modules/index';
|
export * from '../modules/index';
|
||||||
import './wrapWithMuiTheme';
|
import './wrapWithMuiTheme';
|
|
@ -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');
|
||||||
});
|
});
|
Loading…
Add table
Reference in a new issue