-
Notifications
You must be signed in to change notification settings - Fork 293
/
Copy pathuv.js
83 lines (74 loc) · 2.08 KB
/
uv.js
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
const fse = require('fs-extra');
const path = require('path');
const spawn = require('child-process-ext/spawn');
const semver = require('semver');
async function getUvVersion() {
try {
const res = await spawn('uv', ['--version'], {
cwd: this.servicePath,
});
const stdoutBuffer =
(res.stdoutBuffer && res.stdoutBuffer.toString().trim()) || '';
const version = stdoutBuffer.split(' ')[1];
if (semver.valid(version)) {
return version;
} else {
throw new this.serverless.classes.Error(
`Unable to parse uv version!`,
'PYTHON_REQUIREMENTS_UV_VERSION_ERROR'
);
}
} catch (e) {
const stderrBufferContent =
(e.stderrBuffer && e.stderrBuffer.toString()) || '';
if (stderrBufferContent.includes('command not found')) {
throw new this.serverless.classes.Error(
`uv not found! Install it according to the uv docs.`,
'PYTHON_REQUIREMENTS_UV_NOT_FOUND'
);
} else {
throw e;
}
}
}
/**
* uv to requirements.txt
*/
async function uvToRequirements() {
if (
!this.options.useUv ||
!fse.existsSync(path.join(this.servicePath, 'uv.lock'))
) {
return;
}
let generateRequirementsProgress;
if (this.progress && this.log) {
generateRequirementsProgress = this.progress.get(
'python-generate-requirements-uv'
);
generateRequirementsProgress.update(
'Generating requirements.txt from uv.lock'
);
this.log.info('Generating requirements.txt from uv.lock');
} else {
this.serverless.cli.log('Generating requirements.txt from uv.lock...');
}
try {
await getUvVersion();
fse.ensureDirSync(path.join(this.servicePath, '.serverless'));
const requirementsPath = path.join(
this.servicePath,
'.serverless/requirements.txt'
);
await spawn(
'uv',
['export', '--no-dev', '--frozen', '--no-hashes', '-o', requirementsPath],
{
cwd: this.servicePath,
}
);
} finally {
generateRequirementsProgress && generateRequirementsProgress.remove();
}
}
module.exports = { uvToRequirements };