Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions actions/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Install Node, pnpm, and dependencies with caching
inputs:
node-version:
description: Node.js version to install
default: '18'
default: '20'
registry-url:
description: Registry to configure for publish
run-install:
Expand All @@ -15,10 +15,10 @@ runs:
using: composite
steps:
- name: Install pnpm
uses: pnpm/action-setup@c3b53f6a16e57305370b4ae5a540c2077a1d50dd # v2.2.4
uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0

- name: Install Node.js ${{ inputs.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ inputs.node-version }}
registry-url: ${{ inputs.registry-url }}
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,19 @@
"@mcous/typescript-config": "workspace:*"
},
"devDependencies": {
"@types/node": "^20.10.8",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"eslint": "8.56.0",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "7.0.2",
"@typescript-eslint/parser": "7.0.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-sonarjs": "0.23.0",
"eslint-plugin-unicorn": "50.0.1",
"eslint-plugin-vitest": "0.3.20",
"prettier": "3.1.1",
"eslint-plugin-sonarjs": "0.24.0",
"eslint-plugin-unicorn": "51.0.1",
"eslint-plugin-vitest": "0.3.22",
"prettier": "3.2.5",
"typescript": "5.3.3",
"vitest": "1.1.3",
"vitest-when": "0.3.0"
"vitest": "1.3.1",
"vitest-when": "0.3.1"
},
"packageManager": "pnpm@8.14.0+sha256.9cebf61abd83f68177b29484da72da9751390eaad46dfc3072d266bfbb1ba7bf"
"packageManager": "pnpm@8.15.4+sha256.cea6d0bdf2de3a0549582da3983c70c92ffc577ff4410cbf190817ddc35137c2"
}
10 changes: 5 additions & 5 deletions packages/create/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mcous/create",
"version": "0.1.1",
"version": "0.1.2",
"description": "Create a new JS project with my base configurations.",
"type": "module",
"exports": {
Expand Down Expand Up @@ -34,13 +34,13 @@
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/npm-registry-fetch": "^8.0.7",
"@types/semver": "^7.5.6",
"type-fest": "^4.9.0"
"@types/semver": "^7.5.8",
"type-fest": "^4.10.3"
},
"dependencies": {
"minimist": "^1.2.8",
"npm-registry-fetch": "^16.1.0",
"semver": "^7.5.4",
"sort-package-json": "^2.6.0"
"semver": "^7.6.0",
"sort-package-json": "^2.8.0"
}
}
2 changes: 1 addition & 1 deletion packages/create/src/__tests__/read-manifest.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ describe('readManifest', () => {

const result = subject.readManifest(directory)

await expect(result).rejects.toThrow(/unexpected token/iu)
await expect(result).rejects.toThrow(/expected property name/iu)
})
})
10 changes: 5 additions & 5 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mcous/eslint-config",
"version": "0.4.3",
"version": "0.4.4",
"description": "My base ESLint configuration.",
"type": "commonjs",
"exports": {
Expand Down Expand Up @@ -36,13 +36,13 @@
}
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">=5.0.0 <7",
"@typescript-eslint/parser": ">=5.0.0 <7",
"@typescript-eslint/eslint-plugin": ">=5.0.0 <8",
"@typescript-eslint/parser": ">=5.0.0 <8",
"eslint": ">=8.0.0 <9",
"eslint-config-prettier": ">=8.0.0 <10",
"eslint-plugin-promise": ">=6.0.0 <7",
"eslint-plugin-sonarjs": ">=0.19.0 <0.24.0",
"eslint-plugin-unicorn": ">=47.0.0 <51",
"eslint-plugin-sonarjs": ">=0.19.0 <0.25",
"eslint-plugin-unicorn": ">=47.0.0 <52",
"eslint-plugin-vitest": ">=0.3.0 <0.4"
}
}
2 changes: 1 addition & 1 deletion packages/typescript-config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ Use the [base config](./base.json) for generic TypeScript projects, including co
"extends": "@mcous/typescript-config/base.json",
"compilerOptions": {
// ...project specific options, like `module` and `target`
}
},
}
```
Loading