-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGruntfile.js
98 lines (91 loc) · 2.15 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
module.exports = function(grunt) {
require("load-grunt-tasks")(grunt);
const find = require("find");
const presets = ["react", "es2015", "es2016", "es2017"];
const plugins = [
"babel-plugin-transform-react-jsx-source",
"babel-plugin-transform-object-rest-spread",
"babel-plugin-transform-class-properties",
"glslify",
];
const transform = [["babelify", { presets, plugins }]];
const srcFiles = find.fileSync(/\.js$/, "src");
const distFiles = srcFiles.map(fileName => {
const fileParts = fileName.split("/");
fileParts[0] = "dist";
return fileParts.join("/");
});
const exec = {};
distFiles.forEach(pathName => {
exec[pathName] = `sed -i '' '/require\("glslify"\)/d' ${pathName}`;
});
const babelFiles = {};
srcFiles.forEach((fileName, i) => (babelFiles[distFiles[i]] = fileName));
grunt.initConfig({
exec,
babel: {
options: {
plugins,
presets,
},
dist: {
files: babelFiles,
},
},
uglify: {
editor: {
files: {
"editor/build/exposure.min.js": ["editor/build/exposure.js"],
},
},
},
browserify: {
editor_watch: {
src: ["editor/main.js"],
dest: "editor/build/exposure.js",
options: {
transform,
watch: true,
keepAlive: true,
},
},
editor: {
src: ["editor/main.js"],
dest: "editor/build/exposure.js",
options: {
transform,
},
},
},
watch: {
shaders: {
files: ["src/shaders/**/*"],
tasks: ["browserify:editor"],
},
},
parallel: {
editor: {
options: {
stream: true,
},
tasks: [
{
grunt: true,
args: ["watch:shaders"],
},
{
grunt: true,
args: ["browserify:editor_watch"],
},
],
},
},
});
grunt.registerTask("release", "build for release", [
"browserify:editor",
"uglify:editor",
"babel",
"exec",
]);
grunt.registerTask("editor_watch", "watch js and shaders", ["parallel:editor"]);
};