@unvt/charites 2.1.10 → 2.1.11

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.
@@ -20,13 +20,13 @@ jobs:
20
20
  build:
21
21
  strategy:
22
22
  matrix:
23
- node-version: [20.x, 22.x]
23
+ node-version: [22.x, 24.x]
24
24
  os: [ubuntu-latest]
25
25
  runs-on: ${{ matrix.os }}
26
26
  steps:
27
- - uses: actions/checkout@v3
27
+ - uses: actions/checkout@v4
28
28
  - name: Use Node.js ${{ matrix.node-version }}
29
- uses: actions/setup-node@v3
29
+ uses: actions/setup-node@v4
30
30
  with:
31
31
  node-version: ${{ matrix.node-version }}
32
32
  - run: npm install
@@ -37,11 +37,11 @@ jobs:
37
37
  runs-on: ubuntu-latest
38
38
  strategy:
39
39
  matrix:
40
- node-version: [22.x]
40
+ node-version: [24.x]
41
41
  steps:
42
- - uses: actions/checkout@v3
42
+ - uses: actions/checkout@v4
43
43
  - name: Use Node.js ${{ matrix.node-version }}
44
- uses: actions/setup-node@v3
44
+ uses: actions/setup-node@v4
45
45
  with:
46
46
  node-version: ${{ matrix.node-version }}
47
47
  - name: Check and restore cache of playwright
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unvt/charites",
3
- "version": "2.1.10",
3
+ "version": "2.1.11",
4
4
  "description": "",
5
5
  "bin": {
6
6
  "charites": "dist/cli.js"
@@ -23,25 +23,25 @@
23
23
  "author": "",
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
- "@maplibre/maplibre-gl-inspect": "^1.8.1",
27
- "@maplibre/maplibre-gl-style-spec": "^24.3.1",
28
- "@unvt/sprite-one": "^0.1.1",
26
+ "@maplibre/maplibre-gl-inspect": "^1.8.2",
27
+ "@maplibre/maplibre-gl-style-spec": "^24.6.0",
28
+ "@unvt/sprite-one": "^0.1.2",
29
29
  "@watergis/maplibre-gl-legend": "^2.0.6",
30
- "commander": "^14.0.2",
31
- "glob": "^13.0.0",
30
+ "commander": "^14.0.3",
31
+ "glob": "^13.0.6",
32
32
  "jsonminify": "^0.4.2",
33
- "maplibre-gl": "^5.14.0",
33
+ "maplibre-gl": "^5.19.0",
34
34
  "node-watch": "^0.7.4",
35
35
  "open": "^11.0.0",
36
- "pmtiles": "^4.3.0",
37
- "vite": "^7.2.7",
38
- "ws": "^8.18.3",
36
+ "pmtiles": "^4.4.0",
37
+ "vite": "^7.3.1",
38
+ "ws": "^8.19.0",
39
39
  "yaml": "^2.8.2"
40
40
  },
41
41
  "devDependencies": {
42
- "@eslint/eslintrc": "^3.3.3",
43
- "@eslint/js": "^9.39.1",
44
- "@playwright/test": "^1.57.0",
42
+ "@eslint/eslintrc": "^3.3.4",
43
+ "@eslint/js": "^10.0.1",
44
+ "@playwright/test": "^1.58.2",
45
45
  "@types/chai": "^5.2.3",
46
46
  "@types/chai-as-promised": "^8.0.2",
47
47
  "@types/fs-extra": "^11.0.4",
@@ -49,24 +49,27 @@
49
49
  "@types/jsonminify": "^0.4.3",
50
50
  "@types/mapbox__point-geometry": "^0.1.4",
51
51
  "@types/mocha": "^10.0.10",
52
- "@types/node": "^24.10.1",
52
+ "@types/node": "^25.3.3",
53
53
  "@types/ws": "^8.18.1",
54
- "@typescript-eslint/eslint-plugin": "^8.48.1",
55
- "@typescript-eslint/parser": "^8.48.1",
56
- "chai": "^6.2.1",
54
+ "@typescript-eslint/eslint-plugin": "^8.56.1",
55
+ "@typescript-eslint/parser": "^8.56.1",
56
+ "chai": "^6.2.2",
57
57
  "chai-as-promised": "^8.0.2",
58
- "eslint": "^9.39.1",
58
+ "eslint": "^10.0.2",
59
59
  "eslint-config-prettier": "^10.1.8",
60
- "eslint-plugin-prettier": "^5.5.4",
61
- "fs-extra": "^11.3.2",
62
- "kill-port-process": "^3.2.1",
60
+ "eslint-plugin-prettier": "^5.5.5",
61
+ "fs-extra": "^11.3.4",
62
+ "kill-port-process": "^4.0.2",
63
63
  "mocha": "^11.7.5",
64
64
  "node-abort-controller": "^3.1.1",
65
- "prettier": "^3.7.4",
65
+ "prettier": "^3.8.1",
66
66
  "ts-node": "^10.9.2",
67
67
  "tsconfig-paths": "^4.2.0",
68
68
  "tsx": "^4.21.0",
69
69
  "typescript": "^5.9.3"
70
70
  },
71
- "type": "module"
71
+ "type": "module",
72
+ "engines": {
73
+ "node": ">=22.0.0"
74
+ }
72
75
  }
@@ -6,6 +6,9 @@ const config: PlaywrightTestConfig = {
6
6
  use: {
7
7
  browserName: 'chromium',
8
8
  headless: true,
9
+ launchOptions: {
10
+ args: ['--ignore-gpu-blocklist', '--enable-unsafe-swiftshader'],
11
+ },
9
12
  },
10
13
  workers: 1,
11
14
  webServer: [
@@ -9,5 +9,5 @@ test('Charites Live Preview', async ({ page }) => {
9
9
  await page.waitForTimeout(1000)
10
10
  const title = await page.title()
11
11
  expect(title).toBe('Charites Live Preview')
12
- expect(pageErrors).toMatchObject([])
12
+ expect(pageErrors).toEqual([])
13
13
  })