Skip to content

Commit 2c14e47

Browse files
lzxueCopilot
andauthored
Realase 0706 (#2871)
* style: 统一联合类型格式为多行 * chore: 提交 pnpm-lock.yaml 并移除 gitignore 忽略 * style: 统一联合类型格式为多行,提交 pnpm-lock.yaml 并更新 CI pnpm 版本 * chore: release 2.28.15 * chore: revert changelog config to github * chore: release 2.29.0 * chore: release 2.29.0 * chore: update dependencies * chore: release 2.29.0 * chore: update dependencies and move overrides to pnpm-workspace.yaml * ci: add packageManager field for pnpm version * fix: add missing trailing newlines to package.json files to fix Prettier check * chore: remove WindLayer implementation and related docs * chore: remove regl renderer engine and related configs * style: fix prettier formatting * refactor: optimize renderer interfaces and layer models * chore: upgrade deprecated dependencies - Upgrade rimraf from ^3.0.2 to ^5.0.0 - Replace topojson with topojson-server - Remove unused uri-parse dependency - Remove shp-write and related exportShpfile function - Upgrade pnpm from 8.15.9 to 9.15.4 * chore: update code and dependencies * ci: specify pnpm version in action-setup * chore: upgrade pnpm to v11.12.0 * chore: update pnpm-lock.yaml for pnpm v11 * ci: upgrade Node.js to 22.x for pnpm v11 compatibility * ci: update pnpm version to 11 in prepare-install action --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
1 parent c1b0362 commit 2c14e47

65 files changed

Lines changed: 28433 additions & 5025 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/fix-high-zoom-lnglat-precision.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fix-prototype-pollution.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.github/actions/prepare-install/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ runs:
1111
steps:
1212
- uses: pnpm/action-setup@v3
1313
with:
14-
version: 8
14+
version: 11
1515

1616
- name: Use Node.js ${{ inputs.node-version }}
1717
uses: actions/setup-node@v4

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
strategy:
2727
matrix:
28-
node-version: [20.x]
28+
node-version: [22.x]
2929
steps:
3030
- uses: actions/checkout@v4
3131
- name: Install dependencies
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-22.04
5050
strategy:
5151
matrix:
52-
node-version: [20.x]
52+
node-version: [22.x]
5353
steps:
5454
- uses: actions/checkout@v4
5555
- name: Install dependencies
@@ -105,7 +105,7 @@ jobs:
105105
runs-on: ubuntu-latest
106106
strategy:
107107
matrix:
108-
node-version: [20.x]
108+
node-version: [22.x]
109109
steps:
110110
- uses: actions/checkout@v4
111111
- name: Install dependencies

.github/workflows/create-bumb-version-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-latest
3333
strategy:
3434
matrix:
35-
node-version: [18.x]
35+
node-version: [22.x]
3636
steps:
3737
- uses: actions/checkout@v4
3838
# with:

.github/workflows/deploy-site.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
strategy:
2424
matrix:
25-
node-version: [18.x]
25+
node-version: [22.x]
2626
steps:
2727
- uses: actions/checkout@v4
2828
- name: Install dependencies

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
strategy:
2525
matrix:
26-
node-version: [18.x]
26+
node-version: [22.x]
2727
outputs:
2828
published: ${{ steps.changesets.outputs.published }}
2929
publishedPackages: ${{ steps.changesets.outputs.publishedPackages }}

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ yarn-debug.log*
1010
yarn-error.log*
1111
yarn.lock
1212
package-lock.json
13-
pnpm-lock.yaml
1413

1514
# Runtime data
1615
pids

L7_API_Reference.md

Lines changed: 0 additions & 1498 deletions
This file was deleted.

examples/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import type { GUIOptions, TestCaseBasemap } from './types';
22

33
export const DEFAULT_GUI_OPTIONS: GUIOptions = {
44
map: 'Map',
5-
renderer: 'device',
65
animate: false,
6+
renderer: 'regl',
77
enableWebGPU: false,
88
};
99

0 commit comments

Comments
 (0)