Skip to content

Commit

Permalink
chore: upgrade deps
Browse files Browse the repository at this point in the history
Signed-off-by: Andres Correa Casablanca <[email protected]>
  • Loading branch information
castarco committed Sep 14, 2024
1 parent c2ad988 commit 108a621
Show file tree
Hide file tree
Showing 11 changed files with 315 additions and 363 deletions.
10 changes: 5 additions & 5 deletions @kindspells/astro-shield/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kindspells/astro-shield",
"version": "1.4.1",
"version": "1.4.2",
"description": "Astro integration to enhance your website's security with SubResource Integrity hashes, Content-Security-Policy headers, and other techniques.",
"private": false,
"type": "module",
Expand Down Expand Up @@ -63,15 +63,15 @@
"astro": "^4.0.0"
},
"devDependencies": {
"@types/node": "^22.5.4",
"astro": "^4.15.4",
"@types/node": "^22.5.5",
"astro": "^4.15.6",
"get-tsconfig": "^4.8.1",
"rollup": "^4.21.3",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"typescript": "^5.6.2",
"vite": "^5.4.4",
"vitest": "^2.0.5"
"vite": "^5.4.5",
"vitest": "^2.1.1"
},
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"license": "MIT",
"dependencies": {
"@astrojs/node": "^8.3.3",
"astro": "^4.15.4"
"astro": "^4.15.6"
},
"devDependencies": {
"@kindspells/astro-shield": "workspace:*"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"license": "MIT",
"dependencies": {
"@astrojs/node": "^8.3.3",
"astro": "^4.15.4"
"astro": "^4.15.6"
},
"devDependencies": {
"@kindspells/astro-shield": "workspace:*"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"license": "MIT",
"dependencies": {
"@astrojs/node": "^8.3.3",
"astro": "^4.15.4"
"astro": "^4.15.6"
},
"devDependencies": {
"@kindspells/astro-shield": "workspace:*"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"license": "MIT",
"dependencies": {
"@astrojs/node": "^8.3.3",
"astro": "^4.15.4"
"astro": "^4.15.6"
},
"devDependencies": {
"@kindspells/astro-shield": "workspace:*"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"license": "MIT",
"dependencies": {
"astro": "^4.15.4"
"astro": "^4.15.6"
},
"devDependencies": {
"@kindspells/astro-shield": "workspace:*"
Expand Down
2 changes: 1 addition & 1 deletion @kindspells/astro-shield/src/headers.mts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const patchCspHeader = (
plainHeaders['content-security-policy'] as string,
),
}
: cspOpts.cspDirectives ?? ({} satisfies CSPDirectives)
: (cspOpts.cspDirectives ?? ({} satisfies CSPDirectives))

if (pageHashes.scripts.size > 0) {
setSrcDirective(directives, 'script-src', pageHashes.scripts)
Expand Down
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"$schema": "https://biomejs.dev/schemas/1.9.0/schema.json",
"organizeImports": { "enabled": true },
"files": {
"include": ["*.json", "*.js", "*.mjs", "*.mts", "*.d.ts"],
Expand Down
4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
"dependencies": {
"astro-sst": "^2.43.5",
"sharp": "0.33.5",
"sst": "^3.1.7"
"sst": "^3.1.10"
},
"devDependencies": {
"@astrojs/check": "^0.9.3",
"@astrojs/starlight": "^0.27.1",
"@astrojs/ts-plugin": "^1.10.2",
"@kindspells/astro-shield": "workspace:^",
"astro": "^4.15.4",
"astro": "^4.15.6",
"typescript": "^5.6.2"
}
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
}
],
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@biomejs/biome": "^1.9.0",
"@moonrepo/cli": "^1.28.2",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/coverage-v8": "^2.1.1",
"publint": "^0.2.10",
"vitest": "^2.0.5"
"vitest": "^2.1.1"
},
"engines": {
"node": ">= 18.0.0"
Expand Down
Loading

0 comments on commit 108a621

Please sign in to comment.