2016-04-09 02:25:23 +03:00
|
|
|
var path = require('path');
|
|
|
|
|
|
|
|
var paths = {
|
2016-05-25 18:34:31 +03:00
|
|
|
source: 'lib/**/*.ts',
|
2015-10-03 12:50:35 +03:00
|
|
|
html: 'lib/**/*.html',
|
2015-11-22 15:08:28 +03:00
|
|
|
scss: 'lib/**/*.scss',
|
2015-10-03 11:54:09 +03:00
|
|
|
sourceEntryPoint: 'lib/index.js',
|
2016-01-25 00:15:04 +03:00
|
|
|
outputName: 'redoc',
|
2015-10-03 12:50:35 +03:00
|
|
|
output: 'dist/',
|
|
|
|
tmp: '.tmp/',
|
2015-12-12 23:11:35 +03:00
|
|
|
demo: 'demo/**/*',
|
2016-04-30 22:18:11 +03:00
|
|
|
tests: '{lib,tests}/**/*.spec.js',
|
|
|
|
releases: 'demo/releases/'
|
2016-04-09 02:25:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
paths.redocBuilt = path.join(paths.output, paths.outputName);
|
|
|
|
|
|
|
|
module.exports = paths;
|