forked from IMERSS/howe-sound-mapping
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.json5
executable file
·115 lines (113 loc) · 4.23 KB
/
config.json5
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
reknitJobs: [{
infile: "%maxwell/docs/Xetthecum-Storymap.html",
outfile: "%maxwell/docs/Xetthecum-Storymap-Reknitted.html",
options: {
template: "%maxwell/src/html/template.html",
scrollyPageOptions: {
zoomDuration: 1500
},
paneHandlers: {
Acknowledgement: {
type: "maxwell.paneHandler",
gradeNames: "maxwell.mapHidingPaneHandler"
},
Introduction: {
type: "maxwell.leafletPaneHandler"
},
Historic: {
type: "maxwell.leafletPaneHandler"
},
Ecological: {
type: "maxwell.xetthecumEcologicalPane",
vizFile: "%resourceBase/data/Life-PhaseIII.json.lz4"
},
Laughlin: {
type: "maxwell.leafletPaneHandler"
},
Greig: {
type: "maxwell.leafletPaneHandler"
},
Delta: {
type: "maxwell.leafletPaneHandler"
},
Caves: {
type: "maxwell.paneHandler",
gradeNames: "maxwell.mapHidingPaneHandler"
},
Retreat: {
type: "maxwell.leafletPaneHandler"
},
Eelgrass: {
type: "maxwell.leafletPaneHandler"
},
Ecosystem: {
type: "maxwell.leafletPaneHandler"
},
Community: {
type: "maxwell.leafletPaneHandler"
},
Preservation: {
type: "maxwell.leafletPaneHandler"
}
}
}
}],
transforms: [{
file: "%maxwell/src/js/reknit-xetthecum.js",
func: "addArrows"
},{
file: "%maxwell/src/js/reknit-xetthecum.js",
func: "rewriteTaxonLinks"
}],
copyJobs: [{
source: "%infusion/dist/infusion-framework.js",
target: "%maxwell/docs/js/infusion-framework.js",
replaceSource: "sourceMappingURL=infusion-framework.js.map",
replaceTarget: "sourceMappingURL=../../node_modules/infusion/dist/infusion-framework.js.map"
}, { // TODO: Extend module-relative addressing to 3rd-party modules
source: "%maxwell/node_modules/@imerss/inat-components/dist/standalone.min.js",
target: "%maxwell/docs/js/inat-components-standalone.min.js"
}, {
source: "%maxwell/src/css/*.css",
target: "%maxwell/docs/css"
}, {
source: "%maxwell/src/js/client/*.js",
target: "%maxwell/docs/js"
}, {
source: "%imerss-bioinfo/docs/js/imerss-viz-all.js",
target: "%maxwell/docs/js/imerss-viz-all.js"
}, {
source: "%imerss-bioinfo/docs/js/imerss-viz-all.js.map",
target: "%maxwell/docs/js/imerss-viz-all.js.map",
replaceSource: "\"sourceRoot\":\"../..\"",
replaceTarget: "\"sourceRoot\":\"../../../bagatelle/\""
}, {
source: "%imerss-bioinfo/src/client/img/Arrow-up.svg",
target: "%maxwell/docs/img/Arrow-up.svg"
}, {
source: "%imerss-bioinfo/src/client/img/Arrow-down.svg",
target: "%maxwell/docs/img/Arrow-down.svg"
}, {
source: "%imerss-bioinfo/src/client/img/up-arrow.svg",
target: "%maxwell/docs/img/up-arrow.svg"
}, {
source: "%imerss-bioinfo/src/client/img/external-link.svg",
target: "%maxwell/docs/img/external-link.svg"
}, {
source: "%imerss-bioinfo/docs/css/imerss-viz-all.css",
target: "%maxwell/docs/css/imerss-viz-all.css"
}, {
source: "%maxwell/src/html/imerss-viz-scrolly.html",
target: "%maxwell/docs/html/imerss-viz-scrolly.html"
}, {
source: "%maxwell/src/html/pane-info.html",
target: "%maxwell/docs/html/pane-info.html"
}, {
source: "%imerss-bioinfo/src/client/json/emptyPhyloMap.json",
target: "%maxwell/docs/json/phyloMap.json"
}, {
source: "%maxwell/viz_data/*.lz4",
target: "%maxwell/docs/data"
}]
}