flecks/packages/fleck/src/server/index.js

22 lines
442 B
JavaScript
Raw Normal View History

2022-02-25 04:58:08 -06:00
import {Hooks} from '@flecks/core';
import commands from './commands';
export default {
[Hooks]: {
2022-03-08 16:03:06 -06:00
'@flecks/core.commands': commands,
2022-03-12 07:01:00 -06:00
'@flecks/core.config': () => ({
/**
* Webpack stats configuration when building fleck target.
*/
stats: {
2022-03-17 17:42:04 -05:00
children: false,
2022-03-12 07:01:00 -06:00
chunks: false,
colors: true,
modules: false,
},
}),
2022-03-08 16:03:06 -06:00
'@flecks/core.targets': () => ['fleck'],
2022-02-25 04:58:08 -06:00
},
};