geojs 1.12.3 → 1.12.5
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/.github/workflows/main.yml +4 -2
- package/.pre-commit-config.yaml +4 -3
- package/README.md +0 -1
- package/geo.js +1430 -1467
- package/geo.lean.js +864 -901
- package/geo.lean.min.js +3 -3
- package/geo.min.js +3 -3
- package/package.json +15 -14
- package/src/annotationLayer.js +7 -6
- package/src/map.js +4 -4
- package/src/mapInteractor.js +1 -1
- package/src/pointFeature.js +1 -1
- package/src/polygonFeature.js +1 -1
- package/src/ui/scaleWidget.js +1 -1
- package/src/vtkjs/vtkjsRenderer.js +1 -1
- package/src/webgl/polygonFeature.js +1 -0
|
@@ -20,9 +20,9 @@ jobs:
|
|
|
20
20
|
- uses: actions/checkout@v4
|
|
21
21
|
- uses: actions/setup-node@v4
|
|
22
22
|
with:
|
|
23
|
-
node-version: '
|
|
23
|
+
node-version: '20'
|
|
24
24
|
- uses: browser-actions/setup-firefox@latest
|
|
25
|
-
- run: sudo apt-get install --yes --no-install-recommends optipng
|
|
25
|
+
- run: sudo apt-get install --yes --no-install-recommends optipng imagemagick build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev
|
|
26
26
|
- run: sudo apt-get remove --yes fonts-lato
|
|
27
27
|
- run: fc-list
|
|
28
28
|
- run: firefox --version
|
|
@@ -75,6 +75,7 @@ jobs:
|
|
|
75
75
|
node-version: 'lts/*'
|
|
76
76
|
- run: npm --version && node --version
|
|
77
77
|
- uses: browser-actions/setup-firefox@latest
|
|
78
|
+
- run: sudo apt-get install --yes --no-install-recommends optipng imagemagick build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev
|
|
78
79
|
- run: sudo apt-get remove --yes fonts-lato
|
|
79
80
|
- run: fc-list
|
|
80
81
|
- run: firefox --version
|
|
@@ -110,6 +111,7 @@ jobs:
|
|
|
110
111
|
- uses: actions/setup-node@v4
|
|
111
112
|
with:
|
|
112
113
|
node-version: 'lts/*'
|
|
114
|
+
- run: sudo apt-get install --yes --no-install-recommends optipng imagemagick build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev
|
|
113
115
|
- run: npm ci
|
|
114
116
|
- name: Import artifacts
|
|
115
117
|
uses: actions/download-artifact@v4
|
package/.pre-commit-config.yaml
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
# pre-commit install --hook-type commit-msg
|
|
4
4
|
# See https://pre-commit.com for more information
|
|
5
5
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
6
|
-
default_stages: [commit, push]
|
|
6
|
+
default_stages: [pre-commit, pre-push]
|
|
7
7
|
repos:
|
|
8
8
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
9
|
-
rev:
|
|
9
|
+
rev: v5.0.0
|
|
10
10
|
hooks:
|
|
11
11
|
- id: check-added-large-files
|
|
12
12
|
- id: check-ast
|
|
@@ -55,9 +55,10 @@ repos:
|
|
|
55
55
|
- --skip
|
|
56
56
|
- examples/sld/index.pug,package-lock.json,examples/reprojection/proj.json,website/themes/agency/source/vendor/jquery/jquery.min.js,examples/reprojection/capitals.json
|
|
57
57
|
- repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
|
|
58
|
-
rev: v9.
|
|
58
|
+
rev: v9.18.0
|
|
59
59
|
hooks:
|
|
60
60
|
- id: commitlint
|
|
61
|
+
language_version: "22.10.0"
|
|
61
62
|
stages: [commit-msg]
|
|
62
63
|
additional_dependencies: ['@commitlint/config-conventional']
|
|
63
64
|
verbose: true
|
package/README.md
CHANGED
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
[](https://codecov.io/github/OpenGeoscience/geojs?branch=master)
|
|
5
5
|
[](https://dx.doi.org/10.5281/zenodo.15459)
|
|
6
6
|
[](https://www.npmjs.com/package/geojs)
|
|
7
|
-
[](https://gitter.im/OpenGeoscience/geojs)
|
|
8
7
|
|
|
9
8
|
GeoJS is intended to bridge the gap between
|
|
10
9
|
[GIS](https://en.wikipedia.org/wiki/Geographic_information_system),
|