Created
March 23, 2016 03:07
-
-
Save lzielinski03/7680c23c635d00efbea1 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
{ | |
"pub":{ | |
"scripts": ["./public/modules/**/*.js", "./public/modules/**/**/*.js"], | |
"styles": ["./public/assets/css/*.css", "./public/modules/**/assets/css/*.css"], | |
"partials": ["./public/modules/**/partials/*.html", "./public/modules/**/**/partials/*.html"], | |
"tmp": "./public/modules/tmp/", | |
"templates": "./public/modules/tmp/**.js", | |
"index": "./public/index.html" | |
}, | |
"dev": { | |
"root": "./public.dev", | |
"vendor": "./public.dev/vendor", | |
"scripts": ["./public.dev/**/*.js", "./public.dev/**/**/*.js"], | |
"styles": { | |
"app": ["./public.dev/*.css", "./public.dev/**/assets/css/*.css"], | |
"vendor": ["./public.dev/vendor/*.css"] | |
}, | |
"partials": ["./public.dev/templates/*.js"], | |
"index": "./public.dev/index.html" | |
}, | |
"prod": { | |
"root": "./public.prod", | |
"vendor": "vendor.min.js", | |
"scripts": "./public.prod/app.min.js", | |
"styles": "styles.min.css", | |
"templates": "templates.min.js", | |
"app": "ap.js", | |
"index": "./public.prod/index.html" | |
} | |
} |
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
{ | |
"pub": { | |
"root": "./public", | |
"scripts": ["./public/modules/**/*.js", "./public/modules/**/**/*.js"], | |
"temp": { | |
"scripts": "./public/modules/temp/**.js", | |
"root": "./public/modules/temp" | |
}, | |
"styles": ["./public/assets/css/*.css", "./public/modules/**/assets/css/*.css"], | |
"partials": ["./public/modules/**/partials/*.html", "./public/modules/**/**/partials/*.html"], | |
"index": "./public/index.html" | |
}, | |
"dev": { | |
"root": "./public.dev", | |
"vendor": { | |
"root": "./public.dev/vendor", | |
"scripts": "", | |
"styles" "./public.dev/vendor/*.css" | |
}, | |
"app": { | |
"scripts": ["./public.dev/**/*.js", "./public.dev/**/**/*.js"], | |
"styles": ["./public.dev/*.css", "./public.dev/**/assets/css/*.css"], | |
"index": "./public.dev/index.html", | |
"partials": ["./public.dev/templates/*.js"] | |
} | |
}, | |
"prod": { | |
"root": "./public.prod", | |
"index": "./public.prod/index.html", | |
"app": "app.js", | |
"templates": "templates.min.js", | |
"vendor": "vendor.min.js", | |
"scripts": "./public.prod/app.min.js", | |
"styles": "styles.min.css" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment