Jan Dittberner
d7a742d97d
- add package.json for npm/npx - update to fomantic-ui - move ui files to ui directory - add UI build documentation to README.md - add ui target to Makefile - add addPrefix handler in boardvoting.go to allow the same /static/ prefix for static resources
123 lines
2 KiB
JavaScript
123 lines
2 KiB
JavaScript
/*******************************
|
|
Default Paths
|
|
*******************************/
|
|
|
|
module.exports = {
|
|
|
|
// base path added to all other paths
|
|
base : '',
|
|
|
|
// base path when installed with npm
|
|
pmRoot: 'semantic/',
|
|
|
|
// octal permission for output files, i.e. 0o644 or '644' (false does not adjust)
|
|
permission : '744',
|
|
|
|
// whether to generate rtl files
|
|
rtl : false,
|
|
|
|
// file paths
|
|
files: {
|
|
config : 'semantic.json',
|
|
site : 'src/site',
|
|
theme : 'src/theme.config'
|
|
},
|
|
|
|
// folder paths
|
|
paths: {
|
|
source: {
|
|
config : 'src/theme.config',
|
|
definitions : 'src/definitions/',
|
|
site : 'src/site/',
|
|
themes : 'src/themes/'
|
|
},
|
|
output: {
|
|
packaged : 'dist/',
|
|
uncompressed : 'dist/components/',
|
|
compressed : 'dist/components/',
|
|
themes : 'dist/themes/'
|
|
},
|
|
clean : 'dist/'
|
|
},
|
|
|
|
// components to include in package
|
|
components: [
|
|
|
|
// global
|
|
'reset',
|
|
'site',
|
|
|
|
// elements
|
|
'button',
|
|
'container',
|
|
'divider',
|
|
'emoji',
|
|
'flag',
|
|
'header',
|
|
'icon',
|
|
'image',
|
|
'input',
|
|
'label',
|
|
'list',
|
|
'loader',
|
|
'placeholder',
|
|
'rail',
|
|
'reveal',
|
|
'segment',
|
|
'step',
|
|
'text',
|
|
|
|
// collections
|
|
'breadcrumb',
|
|
'form',
|
|
'grid',
|
|
'menu',
|
|
'message',
|
|
'table',
|
|
|
|
// views
|
|
'ad',
|
|
'card',
|
|
'comment',
|
|
'feed',
|
|
'item',
|
|
'statistic',
|
|
|
|
// modules
|
|
'accordion',
|
|
'calendar',
|
|
'checkbox',
|
|
'dimmer',
|
|
'dropdown',
|
|
'embed',
|
|
'modal',
|
|
'nag',
|
|
'popup',
|
|
'progress',
|
|
'slider',
|
|
'rating',
|
|
'search',
|
|
'shape',
|
|
'sidebar',
|
|
'sticky',
|
|
'tab',
|
|
'toast',
|
|
'transition',
|
|
|
|
// behaviors
|
|
'api',
|
|
'form',
|
|
'state',
|
|
'visibility'
|
|
],
|
|
|
|
// whether to load admin tasks
|
|
admin: false,
|
|
|
|
// globs used for matching file patterns
|
|
globs : {
|
|
ignored : '!(*.min|*.map|*.rtl)',
|
|
ignoredRTL : '!(*.min|*.map)'
|
|
}
|
|
|
|
};
|