From 722fa34037eaf5e544f3f633c7775cc93406a866 Mon Sep 17 00:00:00 2001 From: Teages Date: Thu, 13 Nov 2025 01:17:10 +0800 Subject: [PATCH 1/3] chore: update packageManager to pnpm@10.22.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 536bcb1..a21ffc5 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vue-sfc-transformer", "type": "module", "version": "0.1.17", - "packageManager": "pnpm@10.21.0", + "packageManager": "pnpm@10.22.0", "description": "Tools for minimal TypeScript transpilation of Vue SFCs", "license": "MIT", "repository": "nuxt-contrib/vue-sfc-transformer", From 8348e2e69d386ea0fc4eed7ea8705571b179d31e Mon Sep 17 00:00:00 2001 From: Teages Date: Thu, 13 Nov 2025 01:19:04 +0800 Subject: [PATCH 2/3] chore: enable enable trust policy and skip for chokidar@4.0.3 --- pnpm-workspace.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 735b4fe..b5a1d66 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -5,3 +5,6 @@ ignoredBuiltDependencies: - esbuild onlyBuiltDependencies: - simple-git-hooks +trustPolicy: no-downgrade +trustPolicyExclude: + - chokidar@4.0.3 From 46e47be4b81642a504d925cf3514445406edaa38 Mon Sep 17 00:00:00 2001 From: Teages Date: Thu, 13 Nov 2025 01:20:00 +0800 Subject: [PATCH 3/3] chore: remove provenance action --- .github/workflows/provenance.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/provenance.yml diff --git a/.github/workflows/provenance.yml b/.github/workflows/provenance.yml deleted file mode 100644 index b94dd6b..0000000 --- a/.github/workflows/provenance.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: ci - -on: - push: - branches: - - main - pull_request: - branches: - - main -permissions: - contents: read -jobs: - check-provenance: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: Check provenance downgrades - uses: danielroe/provenance-action@41bcc969e579d9e29af08ba44fcbfdf95cee6e6c # v0.1.1 - with: - fail-on-provenance-change: true