Skip to content

Commit f00897f

Browse files
committed
fix: update all depencies
Ignored a single line of bad TypeScript in the misconfigured-client.test.ts file to get the tests passing.
1 parent 107507d commit f00897f

File tree

3 files changed

+123
-116
lines changed

3 files changed

+123
-116
lines changed

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@
9898
"lib": "lib"
9999
},
100100
"dependencies": {
101-
"@feathersjs/adapter-commons": "^4.4.1",
102-
"@feathersjs/commons": "^4.4.1",
103-
"@feathersjs/errors": "^4.4.1",
101+
"@feathersjs/adapter-commons": "^4.4.3",
102+
"@feathersjs/commons": "^4.4.3",
103+
"@feathersjs/errors": "^4.4.3",
104104
"@types/feathersjs__feathers": "^3.1.5",
105105
"@types/inflection": "^1.5.28",
106106
"@types/lodash": "^4.14.149",
@@ -110,7 +110,7 @@
110110
"debug": "^4.1.1",
111111
"events": "^3.0.0",
112112
"fast-copy": "^2.0.4",
113-
"fast-json-stable-stringify": "^2.0.0",
113+
"fast-json-stable-stringify": "^2.1.0",
114114
"inflection": "^1.12.0",
115115
"jwt-decode": "^2.2.0",
116116
"lodash": "^4.17.15",
@@ -121,21 +121,21 @@
121121
"lodash.pick": "^4.4.0",
122122
"lodash.trim": "^4.5.1",
123123
"serialize-error": "^5.0.0",
124-
"sift": "^9.0.0",
124+
"sift": "^9.0.4",
125125
"steal-typescript": "^0.5.0",
126126
"vuepress-theme-default-prefers-color-scheme": "^1.0.3"
127127
},
128128
"devDependencies": {
129-
"@feathersjs/authentication-client": "^4.4.1",
129+
"@feathersjs/authentication-client": "^4.4.3",
130130
"@feathersjs/authentication-jwt": "^2.0.10",
131-
"@feathersjs/client": "^4.4.1",
132-
"@feathersjs/feathers": "^4.4.1",
133-
"@feathersjs/rest-client": "^4.4.1",
134-
"@feathersjs/socketio-client": "^4.4.1",
135-
"@types/chai": "^4.2.5",
131+
"@feathersjs/client": "^4.4.3",
132+
"@feathersjs/feathers": "^4.4.3",
133+
"@feathersjs/rest-client": "^4.4.3",
134+
"@feathersjs/socketio-client": "^4.4.3",
135+
"@types/chai": "^4.2.7",
136136
"@types/mocha": "^5.2.7",
137-
"@typescript-eslint/eslint-plugin": "^2.9.0",
138-
"@typescript-eslint/parser": "^2.9.0",
137+
"@typescript-eslint/eslint-plugin": "^2.12.0",
138+
"@typescript-eslint/parser": "^2.12.0",
139139
"@vue/eslint-config-prettier": "^6.0.0",
140140
"@vue/eslint-config-typescript": "^5.0.1",
141141
"@vue/test-utils": "^1.0.0-beta.30",
@@ -153,7 +153,7 @@
153153
"deep-object-diff": "^1.1.0",
154154
"eslint": "^6.7.1",
155155
"eslint-config-prettier": "^6.7.0",
156-
"eslint-plugin-prettier": "^3.1.1",
156+
"eslint-plugin-prettier": "^3.1.2",
157157
"eslint-plugin-vue": "^6.0.1",
158158
"feathers-memory": "^4.1.0",
159159
"istanbul": "^1.1.0-alpha.1",
@@ -169,7 +169,7 @@
169169
"steal-mocha": "^2.0.1",
170170
"testee": "^0.9.1",
171171
"ts-node": "^8.5.2",
172-
"typescript": "^3.7.2",
172+
"typescript": "^3.7.3",
173173
"vue": "^2.6.11",
174174
"vue-server-renderer": "^2.6.11",
175175
"vue-template-compiler": "^2.6.11",

test/service-module/misconfigured-client.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
/* eslint @typescript-eslint/ban-ts-ignore:0 */
12
import { assert } from 'chai'
23
import feathersVuex from '../../src/index'
34
import feathers from '@feathersjs/client'
45
import auth from '@feathersjs/authentication-client'
56

7+
// @ts-ignore
68
const feathersClient = feathers().configure(auth())
79

810
describe('Service Module - Bad Client Setup', () => {
@@ -12,7 +14,7 @@ describe('Service Module - Bad Client Setup', () => {
1214
})
1315
class MisconfiguredTask extends BaseModel {
1416
public static modelName = 'MisconfiguredTask'
15-
public static test: boolean = true
17+
public static test = true
1618
}
1719

1820
try {

0 commit comments

Comments
 (0)