1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: use glob instead of tinyglobby, which isn't in debian
Author: Jérémy Lal <kapouer@melix.org>
Last-Update: 2025-08-20
Forwarded: not-needed
--- a/lib/build.js
+++ b/lib/build.js
@@ -3,7 +3,7 @@
const gracefulFs = require('graceful-fs')
const fs = gracefulFs.promises
const path = require('path')
-const { glob } = require('tinyglobby')
+const { glob } = require('glob')
const log = require('./log')
const which = require('which')
const win = process.platform === 'win32'
|