File: use-node-glob.patch

package info (click to toggle)
node-gyp 12.1.0%2B~6.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,444 kB
  • sloc: python: 24,973; javascript: 5,261; lisp: 258; cs: 186; ansic: 46; cpp: 29; sh: 23; makefile: 7
file content (15 lines) | stat: -rw-r--r-- 491 bytes parent folder | download
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'