forked from signavio/react-mentions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
45 lines (40 loc) · 806 Bytes
/
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
module.exports = function(grunt) {
"use strict";
grunt.initConfig({
"gh-pages": {
options: {
base: "gh-pages"
},
src: [
"index.html",
"*.js",
"*.js.map",
"*.jsx",
"views/**/*",
"css/*"
]
},
less: {
default: {
files: {
"gh-pages/css/style.css": "gh-pages/less/react-mentions.less"
}
}
},
copy: {
default: {
files: [
{ src: ["dist/react-mentions.js"], dest: "gh-pages/lib/react-mentions.js" }
]
}
}
});
grunt.loadNpmTasks("grunt-contrib-copy");
grunt.loadNpmTasks("grunt-contrib-less");
grunt.loadNpmTasks("grunt-gh-pages");
grunt.registerTask("publish", [
"copy",
"less",
"gh-pages"
]);
};