Last active
November 25, 2015 01:39
-
-
Save wshaddix/910b82a2bf05bfdcbf3d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var appRoot = 'src/'; | |
var outputRoot = 'dist/'; | |
var exporSrvtRoot = 'export/'; | |
var wwwroot = 'wwwroot/'; | |
module.exports = { | |
wwwroot: wwwroot, | |
root: appRoot, | |
source: appRoot + '**/*.js', | |
html: appRoot + '**/*.html', | |
css: appRoot + '**/*.css', | |
style: 'styles/**/*.css', | |
output: outputRoot, | |
exportSrv: exporSrvtRoot, | |
doc: './doc', | |
e2eSpecsSrc: 'test/e2e/src/*.js', | |
e2eSpecsDist: 'test/e2e/dist/' | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment