Skip to content

Commit f8e5af2

Browse files
committed
remove solid router
- formatting - clean up deps
1 parent f0818d3 commit f8e5af2

File tree

6 files changed

+1046
-1033
lines changed

6 files changed

+1046
-1033
lines changed

packages/auth-solid-start/package.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,17 @@
2323
"build": "tsc --project tsconfig.json"
2424
},
2525
"devDependencies": {
26-
"@solidjs/start": "^1.0.4",
27-
"@types/cookie": "^0.6.0",
2826
"@types/node": "^20.12.13",
2927
"edgedb": "^1.5.0",
30-
"solid-js": "^1.8.18",
3128
"typescript": "^5.4.5"
3229
},
3330
"peerDependencies": {
3431
"@solidjs/start": "^1.0.4",
35-
"edgedb": "^1.3.6",
36-
"solid-js": "^1.8.18"
32+
"edgedb": "^1.3.6"
3733
},
3834
"dependencies": {
3935
"@edgedb/auth-core": "0.2.1",
40-
"@solidjs/router": "^0.14.1",
36+
"@solidjs/start": "^1.0.4",
4137
"vinxi": "^0.3.14"
4238
}
4339
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
TODO
1+
TODO
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import {
2-
type BuiltinProviderNames,
3-
SolidAuthHelpers,
4-
type SolidAuthOptions,
5-
} from "../shared/index.js"
2+
type BuiltinProviderNames,
3+
SolidAuthHelpers,
4+
type SolidAuthOptions,
5+
} from "../shared/index.js";
66

7-
export * from "@edgedb/auth-core/errors"
8-
export { type BuiltinProviderNames, type SolidAuthOptions }
7+
export * from "@edgedb/auth-core/errors";
8+
export { type BuiltinProviderNames, type SolidAuthOptions };
99

1010
export default function createSolidClientAuth(options: SolidAuthOptions) {
11-
return new SolidClientAuth(options)
11+
return new SolidClientAuth(options);
1212
}
1313

1414
export class SolidClientAuth extends SolidAuthHelpers {}

0 commit comments

Comments
 (0)