@createiq/htmldiff 1.0.3 → 1.0.4-beta.0

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.
@@ -0,0 +1,15 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(diff -u test/input1.html test/input2.html)",
5
+ "Bash(npm test -- test/Bug.spec.tsx)",
6
+ "Bash(timeout 30s npm run test:ci -- test/Bug.spec.tsx)",
7
+ "Bash(npm run build)",
8
+ "Bash(timeout 10s npm run test:ci -- test/Bug.spec.tsx)",
9
+ "Bash(npm run lint)",
10
+ "Bash(npm run test:ci)",
11
+ "Bash(npm run bench:ci)"
12
+ ],
13
+ "deny": []
14
+ }
15
+ }
package/.gitlab-ci.yml CHANGED
@@ -8,7 +8,7 @@ default:
8
8
 
9
9
  "Run unit tests":
10
10
  stage: test
11
- image: ${ACR_HOSTNAME}/infra/baseimages/node:22-alpine
11
+ image: ${ACR_HOSTNAME}/infra/baseimages/node:24-alpine
12
12
  before_script:
13
13
  - npm ci --prefer-offline --no-audit
14
14
  script:
@@ -32,7 +32,7 @@ default:
32
32
 
33
33
  "Lint":
34
34
  stage: test
35
- image: ${ACR_HOSTNAME}/infra/baseimages/node:22-alpine
35
+ image: ${ACR_HOSTNAME}/infra/baseimages/node:24-alpine
36
36
  before_script:
37
37
  - npm ci --prefer-offline --no-audit
38
38
  script:
@@ -49,7 +49,7 @@ default:
49
49
  # TODO this runs on gke01-london for firewall reasons to be able to talk to registry.npmjs.org
50
50
  "Publish to npm - dry-run":
51
51
  stage: deploy
52
- image: ${CI_REGISTRY}/infra/baseimages/node:22-alpine
52
+ image: ${CI_REGISTRY}/infra/baseimages/node:24-alpine
53
53
  before_script:
54
54
  - npm ci --prefer-offline --no-audit
55
55
  script:
@@ -67,7 +67,7 @@ default:
67
67
  # TODO this runs on gke01-london for firewall reasons to be able to talk to registry.npmjs.org
68
68
  "Publish to npm":
69
69
  stage: deploy
70
- image: ${CI_REGISTRY}/infra/baseimages/node:22-alpine
70
+ image: ${CI_REGISTRY}/infra/baseimages/node:24-alpine
71
71
  before_script:
72
72
  - npm ci --prefer-offline --no-audit
73
73
  script:
@@ -83,7 +83,7 @@ default:
83
83
 
84
84
  .generate_sbom: &generate_sbom
85
85
  stage: generate_artifacts
86
- image: ${ACR_HOSTNAME}/infra/baseimages/node:22-alpine
86
+ image: ${ACR_HOSTNAME}/infra/baseimages/node:24-alpine
87
87
  before_script:
88
88
  - npm ci --prefer-offline --no-audit
89
89
  script:
package/biome.json CHANGED
@@ -49,5 +49,8 @@
49
49
  "clientKind": "git",
50
50
  "useIgnoreFile": true,
51
51
  "defaultBranch": "main"
52
+ },
53
+ "files": {
54
+ "includes": ["**", "!test/*.html"]
52
55
  }
53
56
  }