Skip to content

Commit 2285b4e

Browse files
authored
fix: remove it-glob dependency (#1200)
it-glob uses aegir to release so we can't depend on it here, otherwise the aegir dependency on it gets symlinked to the package in the it monorepo which isn't built at the time aegir tries to build it so building fails.
1 parent e0bd5b0 commit 2285b4e

File tree

5 files changed

+69
-8
lines changed

5 files changed

+69
-8
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,6 @@
267267
"fs-extra": "^11.1.0",
268268
"gh-pages": "^5.0.0",
269269
"globby": "^13.1.1",
270-
"it-glob": "^2.0.0",
271270
"kleur": "^4.1.4",
272271
"lilconfig": "^2.0.5",
273272
"listr": "~0.14.2",
@@ -285,6 +284,7 @@
285284
"micromark-extension-gfm-strikethrough": "^1.0.4",
286285
"micromark-extension-gfm-table": "^1.0.5",
287286
"micromark-extension-gfm-task-list-item": "^1.0.3",
287+
"minimatch": "^5.1.0",
288288
"mocha": "^10.0.0",
289289
"npm-package-json-lint": "^6.3.0",
290290
"nyc": "^15.1.0",

src/check-project/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import fs from 'fs-extra'
44
import path from 'path'
55
import { execa } from 'execa'
66
import prompt from 'prompt'
7-
import glob from 'it-glob'
87
import { monorepoManifest } from './manifests/monorepo.js'
98
import { typedESMManifest } from './manifests/typed-esm.js'
109
import { typescriptManifest } from './manifests/typescript.js'
@@ -25,7 +24,8 @@ import Listr from 'listr'
2524
import yargsParser from 'yargs-parser'
2625
import { fileURLToPath } from 'url'
2726
import {
28-
isMonorepoProject
27+
isMonorepoProject,
28+
glob
2929
} from '../utils.js'
3030

3131
const __dirname = path.dirname(fileURLToPath(import.meta.url))

src/release.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
import Listr from 'listr'
44
import { execa } from 'execa'
5-
import { isMonorepoProject, hasDocs } from './utils.js'
5+
import { isMonorepoProject, hasDocs, glob } from './utils.js'
66
import fs from 'fs-extra'
77
import path from 'path'
8-
import glob from 'it-glob'
98
import { calculateSiblingVersion } from './check-project/utils.js'
109

1110
/**

src/test-dependant/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
import path from 'path'
44
import os from 'os'
55
import {
6-
exec
6+
exec,
7+
glob
78
} from '../utils.js'
89
import fs from 'fs-extra'
9-
import glob from 'it-glob'
1010

1111
/**
1212
* @param {string} name

src/utils.js

+63-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import envPaths from 'env-paths'
2020
import lockfile from 'proper-lockfile'
2121
import { fileURLToPath } from 'url'
2222
import Listr from 'listr'
23-
import glob from 'it-glob'
23+
import minimatch from 'minimatch'
2424

2525
const __dirname = path.dirname(fileURLToPath(import.meta.url))
2626
const EnvPaths = envPaths('aegir', { suffix: '' })
@@ -451,3 +451,65 @@ function checkForCircularDependencies (projects) {
451451
}
452452
}
453453
}
454+
455+
/**
456+
* @typedef {object} GlobOptions
457+
* @property {string} [cwd] The current working directory
458+
* @property {boolean} [absolute] If true produces absolute paths (default: false)
459+
* @property {boolean} [nodir] If true yields file paths and skip directories (default: false)
460+
*
461+
* Async iterable filename pattern matcher
462+
*
463+
* @param {string} dir
464+
* @param {string} pattern
465+
* @param {GlobOptions & import('minimatch').IOptions} [options]
466+
* @returns {AsyncGenerator<string, void, undefined>}
467+
*/
468+
export async function * glob (dir, pattern, options = {}) {
469+
const absoluteDir = path.resolve(dir)
470+
const relativeDir = path.relative(options.cwd ?? process.cwd(), dir)
471+
472+
const stats = await fs.stat(absoluteDir)
473+
474+
if (stats.isDirectory()) {
475+
for await (const entry of _glob(absoluteDir, '', pattern, options)) {
476+
yield entry
477+
}
478+
479+
return
480+
}
481+
482+
if (minimatch(relativeDir, pattern, options)) {
483+
yield options.absolute === true ? absoluteDir : relativeDir
484+
}
485+
}
486+
487+
/**
488+
* @param {string} base
489+
* @param {string} dir
490+
* @param {string} pattern
491+
* @param {GlobOptions & import('minimatch').IOptions} options
492+
* @returns {AsyncGenerator<string, void, undefined>}
493+
*/
494+
async function * _glob (base, dir, pattern, options) {
495+
for await (const entry of await fs.opendir(path.join(base, dir))) {
496+
const relativeEntryPath = path.join(dir, entry.name)
497+
const absoluteEntryPath = path.join(base, dir, entry.name)
498+
499+
let match = minimatch(relativeEntryPath, pattern, options)
500+
501+
const isDirectory = entry.isDirectory()
502+
503+
if (isDirectory && options.nodir === true) {
504+
match = false
505+
}
506+
507+
if (match) {
508+
yield options.absolute === true ? absoluteEntryPath : relativeEntryPath
509+
}
510+
511+
if (isDirectory) {
512+
yield * _glob(base, relativeEntryPath, pattern, options)
513+
}
514+
}
515+
}

0 commit comments

Comments
 (0)