Skip to content

Commit 7d50d38

Browse files
authored
chore: hourcekeeping, bump all (dev) deps (#381)
1 parent c894d76 commit 7d50d38

File tree

40 files changed

+7982
-7045
lines changed

40 files changed

+7982
-7045
lines changed

.editorconfig

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
root = true
1+
root=true
22

33
[*]
4-
indent_style = space
5-
indent_size = 2
6-
tab_width = 2
7-
end_of_line = lf
8-
charset = utf-8
9-
trim_trailing_whitespace = true
10-
insert_final_newline = true
4+
indent_style=space
5+
indent_size=2
6+
tab_width=2
7+
end_of_line=lf
8+
charset=utf-8
9+
trim_trailing_whitespace=true
10+
insert_final_newline=true

.env.yarn

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CONFIG_PREFER_PRETTIER=1
2+
NODE_OPTIONS="--no-warnings=ESLintRCWarning"

.eslintignore

Lines changed: 0 additions & 7 deletions
This file was deleted.

.eslintrc

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,7 @@ jobs:
2929
steps:
3030
- uses: actions/checkout@v4
3131

32-
- name: Setup target Node.js to enable Corepack
33-
uses: actions/setup-node@v4
34-
with:
35-
node-version: ${{ matrix.node }}
36-
37-
- name: Enable Corepack
38-
run: corepack enable
39-
40-
- name: Setup Node.js ${{ matrix.node }} with cache
32+
- name: Setup Node.js ${{ matrix.node }}
4133
uses: actions/setup-node@v4
4234
with:
4335
node-version: ${{ matrix.node }}
@@ -46,8 +38,12 @@ jobs:
4638
- name: Install Dependencies
4739
run: yarn --immutable
4840

49-
- name: Build, Lint and Test
50-
run: yarn run-s build lint test typecov
41+
- name: Build and Typecov
42+
run: yarn run-s build typecov
5143
env:
5244
EFF_NO_LINK_RULES: true
5345
PARSER_NO_WATCH: true
46+
47+
- name: Lint and Test
48+
if: ${{ matrix.node != 16}}
49+
run: yarn run-s lint test

.github/workflows/release.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ jobs:
2121
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
2222
fetch-depth: 0
2323

24-
- name: Enable Corepack
25-
run: corepack enable
26-
2724
- name: Setup Node.js LTS
2825
uses: actions/setup-node@v4
2926
with:

.github/workflows/size-limit.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v4
2222

23-
- name: Enable Corepack
24-
run: corepack enable
25-
2623
- name: Setup Node.js LTS
2724
uses: actions/setup-node@v4
2825
with:

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
.type-coverage
33
.yarn/*
44
!.yarn/plugins
5+
!.yarn/releases
56
lib
67
node_modules
78
*.log
9+
.npmrc

.lintstagedrc.cjs

Lines changed: 0 additions & 1 deletion
This file was deleted.

.lintstagedrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from '@1stg/lint-staged/tsc'

0 commit comments

Comments
 (0)