forked from signavio/react-mentions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gruntfile.js
51 lines (46 loc) · 1.1 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
module.exports = function(grunt) {
"use strict";
grunt.initConfig({
"gh-pages": {
options: {
base: "gh-pages"
},
src: [
"index.html",
"*.js",
"*.jsx",
"views/**/*",
"css/*",
"lib/react-mentions.js",
"lib/vendor/requirejs/require.js",
"lib/vendor/react/react-with-addons.js",
"lib/vendor/react-router/dist/react-router.js",
"lib/vendor/requirejs-jsx-plugin/js/jsx.js",
"lib/vendor/requirejs-jsx-plugin/js/JSXTransformer.js",
"lib/vendor/requirejs-text/text.js"
]
},
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"
]);
};