File tree Expand file tree Collapse file tree 6 files changed +7
-4
lines changed
Expand file tree Collapse file tree 6 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ export const alias = {
1616 '@vitejs/devtools-kit/constants' : r ( 'kit/src/constants.ts' ) ,
1717 '@vitejs/devtools-kit/utils/events' : r ( 'kit/src/utils/events.ts' ) ,
1818 '@vitejs/devtools-kit/utils/nanoid' : r ( 'kit/src/utils/nanoid.ts' ) ,
19+ '@vitejs/devtools-kit/utils/human-id' : r ( 'kit/src/utils/human-id.ts' ) ,
1920 '@vitejs/devtools-kit/utils/shared-state' : r ( 'kit/src/utils/shared-state.ts' ) ,
2021 '@vitejs/devtools-kit' : r ( 'kit/src/index.ts' ) ,
2122 '@vitejs/devtools-rolldown' : r ( 'rolldown/src/index.ts' ) ,
Original file line number Diff line number Diff line change 107107 "@clack/core" : " 1.1.0" ,
108108 "@clack/prompts" : " 1.1.0" ,
109109 "ansis" : " 4.2.0" ,
110- "human-id" : " 4.1.3" ,
111110 "get-port-please" : " 3.2.0"
112111 }
113112}
Original file line number Diff line number Diff line change 11import type { DevToolsNodeRpcSession } from '@vitejs/devtools-kit'
22import type { SharedState } from '@vitejs/devtools-kit/utils/shared-state'
33import type { InternalAnonymousAuthStorage } from './context-internal'
4- import { humanId } from 'human-id'
4+ import { humanId } from '@vitejs/devtools-kit/utils/ human-id'
55
66export interface PendingAuthRequest {
77 clientAuthId : string
Original file line number Diff line number Diff line change 2323 "./client" : " ./dist/client.js" ,
2424 "./constants" : " ./dist/constants.js" ,
2525 "./utils/events" : " ./dist/utils/events.js" ,
26+ "./utils/human-id" : " ./dist/utils/human-id.js" ,
2627 "./utils/nanoid" : " ./dist/utils/nanoid.js" ,
2728 "./utils/shared-state" : " ./dist/utils/shared-state.js" ,
2829 "./package.json" : " ./package.json"
5253 "vite" : " catalog:build"
5354 },
5455 "inlinedDependencies" : {
55- "human-id" : " 4.1.3" ,
5656 "ohash" : " 2.0.11" ,
57- "ua-parser-modern" : " 0.1.1"
57+ "ua-parser-modern" : " 0.1.1" ,
58+ "human-id" : " 4.1.3"
5859 }
5960}
Original file line number Diff line number Diff line change 1+ export { humanId } from 'human-id'
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ export default defineConfig({
66 'constants' : 'src/constants.ts' ,
77 'utils/events' : 'src/utils/events.ts' ,
88 'utils/nanoid' : 'src/utils/nanoid.ts' ,
9+ 'utils/human-id' : 'src/utils/human-id.ts' ,
910 'utils/shared-state' : 'src/utils/shared-state.ts' ,
1011 'client' : 'src/client/index.ts' ,
1112 } ,
You can’t perform that action at this time.
0 commit comments