-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathgulp.config.js
More file actions
35 lines (29 loc) · 902 Bytes
/
gulp.config.js
File metadata and controls
35 lines (29 loc) · 902 Bytes
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
/* globals module, require, -$ */
module.exports = function () {
var config = {
tmpDir: './.tmp/',
// all the source files
css: [ // ordering is important
'./css/knet-style.css',
'./css/jquery.qtip.min.css',
'./css/maskloader.css'
],
js: ['./javascript/*.js','./config/url_mappings.js'],
images: ['./image/*.png','./image/*.ico','./image/*.svg','./image_legend/*.png','./css/*.gif','./css/*.svg'],
fonts: ['./fonts/*.otf','./fonts/Licenses/*.html'],
libs: [ // ordering is important
'./libs/jquery-1.11.2.min.js',
'./libs/jquery*.js',
'./libs/FileSaver.min.js',
'./libs/cytoscape.min.js',
'./libs/cytoscape-*.js'
],
// the development output
build: './dist/',
outputFonts: './dist/fonts',
outputImages: './dist/img',
outputCss: './dist/css',
outputJs: './dist/js',
};
return config;
};