forked from vecnatechnologies/backbone-torso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
paths.js
40 lines (38 loc) · 1.35 KB
/
paths.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
(function() {
'use strict';
var modules = './modules';
var test = './test';
var testSandbox = './testSandbox';
var testBrowserifiedDest = testSandbox + '/browserified';
var testSource = test + '/source';
var testSpec = test + '/spec';
var testImport = testSpec + '/import';
var testFunctional = testSpec + '/functional';
var allJsExtension = '/**/*.js';
var allHandlebarsExtension = '/**/*.hbs';
var testEnvFile = 'testEnv.js';
module.exports = {
gulpSrc: './gulp' + allJsExtension,
modules: modules,
modulesSrc: modules + allJsExtension,
testSrc: test + allJsExtension,
testSpec: testSpec,
testFunctional: testFunctional,
testFunctionalSrc: testFunctional + allJsExtension,
testImport: testImport,
testImportSrc: testImport + allJsExtension,
testSpecSrc: testSpec + allJsExtension,
testSourceSrc: testSource + allJsExtension,
testTemplatesSrc: testSource + allHandlebarsExtension,
bundleDest: '.',
docsApiDest: './docs/api',
docsApiMdDest: './docs/apimd',
docsAnnotatedDest: './docs/annotated',
testSandbox: testSandbox,
testTemplatesDest: testSandbox + '/templates',
testBrowserifiedDest: testBrowserifiedDest,
testBrowserifiedDestSrc: testBrowserifiedDest + allJsExtension,
testGlobalsEnv: testSandbox + testEnvFile,
testGlobalsEnvFile: testEnvFile
};
})();