forked from nasa-gibs/worldview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buster.js
44 lines (42 loc) · 1.25 KB
/
buster.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
/*
* NASA Worldview
*
* This code was originally developed at NASA/Goddard Space Flight Center for
* the Earth Science Data and Information System (ESDIS) project.
*
* Copyright (C) 2013 - 2014 United States Government as represented by the
* Administrator of the National Aeronautics and Space Administration.
* All Rights Reserved.
*/
var config = module.exports;
config["wv"] = {
rootPath: "./",
environment: "browser",
libs: [
"web/ext/main/lodash-2.4.1/lodash.js",
"web/ext/main/jquery-2.1.4/jquery.js",
"web/ext/main/jquery.migrate-1.2.1/jquery-migrate.min.js",
"web/ext/main/jscache-gitba01cdc/cache.js",
"web/ext/proj/proj4js-2.3.3-1/proj4.js",
"web/ext/map/openlayers-3.17.1.wv1/ol.js",
"test/fixtures.js"
],
src: [
"web/js/util/wv.*.js",
"web/js/wv.*.js",
"!web/js/wv.main.js",
"web/js/ui/wv.ui.js",
"web/js/ui/wv.ui.mouse.js",
"web/js/ui/wv.ui.indicator.js",
"web/js/date/wv.*.js",
"web/js/layers/wv.*.js",
"web/js/link/wv.*.js",
"web/js/palettes/wv.*.js",
"web/js/proj/wv.*.js",
"web/js/data/wv.*.js",
"web/js/map/wv.*.js"
],
tests: [
"test/**/*.js"
]
};