File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
server/api/registry/analysis Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import { parseRepoUrl } from '#shared/utils/git-providers'
2626import { encodePackageName } from '#shared/utils/npm'
2727import { flattenFileTree } from '#server/utils/import-resolver'
2828import { getPackageFileTree } from '#server/utils/file-tree'
29- import { getLatestVersion , getLatestVersionBatch } from 'fast-npm-meta'
29+ import { getLatestVersionBatch } from 'fast-npm-meta'
3030
3131export default defineCachedEventHandler (
3232 async event => {
Original file line number Diff line number Diff line change 22 * Package analysis utilities for detecting module format and TypeScript support
33 */
44
5+ import { getLatestVersion } from 'fast-npm-meta'
6+
57export type ModuleFormat = 'esm' | 'cjs' | 'dual' | 'unknown'
68
79export type TypesStatus =
You can’t perform that action at this time.
0 commit comments