Skip to content

Commit

Permalink
remove solid router
Browse files Browse the repository at this point in the history
- formatting
- clean up deps
  • Loading branch information
Huliiiiii committed Jul 18, 2024
1 parent f0818d3 commit f8e5af2
Show file tree
Hide file tree
Showing 6 changed files with 1,046 additions and 1,033 deletions.
8 changes: 2 additions & 6 deletions packages/auth-solid-start/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,17 @@
"build": "tsc --project tsconfig.json"
},
"devDependencies": {
"@solidjs/start": "^1.0.4",
"@types/cookie": "^0.6.0",
"@types/node": "^20.12.13",
"edgedb": "^1.5.0",
"solid-js": "^1.8.18",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@solidjs/start": "^1.0.4",
"edgedb": "^1.3.6",
"solid-js": "^1.8.18"
"edgedb": "^1.3.6"
},
"dependencies": {
"@edgedb/auth-core": "0.2.1",
"@solidjs/router": "^0.14.1",
"@solidjs/start": "^1.0.4",
"vinxi": "^0.3.14"
}
}
2 changes: 1 addition & 1 deletion packages/auth-solid-start/readme.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
TODO
TODO
14 changes: 7 additions & 7 deletions packages/auth-solid-start/src/client/index.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import {
type BuiltinProviderNames,
SolidAuthHelpers,
type SolidAuthOptions,
} from "../shared/index.js"
type BuiltinProviderNames,
SolidAuthHelpers,
type SolidAuthOptions,
} from "../shared/index.js";

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

export default function createSolidClientAuth(options: SolidAuthOptions) {
return new SolidClientAuth(options)
return new SolidClientAuth(options);
}

export class SolidClientAuth extends SolidAuthHelpers {}
Loading

0 comments on commit f8e5af2

Please sign in to comment.