-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gruntfile.js
49 lines (43 loc) · 1.55 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
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON("package.json"),
"generate-manifest": {
name: "<%= pkg.name %>",
version: "<%= pkg.version %>",
manifestDir: grunt.option("target")
},
"copy-file": {
source: grunt.option("source"),
target: grunt.option("target")
},
"symlink": {
options: {
overwrite: true
},
explicit: {
src: grunt.option("source"),
dest: grunt.option("target")
}
}
});
grunt.loadNpmTasks("grunt-contrib-symlink");
grunt.registerTask("generate-manifest", "Generate the Electron manifest.", function() {
grunt.config.requires("generate-manifest.name");
grunt.config.requires("generate-manifest.version");
grunt.config.requires("generate-manifest.manifestDir");
var config = grunt.config("generate-manifest");
var json = {
name: config.name,
version: config.version,
main: "./js/main.js"
};
var manifestFile = config.manifestDir + "/package.json";
grunt.file.write(manifestFile, JSON.stringify(json, null, 2));
});
grunt.registerTask("copy-file", "Copies a given file to a new location.", function() {
grunt.config.requires("copy-file.source");
grunt.config.requires("copy-file.target");
var config = grunt.config("copy-file");
grunt.file.copy(config.source, config.target);
});
};