Skip to content

Commit d03a915

Browse files
committed
Bumps node modules
1 parent a915416 commit d03a915

5 files changed

Lines changed: 13 additions & 18 deletions

File tree

.github/workflows/create-release-pr.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
with:
4646
run_install: |
4747
- recursive: true
48-
args: [--no-frozen-lockfile]
48+
args: [--frozen-lockfile]
4949
5050
# No need to install dependencies - npm version works without them
5151
- name: Version bump
@@ -54,6 +54,7 @@ jobs:
5454
VERSION=$(pnpm version "$VERSION_TYPE" --no-git-tag-version)
5555
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
5656
pnpm --recursive exec pnpm pkg set version=$(node -p "JSON.parse(fs.readFileSync('package.json', 'utf8')).version")
57+
pnpm install --no-rozen-lockfile
5758
env:
5859
VERSION_TYPE: ${{ github.event.inputs.version }}
5960

example/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
"devDependencies": {
2020
"@eslint/compat": "2.0.2",
21-
"@eslint/js": "^10.0.1",
21+
"@eslint/js": "^9.39.2",
2222
"@hono/mcp": "0.2.3",
2323
"@hono/node-server": "1.19.9",
2424
"@stylistic/eslint-plugin": "^5.8.0",
@@ -27,7 +27,7 @@
2727
"@vitest/coverage-v8": "4.0.18",
2828
"aws-cdk": "2.1106.0",
2929
"esbuild": "0.27.3",
30-
"eslint": "^10.0.0",
30+
"eslint": "^9.39.2",
3131
"eslint-import-resolver-typescript": "4.4.4",
3232
"eslint-plugin-import": "2.32.0",
3333
"eslint-plugin-promise": "7.2.1",

package/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@
4545
},
4646
"devDependencies": {
4747
"@eslint/compat": "2.0.2",
48-
"@eslint/js": "^10.0.1",
48+
"@eslint/js": "^9.39.2",
4949
"@stylistic/eslint-plugin": "^5.8.0",
5050
"@types/node": "25.2.3",
51-
"eslint": "^10.0.0",
51+
"eslint": "^9.39.2",
5252
"eslint-import-resolver-typescript": "4.4.4",
5353
"eslint-plugin-import": "2.32.0",
5454
"eslint-plugin-promise": "7.2.1",

pnpm-lock.yaml

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

update.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if [ $result -ne 0 ]; then
1414
fi
1515
echo ""
1616
pwd
17-
npx -y pnpm@latest self-update && pnpm install && pnpm up -r && pnpm audit --fix && pnpm up -r && pnpm -r --if-present --parallel lint-fix && pnpm -r --if-present --parallel build && pnpm install
17+
npx -y pnpm@latest self-update && pnpm install && pnpm up -r && pnpm audit --fix && pnpm up -r && pnpm -r --if-present --parallel lint-fix && pnpm -r --if-present --parallel build && pnpm install --frozen-lockfile
1818
result=$?
1919
if [ $result -ne 0 ]; then
2020
cd "${CUR}" || exit

0 commit comments

Comments
 (0)