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
32 lines
835 B
JavaScript
32 lines
835 B
JavaScript
/*******************************
|
|
Docs
|
|
*******************************/
|
|
|
|
/* Paths used for "serve-docs" and "build-docs" tasks */
|
|
module.exports = {
|
|
base: '',
|
|
globs: {
|
|
eco: '**/*.html.eco'
|
|
},
|
|
paths: {
|
|
clean: '../docs/out/dist/',
|
|
source: {
|
|
config : 'src/theme.config',
|
|
definitions : 'src/definitions/',
|
|
site : 'src/site/',
|
|
themes : 'src/themes/'
|
|
},
|
|
output: {
|
|
examples : '../docs/out/examples/',
|
|
less : '../docs/out/src/',
|
|
metadata : '../docs/out/',
|
|
packaged : '../docs/out/dist/',
|
|
uncompressed : '../docs/out/dist/components/',
|
|
compressed : '../docs/out/dist/components/',
|
|
themes : '../docs/out/dist/themes/'
|
|
},
|
|
template: {
|
|
eco: '../docs/server/documents/'
|
|
},
|
|
}
|
|
};
|