Skip to content

Commit d639996

Browse files
RichiCoder1markerikson
authored andcommitted
chore(build): swap in tsdx (#212)
* chore(build): swap in tsdx * Fix now-incorrect use of createAction * Silence ts-jest warnings about unused variables * Fix up types in tests enough to pass * Fix UMD config to match existing behavior - Removed "externals" so that all libs get bundled in - Fixed dev UMD output file name * Tweak devtools options setup to hopefully work better in IE11 * 0.9.0-alpha.0 * Fix CJS output - Removed wrong filename causing CJS dev build to be overwritten - Change package `main` field to point to CJS index file * Update TSDX to latest * Add api-extractor * Update dist inclusion and typings file * Revert "Tweak devtools options setup to hopefully work better in IE11" This reverts commit 0be4ea9. Apparently IE11 doesn't support Object.assign(). Oops! * Update Immer to 4.0 * Update redux-thunk to latest * Silence a bizarre TSLint "rule not found" error Prevents a whole bunch of repeats of this error: Definition for rule '@typescript-eslint/no-angle-bracket-type-assertion' was not found @typescript-eslint/no-angle-bracket-type-assertion * Remove api-extractor * Try to fix CI failures under TS 3.3/3.4, attempt 1 * 0.9.0-alpha.1
1 parent c2a785c commit d639996

12 files changed

+4110
-2909
lines changed

.babelrc

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

.eslintignore

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

.eslintrc.js

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
module.exports = {
2-
extends: 'react-app',
2+
extends: [
3+
'react-app',
4+
'prettier/@typescript-eslint',
5+
'plugin:prettier/recommended'
6+
],
37
parser: '@typescript-eslint/parser',
4-
58
rules: {
69
'jsx-a11y/href-no-hash': 'off',
710
// Taken care of by TypeScript's `noUnusedLocals` / `noUnusedParameters`
8-
'no-unused-vars': 'off'
11+
'no-unused-vars': 'off',
12+
'@typescript-eslint/no-unused-vars': 'off',
13+
// Silence some bizarre "rule not found" TSLint error
14+
'@typescript-eslint/no-angle-bracket-type-assertion': 'off'
915
}
1016
}

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ lib
66
es
77

88

9-
.idea/
9+
.idea/
10+
11+
.rts2*

0 commit comments

Comments
 (0)