-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGrunt.config
More file actions
28 lines (25 loc) · 800 Bytes
/
Grunt.config
File metadata and controls
28 lines (25 loc) · 800 Bytes
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
'use strict';
// Expose the project specific config values to be used with
// the Grunt tools (see GruntFile.js).
// the temp directory serves as a temporary directory for files that
// must be compiled (in some form or another) before being processed.
// Files that do not require an intermediate process
// can be sent directly to their destination folder.
// This is useful for compiled stylesheets that will be
// post-processed before being sent to their destination folder.
module.exports = {
browser: "google chrome",
index: "src/index.html",
dist: "dist",
dev: "src",
demo: "demo",
vendor : "vendor",
js: "src/js/",
html: "src/html/",
scss: "src/scss/",
temp: "tmp",
aws: {
accessKeyId: "****",
secretAccessKey: "****"
}
};