Skip to content

Commit e6cf851

Browse files
committed
chore: bump all (dev)Dependencies and fix related usage issues
1 parent f8b9eb8 commit e6cf851

24 files changed

+5089
-7020
lines changed

.github/FUNDING.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@ github:
55
- rx-ts
66
- un-ts
77
patreon: 1stG
8-
open_collective: unts
8+
open_collective: pretty-quick
99
custom:
10+
- https://opencollective.com/prettier-eslint
1011
- https://opencollective.com/1stG
1112
- https://opencollective.com/rxts
12-
- https://afdian.net/@JounQin
13+
- https://opencollective.com/unrs
14+
- https://opencollective.com/unts
15+
- https://afdian.com/a/JounQin

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,12 @@ jobs:
3535
- name: Install Dependencies
3636
run: yarn --immutable
3737

38-
- name: Build and Test
39-
run: yarn run-s build test
38+
- name: Build
39+
if: matrix.node != 14
40+
run: yarn build
41+
42+
- name: Build Test
43+
run: yarn test
4044

4145
- name: Lint
4246
run: yarn lint

.lintstagedrc.js

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

.nano-staged.mjs

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

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18
1+
20

.prettierignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
coverage
2-
lib
3-
/.yarn
1+
.yarn

.simple-git-hooks.js

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

.simple-git-hooks.mjs

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

.yarnrc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ nodeLinker: node-modules
88

99
plugins:
1010
- path: .yarn/plugins/plugin-prepare-lifecycle.cjs
11-
spec: "https://github.com/un-es/yarn-plugin-prepare-lifecycle/releases/download/v0.0.1/index.js"
11+
spec: 'https://github.com/un-es/yarn-plugin-prepare-lifecycle/releases/download/v0.0.1/index.js'
1212
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
13-
spec: "@yarnpkg/plugin-interactive-tools"
13+
spec: '@yarnpkg/plugin-interactive-tools'
1414

1515
yarnPath: .yarn/releases/yarn-3.6.4.cjs

eslint.config.mjs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import base from '@1stg/eslint-config'
2+
3+
export default [
4+
...base,
5+
{
6+
rules: {
7+
'@typescript-eslint/no-duplicate-type-constituents': 'off',
8+
'unicorn-x/prefer-node-protocol': 'off',
9+
},
10+
},
11+
]

0 commit comments

Comments
 (0)