@miradorlabs/parallax-web 2.0.0 → 2.0.1

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.
@@ -7,9 +7,6 @@ updates:
7
7
  interval: "weekly"
8
8
  day: "monday"
9
9
  open-pull-requests-limit: 10
10
- labels:
11
- - "dependencies"
12
- - "npm"
13
10
  commit-message:
14
11
  prefix: "chore(deps)"
15
12
  groups:
@@ -32,8 +29,5 @@ updates:
32
29
  schedule:
33
30
  interval: "weekly"
34
31
  day: "monday"
35
- labels:
36
- - "dependencies"
37
- - "github-actions"
38
32
  commit-message:
39
33
  prefix: "chore(ci)"
@@ -12,10 +12,10 @@ jobs:
12
12
 
13
13
  steps:
14
14
  - name: Checkout
15
- uses: actions/checkout@v4
15
+ uses: actions/checkout@v6
16
16
 
17
17
  - name: Setup Node.js
18
- uses: actions/setup-node@v4
18
+ uses: actions/setup-node@v6
19
19
  with:
20
20
  node-version: '20'
21
21
  cache: 'npm'
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@miradorlabs/parallax-web",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
+ "type": "module",
4
5
  "description": "Parallax Web Client Side SDK ",
5
6
  "main": "dist/index.umd.js",
6
7
  "module": "dist/index.esm.js",
@@ -23,14 +24,14 @@
23
24
  "release:major": "npm version major && git push --follow-tags"
24
25
  },
25
26
  "devDependencies": {
26
- "@eslint/js": "^9.39.1",
27
+ "@eslint/js": "^9.39.2",
27
28
  "@rollup/plugin-commonjs": "^29.0.0",
28
29
  "@rollup/plugin-node-resolve": "^16.0.3",
29
30
  "@rollup/plugin-typescript": "^12.3.0",
30
31
  "@types/google-protobuf": "^3.15.12",
31
32
  "@types/jest": "^30.0.0",
32
- "@types/node": "^24.10.1",
33
- "eslint": "^9.39.1",
33
+ "@types/node": "^24.10.4",
34
+ "eslint": "^9.39.2",
34
35
  "eslint-config-prettier": "^10.1.8",
35
36
  "eslint-plugin-prettier": "^5.5.4",
36
37
  "globals": "^16.5.0",
@@ -38,13 +39,13 @@
38
39
  "jest-environment-jsdom": "^30.2.0",
39
40
  "jiti": "^2.6.1",
40
41
  "prettier": "^3.6.2",
41
- "rollup": "^4.53.3",
42
+ "rollup": "^4.55.1",
42
43
  "rollup-plugin-dts": "^6.2.3",
43
44
  "ts-jest": "^29.4.5",
44
45
  "ts-node": "^10.9.2",
45
- "ts-proto": "^2.8.3",
46
+ "ts-proto": "^2.10.1",
46
47
  "typescript": "^5.9.3",
47
- "typescript-eslint": "^8.47.0"
48
+ "typescript-eslint": "^8.52.0"
48
49
  },
49
50
  "dependencies": {
50
51
  "google-protobuf": "^3.21.4",
@@ -0,0 +1,13 @@
1
+ #!/bin/bash
2
+ set -e
3
+
4
+ echo "=== Running Lint ==="
5
+ npm run lint
6
+
7
+ echo "=== Running Tests ==="
8
+ npm test
9
+
10
+ echo "=== Running Build ==="
11
+ npm run build
12
+
13
+ echo "=== All checks passed ==="