forked from berrberr/streamkeys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
132 lines (116 loc) · 3.66 KB
/
Gruntfile.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
module.exports = function(grunt) {
var pkg = grunt.file.readJSON("package.json"),
mnf = grunt.file.readJSON("code/manifest.json"),
fileMaps = { browserify: {} },
jsFiles = grunt.file.expand(["code/js/**/*.js", "!code/js/lib/*"]),
htmlFiles = grunt.file.expand(["code/html/*.html", "code/css/*"]),
file,
files = grunt.file.expand({cwd:"code/js/"}, ["**/*.js"]);
for (var i = 0; i < files.length; i++) {
var file = files[i];
fileMaps.browserify["build/unpacked-dev/js/" + file] = "code/js/" + file;
}
grunt.initConfig({
clean: ["build/unpacked-dev", "build/unpacked-prod", "test-selectors/streamkeys-ext"],
mkdir: {
unpacked: { options: { create: ["build/unpacked-dev", "build/unpacked-dev/js", "build/unpacked-prod"] } }
},
copy: {
main: { files: [ {
expand: true,
cwd: "code/",
src: ["**", "!js/**", "!**/*.md", "!**/*.scss"],
dest: "build/unpacked-dev/"
} ] },
prod: { files: [ {
expand: true,
cwd: "build/unpacked-dev/",
src: ["**"],
dest: "build/unpacked-prod/"
} ] },
artifact: { files: [ {
expand: true,
cwd: "build/",
src: [pkg.name + "-" + pkg.version + ".crx"],
dest: process.env.CIRCLE_ARTIFACTS
} ] }
},
browserify: {
build: {
files: fileMaps.browserify
}
},
jshint: {
all: jsFiles,
options: {
jshintrc: true,
reporter: require("jshint-stylish")
}
},
lintspaces: {
all: {
src: [jsFiles, "!*.min.js"],
options: {
editorconfig: ".editorconfig",
ignores: ["js-comments"]
}
}
},
watch: {
files: jsFiles.concat(htmlFiles),
tasks: ["dev"]
},
sass: {
options: {
implementation: require('node-sass'),
sourceMap: true
},
prod: {
files: {
"build/unpacked-prod/css/popup.css": "code/css/popup.scss",
"build/unpacked-prod/css/options.css": "code/css/options.scss"
}
},
dev: {
files: {
"build/unpacked-dev/css/popup.css": "code/css/popup.scss",
"build/unpacked-dev/css/options.css": "code/css/options.scss"
}
}
},
karma: {
unit: {
configFile: "karma.conf.js"
}
}
});
grunt.loadNpmTasks("grunt-contrib-jshint");
grunt.loadNpmTasks("grunt-contrib-copy");
grunt.loadNpmTasks("grunt-contrib-clean");
grunt.loadNpmTasks("grunt-contrib-watch");
grunt.loadNpmTasks("grunt-sass");
grunt.loadNpmTasks("grunt-exec");
grunt.loadNpmTasks("grunt-mkdir");
grunt.loadNpmTasks("grunt-lintspaces");
grunt.loadNpmTasks("grunt-browserify");
grunt.loadNpmTasks("grunt-karma");
/* Tasks */
grunt.registerTask(
"manifest", "Extend manifest.json with extra fields from package.json",
function() {
var fields = ["name", "version", "description"];
for (var i = 0; i < fields.length; i++) {
var field = fields[i];
mnf[field] = pkg[field];
}
grunt.file.write("build/unpacked-dev/manifest.json", JSON.stringify(mnf, null, 2) + "\n");
grunt.log.ok("manifest.json generated");
}
);
grunt.registerTask("lint", ["jshint", "lintspaces"]);
grunt.registerTask("test", ["karma"]);
grunt.registerTask("rel-test", ["rel", "test"]);
grunt.registerTask("dev-pre", ["jshint", "lintspaces", "clean", "mkdir:unpacked", "sass:dev", "copy:main", "manifest"]);
grunt.registerTask("dev", ["dev-pre", "browserify"]);
grunt.registerTask("rel", ["jshint", "lintspaces", "clean", "mkdir:unpacked", "sass:prod", "copy:main", "manifest", "browserify", "copy:prod"]);
};