@lgv/visualization-map 1.1.1 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitlab-ci.yml +2 -1
- package/package.json +1 -1
- package/src/visualization/leaflet.js +0 -10
package/.gitlab-ci.yml
CHANGED
|
@@ -36,7 +36,7 @@ include:
|
|
|
36
36
|
###################################### ANCHORS ######################################
|
|
37
37
|
|
|
38
38
|
.convert-css: &convert-css
|
|
39
|
-
- cp
|
|
39
|
+
- cp node_modules/leaflet/dist/leaflet.css leafletCss.js
|
|
40
40
|
- sed -i '1s/^/export default `\n/' leafletCss.js
|
|
41
41
|
- echo "\`" >> leafletCss.js
|
|
42
42
|
- mv leafletCss.js src/visualization/
|
|
@@ -72,6 +72,7 @@ npm:
|
|
|
72
72
|
- npm install
|
|
73
73
|
# convert leaflet css for js
|
|
74
74
|
- *convert-css
|
|
75
|
+
- ls -l src/visualization
|
|
75
76
|
# build module for distribution
|
|
76
77
|
- npm run build
|
|
77
78
|
# publish
|
package/package.json
CHANGED