Skip to content

Commit b2dd3a4

Browse files
authored
Merge pull request #13 from webdeveric/chore/deps
Updated dependencies
2 parents 1155417 + fbac6a4 commit b2dd3a4

10 files changed

Lines changed: 1011 additions & 1000 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Use Node.js
2626
uses: actions/setup-node@v6
2727
with:
28-
node-version-file: '.nvmrc'
28+
node-version-file: '.node-version'
2929
cache: 'pnpm'
3030

3131
- name: Installing dependencies

.github/workflows/pr-commit-messages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Use Node.js
2323
uses: actions/setup-node@v6
2424
with:
25-
node-version-file: '.nvmrc'
25+
node-version-file: '.node-version'
2626
cache: 'pnpm'
2727

2828
- name: Installing dependencies

.github/workflows/release.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,19 @@ on:
55
branches:
66
- main
77

8+
concurrency: release
9+
10+
env:
11+
HUSKY: 0
12+
813
permissions:
914
contents: read # for checkout
1015

1116
jobs:
1217
release:
1318
name: Release
1419
runs-on: ubuntu-24.04
20+
environment: release
1521
permissions:
1622
contents: write # to be able to publish a GitHub release
1723
issues: write # to be able to comment on released issues
@@ -29,9 +35,14 @@ jobs:
2935
- name: Use Node.js
3036
uses: actions/setup-node@v6
3137
with:
32-
node-version-file: '.nvmrc'
38+
node-version-file: '.node-version'
3339
cache: 'pnpm'
3440

41+
- name: Install latest npm
42+
run: |
43+
npm install -g npm@latest
44+
npm --version
45+
3546
- name: Installing dependencies
3647
run: pnpm install --frozen-lockfile
3748

@@ -42,6 +53,4 @@ jobs:
4253
- name: Release
4354
env:
4455
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
46-
NPM_CONFIG_PROVENANCE: true
47-
run: npx --no semantic-release
56+
run: pnpm exec semantic-release
File renamed without changes.

cspell.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"version": "0.2",
33
"language": "en-US",
4-
"words": ["commitlint", "nvmrc", "overlined", "Uncapitalize", "unrs-resolver", "webdeveric"],
4+
"words": ["commitlint", "esbuild", "nvmrc", "overlined", "Uncapitalize", "unrs-resolver", "webdeveric"],
55
"flagWords": [],
66
"ignorePaths": ["pnpm-lock.yaml", "node_modules", ".vscode"]
77
}

package.json

Lines changed: 14 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"url": "https://github.com/webdeveric/styled-json-console/issues"
4747
},
4848
"homepage": "https://github.com/webdeveric/styled-json-console/#readme",
49-
"packageManager": "pnpm@10.30.2+sha512.36cdc707e7b7940a988c9c1ecf88d084f8514b5c3f085f53a2e244c2921d3b2545bc20dd4ebe1fc245feec463bb298aecea7a63ed1f7680b877dc6379d8d0cb4",
49+
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
5050
"scripts": {
5151
"clean": "rimraf ./dist/ ./cache/",
5252
"prebuild": "pnpm clean",
@@ -55,41 +55,35 @@
5555
"lint": "eslint ./*.{js,cjs,mjs,ts,cts,mts} ./src/ ./example/ --ext .ts",
5656
"test": "vitest --typecheck",
5757
"coverage": "vitest run --coverage --typecheck",
58-
"validate": "validate-package-exports --check --verify",
58+
"validate": "validate-package-exports --check",
5959
"spellcheck": "cspell './{.github,src,example,test}/**/*.{ts,json}' './*.{md,mjs,mts}' './package.json' --no-progress",
6060
"prepublishOnly": "pnpm typecheck && pnpm spellcheck && pnpm lint && pnpm coverage && pnpm build && pnpm validate",
6161
"format": "prettier --write ./*.{js,json,md} ./src/",
6262
"prepare": "husky"
6363
},
6464
"prettier": "@webdeveric/prettier-config",
6565
"devDependencies": {
66-
"@commitlint/config-conventional": "^20.4.2",
67-
"@commitlint/types": "^20.4.0",
68-
"@types/node": "^22.19.11",
69-
"@vitest/coverage-v8": "^4.0.18",
66+
"@commitlint/config-conventional": "^20.5.0",
67+
"@commitlint/types": "^20.5.0",
68+
"@types/node": "^22.19.15",
69+
"@vitest/coverage-v8": "^4.1.2",
7070
"@webdeveric/eslint-config-ts": "^0.12.0",
71-
"@webdeveric/prettier-config": "^0.3.0",
72-
"commitlint": "^20.4.2",
73-
"commitlint-plugin-cspell": "^0.6.0",
74-
"conventional-changelog-conventionalcommits": "^9.1.0",
71+
"@webdeveric/prettier-config": "^0.4.0",
72+
"commitlint": "^20.5.0",
73+
"commitlint-plugin-cspell": "^0.7.0",
74+
"conventional-changelog-conventionalcommits": "^9.3.1",
7575
"cspell": "^9.7.0",
7676
"eslint": "^8.57.1",
7777
"eslint-config-prettier": "^10.1.8",
7878
"eslint-import-resolver-typescript": "^4.4.4",
7979
"eslint-plugin-import": "^2.32.0",
8080
"husky": "^9.1.7",
81-
"lint-staged": "^16.2.7",
81+
"lint-staged": "^16.4.0",
8282
"prettier": "^3.8.1",
8383
"rimraf": "^6.1.3",
8484
"semantic-release": "^25.0.3",
85-
"typescript": "^5.9.3",
86-
"validate-package-exports": "^0.19.0",
87-
"vitest": "^4.0.18"
88-
},
89-
"pnpm": {
90-
"onlyBuiltDependencies": [
91-
"esbuild",
92-
"unrs-resolver"
93-
]
85+
"typescript": "^6.0.2",
86+
"validate-package-exports": "^0.23.0",
87+
"vitest": "^4.1.2"
9488
}
9589
}

0 commit comments

Comments
 (0)