forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpack-util.cjs
More file actions
158 lines (142 loc) · 4 KB
/
Copy pathpack-util.cjs
File metadata and controls
158 lines (142 loc) · 4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
const { execSync, execFileSync, spawn } = require('child_process')
const { existsSync } = require('fs')
const globOrig = require('glob')
const { join } = require('path')
const { promisify } = require('util')
const glob = promisify(globOrig)
exports.glob = glob
const NEXT_DIR = join(__dirname, '..')
exports.NEXT_DIR = NEXT_DIR
/**
* @param {string} title
* @param {string | string[]} command
* @param {ExecSyncOptions} [opts]
* @returns {string}
*/
function exec(title, command, opts) {
if (Array.isArray(command)) {
logCommand(title, command)
return execFileSync(command[0], command.slice(1), {
stdio: 'inherit',
cwd: NEXT_DIR,
...opts,
})
} else {
logCommand(title, command)
return execSync(command, {
stdio: 'inherit',
cwd: NEXT_DIR,
...opts,
})
}
}
exports.exec = exec
/**
* @param {string} title
* @param {string | string[]} command
* @param {SpawnOptions} [opts]
*/
function execAsyncWithOutput(title, command, opts) {
logCommand(title, command)
const proc = spawn(command[0], command.slice(1), {
encoding: 'utf8',
stdio: ['inherit', 'pipe', 'pipe'],
cwd: NEXT_DIR,
...opts,
})
const stdout = []
proc.stdout.on('data', (data) => {
process.stdout.write(data)
stdout.push(data)
})
const stderr = []
proc.stderr.on('data', (data) => {
process.stderr.write(data)
stderr.push(data)
})
return new Promise((resolve, reject) => {
proc.on('exit', (code) => {
if (code === 0) {
return resolve({
stdout: Buffer.concat(stdout),
stderr: Buffer.concat(stderr),
})
}
const err = new Error(
`Command failed with exit code ${code}: ${prettyCommand(command)}`
)
err.code = code
err.stdout = Buffer.concat(stdout)
err.stderr = Buffer.concat(stderr)
reject(err)
})
})
}
exports.execAsyncWithOutput = execAsyncWithOutput
/**
* @param {string | string[]} command
*/
function prettyCommand(command) {
if (Array.isArray(command)) command = command.join(' ')
return command.replace(/ -- .*/, ' -- …')
}
/**
* @param {string} title
* @param {string | string[]} [command]
*/
function logCommand(title, command) {
if (command) {
const pretty = prettyCommand(command)
console.log(`\n\x1b[1;4m${title}\x1b[0m\n> \x1b[1m${pretty}\x1b[0m\n`)
} else {
console.log(`\n\x1b[1;4m${title}\x1b[0m\n`)
}
}
exports.logCommand = logCommand
/**
* @param {string[]} args
* @param {string} name
* @returns {boolean}
*/
function booleanArg(args, name) {
const index = args.indexOf(name)
if (index === -1) return false
args.splice(index, 1)
return true
}
exports.booleanArg = booleanArg
const DEFAULT_GLOBS = ['**', '!target', '!node_modules', '!crates', '!.turbo']
const FORCED_GLOBS = ['package.json', 'README*', 'LICENSE*', 'LICENCE*']
/**
* @param {string} path
* @returns {Promise<string[]>}
*/
async function packageFiles(path) {
const { files = DEFAULT_GLOBS, main, bin } = require(`${path}/package.json`)
const allFiles = files.concat(
FORCED_GLOBS,
main ?? [],
Object.values(bin ?? {})
)
const isGlob = (f) => f.includes('*') || f.startsWith('!')
const simpleFiles = allFiles
.filter((f) => !isGlob(f) && existsSync(join(path, f)))
.map((f) => f.replace(/^\.\//, ''))
const globFiles = allFiles.filter(isGlob)
const globbedFiles = await glob(`+(${globFiles.join('|')})`, { cwd: path })
const packageFiles = [...globbedFiles, ...simpleFiles].sort()
const set = new Set()
return packageFiles.filter((f) => {
if (set.has(f)) return false
// We add the full path, but check for parent directories too.
// This catches the case where the whole directory is added and then a single file from the directory.
// The sorting before ensures that the directory comes before the files inside of the directory.
set.add(f)
while (f.includes('/')) {
f = f.replace(/\/[^/]+$/, '')
if (set.has(f)) return false
}
return true
})
}
exports.packageFiles = packageFiles