forked from vecnatechnologies/backbone-torso
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpaths.js
More file actions
38 lines (36 loc) · 1.27 KB
/
paths.js
File metadata and controls
38 lines (36 loc) · 1.27 KB
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
(function() {
'use strict';
var modules = './modules',
test = './test',
testSandbox = './testSandbox',
testBrowserifiedDest = testSandbox + '/browserified',
testSource = test + '/source',
testSpec = test + '/spec',
testImport = testSpec + '/import',
testFunctional = testSpec + '/functional',
allJsExtension = '/**/*.js',
allHandlebarsExtension = '/**/*.hbs',
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: './',
docsDest: './docs/js',
testSandbox: testSandbox,
testTemplatesDest: testSandbox + '/templates',
testBrowserifiedDest: testBrowserifiedDest,
testBrowserifiedDestSrc: testBrowserifiedDest + allJsExtension,
testGlobalsEnv: testSandbox + testEnvFile,
testGlobalsEnvFile: testEnvFile
};
})();