Skip to content

Commit 108a621

Browse files
committed
chore: upgrade deps
Signed-off-by: Andres Correa Casablanca <andreu@kindspells.dev>
1 parent c2ad988 commit 108a621

File tree

11 files changed

+315
-363
lines changed

11 files changed

+315
-363
lines changed

@kindspells/astro-shield/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kindspells/astro-shield",
3-
"version": "1.4.1",
3+
"version": "1.4.2",
44
"description": "Astro integration to enhance your website's security with SubResource Integrity hashes, Content-Security-Policy headers, and other techniques.",
55
"private": false,
66
"type": "module",
@@ -63,15 +63,15 @@
6363
"astro": "^4.0.0"
6464
},
6565
"devDependencies": {
66-
"@types/node": "^22.5.4",
67-
"astro": "^4.15.4",
66+
"@types/node": "^22.5.5",
67+
"astro": "^4.15.6",
6868
"get-tsconfig": "^4.8.1",
6969
"rollup": "^4.21.3",
7070
"rollup-plugin-dts": "^6.1.1",
7171
"rollup-plugin-esbuild": "^6.1.1",
7272
"typescript": "^5.6.2",
73-
"vite": "^5.4.4",
74-
"vitest": "^2.0.5"
73+
"vite": "^5.4.5",
74+
"vitest": "^2.1.1"
7575
},
7676
"repository": {
7777
"type": "git",

@kindspells/astro-shield/src/e2e/fixtures/dynamic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"license": "MIT",
1212
"dependencies": {
1313
"@astrojs/node": "^8.3.3",
14-
"astro": "^4.15.4"
14+
"astro": "^4.15.6"
1515
},
1616
"devDependencies": {
1717
"@kindspells/astro-shield": "workspace:*"

@kindspells/astro-shield/src/e2e/fixtures/hybrid/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"license": "MIT",
1010
"dependencies": {
1111
"@astrojs/node": "^8.3.3",
12-
"astro": "^4.15.4"
12+
"astro": "^4.15.6"
1313
},
1414
"devDependencies": {
1515
"@kindspells/astro-shield": "workspace:*"

@kindspells/astro-shield/src/e2e/fixtures/hybrid2/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"license": "MIT",
1010
"dependencies": {
1111
"@astrojs/node": "^8.3.3",
12-
"astro": "^4.15.4"
12+
"astro": "^4.15.6"
1313
},
1414
"devDependencies": {
1515
"@kindspells/astro-shield": "workspace:*"

@kindspells/astro-shield/src/e2e/fixtures/hybrid3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"license": "MIT",
1010
"dependencies": {
1111
"@astrojs/node": "^8.3.3",
12-
"astro": "^4.15.4"
12+
"astro": "^4.15.6"
1313
},
1414
"devDependencies": {
1515
"@kindspells/astro-shield": "workspace:*"

@kindspells/astro-shield/src/e2e/fixtures/static/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"license": "MIT",
1010
"dependencies": {
11-
"astro": "^4.15.4"
11+
"astro": "^4.15.6"
1212
},
1313
"devDependencies": {
1414
"@kindspells/astro-shield": "workspace:*"

@kindspells/astro-shield/src/headers.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export const patchCspHeader = (
6767
plainHeaders['content-security-policy'] as string,
6868
),
6969
}
70-
: cspOpts.cspDirectives ?? ({} satisfies CSPDirectives)
70+
: (cspOpts.cspDirectives ?? ({} satisfies CSPDirectives))
7171

7272
if (pageHashes.scripts.size > 0) {
7373
setSrcDirective(directives, 'script-src', pageHashes.scripts)

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/1.9.0/schema.json",
33
"organizeImports": { "enabled": true },
44
"files": {
55
"include": ["*.json", "*.js", "*.mjs", "*.mts", "*.d.ts"],

docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
"dependencies": {
1414
"astro-sst": "^2.43.5",
1515
"sharp": "0.33.5",
16-
"sst": "^3.1.7"
16+
"sst": "^3.1.10"
1717
},
1818
"devDependencies": {
1919
"@astrojs/check": "^0.9.3",
2020
"@astrojs/starlight": "^0.27.1",
2121
"@astrojs/ts-plugin": "^1.10.2",
2222
"@kindspells/astro-shield": "workspace:^",
23-
"astro": "^4.15.4",
23+
"astro": "^4.15.6",
2424
"typescript": "^5.6.2"
2525
}
2626
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
}
1111
],
1212
"devDependencies": {
13-
"@biomejs/biome": "^1.8.3",
13+
"@biomejs/biome": "^1.9.0",
1414
"@moonrepo/cli": "^1.28.2",
15-
"@vitest/coverage-v8": "^2.0.5",
15+
"@vitest/coverage-v8": "^2.1.1",
1616
"publint": "^0.2.10",
17-
"vitest": "^2.0.5"
17+
"vitest": "^2.1.1"
1818
},
1919
"engines": {
2020
"node": ">= 18.0.0"

0 commit comments

Comments
 (0)