Skip to content

Commit 6ace702

Browse files
committed
build(deps): update dependencies
1 parent aa59391 commit 6ace702

8 files changed

Lines changed: 548 additions & 685 deletions

File tree

.github/workflows/changelog-preview.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# Checkout repository with full history for semantic-release
1818
# This checks out the PR merge commit to analyze what would be released
1919
- name: 📥 Checkout code
20-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
20+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2121
with:
2222
ref: ${{ github.head_ref }}
2323
persist-credentials: false

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
# Checkout repository
2424
- name: 📥 Checkout code
25-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
25+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2626
with:
2727
persist-credentials: false
2828

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
steps:
2828
# Checkout repository
2929
- name: 📥 Checkout code
30-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
30+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3131
with:
3232
persist-credentials: false
3333

@@ -102,7 +102,7 @@ jobs:
102102
# Update project on website
103103
- name: 🖥️ Update website
104104
if: github.repository == 'pawcoding/astro-loader-pocketbase' && steps.release.outputs.new_release_published == 'true' && !steps.release.outputs.new_release_channel && steps.release.outputs.new_release_patch_version == '0'
105-
uses: pawcoding/update-project-action@14441f968c2a3a245654b87976680b89fc482f74 # v0.0.5
105+
uses: pawcoding/update-project-action@763d90ef8cacf8ee7e2711290f99eb00abce519d # v0.1.0
106106
with:
107107
pocketbase-url: ${{ vars.PB_URL }}
108108
collection-id: ${{ vars.PB_COLLECTION }}

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
steps:
2626
# Checkout repository
2727
- name: 📥 Checkout code
28-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
28+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2929
with:
3030
persist-credentials: false
3131

lint-staged.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
* @type {import('lint-staged').Configuration}
33
*/
44
export default {
5-
"*": "oxfmt --no-error-on-unmatched-pattern",
6-
"*.ts": ["oxlint"]
5+
"!(*.ts)": "oxfmt --no-error-on-unmatched-pattern",
6+
"*.ts": ["oxlint", "oxfmt"]
77
};

package-lock.json

Lines changed: 528 additions & 668 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,22 +48,25 @@
4848
"test:unit": "vitest run $(find test -name '*.spec.ts')",
4949
"test:unit:watch": "vitest watch $(find test -name '*.spec.ts')",
5050
"test:watch": "vitest watch",
51-
"typecheck": "tsc --noEmit -p src/tsconfig.json && tsc --noEmit -p test/tsconfig.json"
51+
"typecheck": "tsc --noEmit -p src/tsconfig.json && tsc --noEmit -p test/tsconfig.json",
52+
"update-dependencies": "ncu -i -u --format group && ncu -i -u --target minor && actions-up --min-age 7"
5253
},
5354
"devDependencies": {
5455
"@commitlint/cli": "21.2.1",
5556
"@commitlint/config-conventional": "21.2.0",
5657
"@types/node": "24.13.3",
5758
"@vitest/coverage-v8": "4.1.10",
58-
"astro": "7.1.0",
59+
"actions-up": "1.16.0",
60+
"astro": "7.1.3",
5961
"globals": "17.7.0",
6062
"husky": "9.1.7",
61-
"lint-staged": "17.0.8",
62-
"oxfmt": "0.59.0",
63-
"oxlint": "1.74.0",
64-
"oxlint-tsgolint": "0.25.0",
65-
"publint": "0.3.21",
66-
"tsdown": "0.22.9",
63+
"lint-staged": "17.2.0",
64+
"npm-check-updates": "22.2.9",
65+
"oxfmt": "0.60.0",
66+
"oxlint": "1.75.0",
67+
"oxlint-tsgolint": "7.0.2001",
68+
"publint": "0.3.22",
69+
"tsdown": "0.22.14",
6770
"typescript": "6.0.3",
6871
"vitest": "4.1.10",
6972
"zod-to-ts": "2.1.0"
@@ -75,7 +78,7 @@
7578
"engines": {
7679
"node": ">=22.12.0"
7780
},
78-
"packageManager": "npm@12.0.1",
81+
"packageManager": "npm@12.0.2",
7982
"allowScripts": {
8083
"esbuild@0.28.1": true,
8184
"sharp@0.34.5": false

tsdown.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default defineConfig({
55
sourcemap: true
66
},
77
deps: {
8-
skipNodeModulesBundle: true
8+
neverBundle: true
99
},
1010
publint: true,
1111
exports: true

0 commit comments

Comments
 (0)