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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
- name: Node setup
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22

- name: pnpm setup
uses: pnpm/action-setup@v3
with:
version: 9
version: 10

- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ jobs:
- name: Node setup
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
- name: pnpm setup
uses: pnpm/action-setup@v3
with:
version: 9
version: 10
- name: Install dependencies
run: |
pnpm i
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ jobs:
- name: Node setup
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
- name: pnpm setup
uses: pnpm/action-setup@v3
with:
version: 9
version: 10
- name: Install dependencies
run: |
pnpm i
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ This repo is meant to be used as a template for typescript monorepo projects. I

This repo has the following prerequisites:

* The latest LTS version of Node (currently 20) is installed.
* The latest LTS version of Node (currently 22) is installed.
* If you are using nvm, you can run `nvm install` or `nvm use` to install or use the correct version, respectively.
* The latest version of `pnpm` (currently 9) is globally installed.
* The latest version of `pnpm` (currently 10) is globally installed.
* Corepack is also currently an option, but note it is [planned to be removed from the default Node installation](https://github.com/nodejs/TSC/pull/1697#issuecomment-2737093616).

Run `pnpm i` from the project root to install dependencies.

Expand Down
24 changes: 0 additions & 24 deletions build/eslint-config-shared/base.cjs

This file was deleted.

120 changes: 0 additions & 120 deletions build/eslint-config-shared/eslint-additions.cjs

This file was deleted.

70 changes: 0 additions & 70 deletions build/eslint-config-shared/formatting.cjs

This file was deleted.

22 changes: 22 additions & 0 deletions build/eslint-config-shared/index.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { jsConfigs } from "./js.mjs";
import { perfectionistConfigs } from "./perfectionist.mjs";
import { reactConfigs } from "./react.mjs";
import { stylisticConfigs } from "./stylistic.mjs";
import { tseslintConfigs } from "./tseslint.mjs";

export default [
...jsConfigs,
...tseslintConfigs,
...reactConfigs,
...perfectionistConfigs,
...stylisticConfigs,
{
linterOptions: {
reportUnusedDisableDirectives: "error",
reportUnusedInlineConfigs: "error",
},
},
{
ignores: ["built/**", "webpacked/**"],
},
];
Loading
Loading