Skip to content

Commit 401ff6b

Browse files
committed
chore: update to latest
1 parent acb1bc8 commit 401ff6b

File tree

18 files changed

+13280
-9283
lines changed

18 files changed

+13280
-9283
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable no-undef */
22
module.exports = {
3-
ignorePatterns: ["dtslint/", "lib/", "es6/", "build/", "react/demo/"],
3+
ignorePatterns: ["dtslint/", "lib/", "es6/", "build/", "react/demo/", "dist/"],
44
parser: "@typescript-eslint/parser",
55
parserOptions: {
66
ecmaVersion: 2018,

.github/workflows/test.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,3 @@ jobs:
2222
yarn run ci
2323
env:
2424
CI: "true"
25-
26-
- uses: codecov/codecov-action@v1.0.3
27-
with:
28-
token: ${{secrets.CODECOV_TOKEN}}

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/.yarn/*
2+
!/.yarn/releases
3+
!/.yarn/plugins
4+
!/.yarn/sdks
5+
16
lib/
27
node_modules/
38
.idea/

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Lines changed: 363 additions & 0 deletions
Large diffs are not rendered by default.

.yarn/plugins/@yarnpkg/plugin-typescript.cjs

Lines changed: 9 additions & 0 deletions
Large diffs are not rendered by default.

.yarn/releases/yarn-3.1.1.cjs

Lines changed: 768 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
nodeLinker: node-modules
2+
3+
plugins:
4+
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
5+
spec: "@yarnpkg/plugin-interactive-tools"
6+
- path: .yarn/plugins/@yarnpkg/plugin-typescript.cjs
7+
spec: "@yarnpkg/plugin-typescript"
8+
9+
yarnPath: .yarn/releases/yarn-3.1.1.cjs

codecov.yml

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

jest.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ module.exports = {
1616
verbose: true,
1717
globals: {
1818
"ts-jest": {
19-
tsconfig: "<rootDir>/tsconfig.jest.json",
20-
compiler: "ttypescript"
19+
tsconfig: "<rootDir>/tsconfig.jest.json"
2120
}
2221
}
2322
}

package.json

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,22 @@
1515
"autofix": "ultra -r autofix",
1616
"lint": "ultra -r lint",
1717
"tc": "ultra -r tc",
18-
"postinstall": "husky install",
18+
"postinstall": "husky install && ts-patch install -s",
1919
"version:alpha": "lerna version prerelease --conventional-commits --preid=alpha",
2020
"version:preminor": "lerna version preminor --conventional-commits",
2121
"version:minor": "lerna version minor --conventional-commits",
2222
"version:prepatch": "lerna version prepatch --conventional-commits",
2323
"version:patch": "lerna version patch --conventional-commits",
2424
"version:graduate": "lerna version --conventional-commits --conventional-graduate",
2525
"commit": "cz",
26-
"update": "ncu -x chalk,typescript"
26+
"ets:rimraf": "cd $INIT_CWD && rimraf",
27+
"ets:tsc": "cd $INIT_CWD && tsc",
28+
"ets:eslint": "cd $INIT_CWD && eslint",
29+
"ets:prettier": "cd $INIT_CWD && prettier",
30+
"ets:concurrently": "cd $INIT_CWD && concurrently",
31+
"ets:build-utils": "cd $INIT_CWD && build-utils",
32+
"ets:madge": "cd $INIT_CWD && madge",
33+
"ets:ts-node": "cd $INIT_CWD && ts-node"
2734
},
2835
"config": {
2936
"commitizen": {
@@ -45,9 +52,9 @@
4552
"@typescript-eslint/parser": "^5.9.0",
4653
"babel-plugin-annotate-pure-calls": "^0.4.0",
4754
"chalk": "^4.1.2",
55+
"concurrently": "^7.0.0",
4856
"cpx": "^1.5.0",
4957
"cz-conventional-changelog": "^3.3.0",
50-
"dtslint": "github:gcanti/dtslint",
5158
"eslint": "^8.6.0",
5259
"eslint-config-prettier": "^8.3.0",
5360
"eslint-import-resolver-typescript": "^2.5.0",
@@ -57,8 +64,6 @@
5764
"eslint-plugin-prettier": "^4.0.0",
5865
"eslint-plugin-simple-import-sort": "^7.0.0",
5966
"eslint-plugin-sort-destructure-keys": "^1.4.0",
60-
"fast-check": "^2.20.0",
61-
"fast-equals": "^2.0.4",
6267
"fast-safe-stringify": "^2.1.1",
6368
"glob": "^7.2.0",
6469
"husky": "7.0.4",
@@ -69,10 +74,9 @@
6974
"reflect-metadata": "^0.1.13",
7075
"ts-jest": "^27.1.2",
7176
"ts-node": "^10.4.0",
72-
"ttypescript": "^1.5.13",
73-
"typescript": "4.4.3",
74-
"ultra-runner": "^3.10.5",
75-
"yarn-deduplicate": "^3.1.0"
77+
"ts-patch": "^2.0.1",
78+
"typescript": "4.5.4",
79+
"ultra-runner": "^3.10.5"
7680
},
77-
"dependencies": {}
78-
}
81+
"packageManager": "yarn@3.1.1"
82+
}

0 commit comments

Comments
 (0)