Skip to content

Commit 7178b5f

Browse files
committedFeb 27, 2025··
feat: add sync version of loadPackageJSON & isPackageListed
1 parent 1afa5be commit 7178b5f

File tree

4 files changed

+33
-13
lines changed

4 files changed

+33
-13
lines changed
 

‎src/index.ts

+14-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import type { PackageJson } from 'pkg-types'
22
import fs from 'node:fs'
3-
import fsp from 'node:fs/promises'
43
import { createRequire } from 'node:module'
54
import { dirname, join, win32 } from 'node:path'
65
import process from 'node:process'
7-
import { findUp } from 'find-up-simple'
6+
import { findUp as _findUp, findUpSync } from 'find-up-simple'
87
import { interopDefault, resolvePathSync } from 'mlly'
98
import { quansyncMacro } from 'quansync'
109

@@ -134,15 +133,22 @@ function searchPackageJSON(dir: string) {
134133
return packageJsonPath
135134
}
136135

137-
export async function loadPackageJSON(cwd = process.cwd()): Promise<PackageJson | null> {
138-
const path = await findUp('package.json', { cwd } as any)
136+
const findUp = quansyncMacro({
137+
sync: findUpSync,
138+
async: _findUp,
139+
})
140+
141+
export const loadPackageJSON = quansyncMacro(async function (cwd = process.cwd()): Promise<PackageJson | null> {
142+
const path = await findUp('package.json', { cwd })
139143
if (!path || !fs.existsSync(path))
140144
return null
141-
return JSON.parse(await fsp.readFile(path, 'utf-8'))
142-
}
145+
return JSON.parse(await readFile(path))
146+
})
147+
export const loadPackageJSONSync = loadPackageJSON.sync
143148

144-
export async function isPackageListed(name: string, cwd?: string) {
149+
export const isPackageListed = quansyncMacro(async function (name: string, cwd?: string) {
145150
const pkg = await loadPackageJSON(cwd) || {}
146151

147152
return (name in (pkg.dependencies || {})) || (name in (pkg.devDependencies || {}))
148-
}
153+
})
154+
export const isPackageListedSync = isPackageListed.sync

‎test/cjs.cjs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const { join } = require('node:path')
2-
const { getPackageInfo, isPackageExists, resolveModule, importModule, loadPackageJSON, getPackageInfoSync } = require('../dist/index.cjs')
2+
const { getPackageInfo, isPackageExists, resolveModule, importModule, loadPackageJSON, getPackageInfoSync, loadPackageJSONSync, isPackageListed, isPackageListedSync } = require('../dist/index.cjs')
33
const pkgJSON = require('../package.json')
44

55
console.warn('===== CJS =====')
@@ -30,6 +30,10 @@ async function run() {
3030
expect(slash('foo\\bar')).to.eq('foo/bar')
3131

3232
expect(await loadPackageJSON()).to.eql(pkgJSON)
33+
expect(loadPackageJSONSync()).deep.eq(pkgJSON)
34+
35+
expect(await isPackageListed('eslint')).eq(true)
36+
expect(isPackageListedSync('eslint')).eq(true)
3337
}
3438

3539
run()

‎test/esm.mjs

+7-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { promises as fs } from 'node:fs'
22
import { join } from 'node:path'
33
import { expect } from 'chai'
44
// eslint-disable-next-line antfu/no-import-dist
5-
import { getPackageInfo, getPackageInfoSync, importModule, isPackageExists, loadPackageJSON, resolveModule } from '../dist/index.mjs'
5+
import { getPackageInfo, getPackageInfoSync, importModule, isPackageExists, isPackageListed, isPackageListedSync, loadPackageJSON, loadPackageJSONSync, resolveModule } from '../dist/index.mjs'
66

77
console.warn('===== ESM =====')
88

@@ -29,7 +29,12 @@ async function run() {
2929
const { slash } = (await importModule('@antfu/utils'))
3030
expect(slash('foo\\bar')).to.eq('foo/bar')
3131

32-
expect(await loadPackageJSON()).to.eql(JSON.parse(await fs.readFile('./package.json'), 'utf-8'))
32+
const json = await loadPackageJSON()
33+
expect(json).to.eql(JSON.parse(await fs.readFile('./package.json', 'utf-8')))
34+
expect(loadPackageJSONSync()).deep.eq(json)
35+
36+
expect(await isPackageListed('eslint')).eq(true)
37+
expect(isPackageListedSync('eslint')).eq(true)
3338
}
3439

3540
run()

‎test/source.test.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { promises as fs } from 'node:fs'
22
import { join } from 'node:path'
33
import { expect, it } from 'vitest'
4-
import { getPackageInfo, getPackageInfoSync, importModule, isPackageExists, loadPackageJSON, resolveModule } from '../src'
4+
import { getPackageInfo, getPackageInfoSync, importModule, isPackageExists, isPackageListed, isPackageListedSync, loadPackageJSON, loadPackageJSONSync, resolveModule } from '../src'
55

66
it('test by source', async () => {
77
expect(resolveModule('@antfu/utils')).to.contain(join('node_modules', '@antfu', 'utils'))
@@ -26,5 +26,10 @@ it('test by source', async () => {
2626
const { slash } = (await importModule('@antfu/utils'))
2727
expect(slash('foo\\bar')).to.eq('foo/bar')
2828

29-
expect(await loadPackageJSON()).to.eql(JSON.parse(await fs.readFile('./package.json', 'utf-8')))
29+
const json = await loadPackageJSON()
30+
expect(json).to.eql(JSON.parse(await fs.readFile('./package.json', 'utf-8')))
31+
expect(loadPackageJSONSync()).deep.eq(json)
32+
33+
expect(await isPackageListed('eslint')).eq(true)
34+
expect(isPackageListedSync('eslint')).eq(true)
3035
})

0 commit comments

Comments
 (0)
Please sign in to comment.