@lenne.tech/cli 1.32.0 → 1.32.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/lib/dev-patches.js +5 -2
- package/package.json +5 -3
package/build/lib/dev-patches.js
CHANGED
|
@@ -209,13 +209,16 @@ function patchPlaywrightConfig(file) {
|
|
|
209
209
|
"let __ltDevEnvFile = '';",
|
|
210
210
|
'for (let __ltDevDir = process.cwd(), __i = 0; __i < 6; __i++) {',
|
|
211
211
|
" const __candidate = __ltDevResolve(__ltDevDir, '.lt-dev/.env');",
|
|
212
|
-
' if (__ltDevExists(__candidate)) {
|
|
212
|
+
' if (__ltDevExists(__candidate)) {',
|
|
213
|
+
' __ltDevEnvFile = __candidate;',
|
|
214
|
+
' break;',
|
|
215
|
+
' }',
|
|
213
216
|
' const __parent = __ltDevDirname(__ltDevDir);',
|
|
214
217
|
' if (__parent === __ltDevDir) break;',
|
|
215
218
|
' __ltDevDir = __parent;',
|
|
216
219
|
'}',
|
|
217
220
|
'if (__ltDevEnvFile) {',
|
|
218
|
-
|
|
221
|
+
" for (const __ln of __ltDevRead(__ltDevEnvFile, 'utf8').split(/\\r?\\n/)) {",
|
|
219
222
|
' const __m = __ln.match(/^([A-Z][A-Z0-9_]*)=(.*)$/);',
|
|
220
223
|
' if (__m && process.env[__m[1]] === undefined) process.env[__m[1]] = __m[2];',
|
|
221
224
|
' }',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lenne.tech/cli",
|
|
3
|
-
"version": "1.32.
|
|
3
|
+
"version": "1.32.1",
|
|
4
4
|
"description": "lenne.Tech CLI: lt",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lenne.Tech",
|
|
@@ -104,14 +104,16 @@
|
|
|
104
104
|
"semver@*": "Force latest semver 7.x across all sub-deps; gluegun@5.2.2 pins semver@7.7.0 which is stale - remove once gluegun updates its dep.",
|
|
105
105
|
"js-yaml": "Security fix: GHSA-h67p-54hq-rp68 (quadratic-complexity DoS in merge-key handling) in js-yaml <=4.1.1. Forces 4.2.0 everywhere, incl. the 3.14.2 pulled transitively by @istanbuljs/load-nyc-config under babel-plugin-istanbul (jest coverage); that loader only runs js-yaml when reading a YAML nyc config, which this project does not use. Remove once the jest toolchain resolves js-yaml >=4.2.0 itself.",
|
|
106
106
|
"form-data": "Security fix: GHSA-hmw2-7cc7-3qxx (CRLF injection via unescaped multipart field names) in form-data 4.0.0-4.0.5 - transitive via axios. Remove once axios pins form-data >=4.0.6.",
|
|
107
|
-
"@babel/core": "Security fix: GHSA-4x5r-pxfx-6jf8 (arbitrary file read via sourceMappingURL) in @babel/core <=7.29.0 - transitive via the jest toolchain. Remove once jest resolves @babel/core >=7.29.6."
|
|
107
|
+
"@babel/core": "Security fix: GHSA-4x5r-pxfx-6jf8 (arbitrary file read via sourceMappingURL) in @babel/core <=7.29.0 - transitive via the jest toolchain. Remove once jest resolves @babel/core >=7.29.6.",
|
|
108
|
+
"undici": "Security fix: GHSA-vmh5-mc38-953g (TLS certificate validation bypass via dropped requestTls in SOCKS5 ProxyAgent) and GHSA-pr7r-676h-xcf6 (cross-user info disclosure via shared cache whitespace bypass) in undici 7.0.0-7.27.2 - transitive via jsdom (jest test environment). Forces 7.28.0, which satisfies jsdom's ^7.25.0 range. Remove once jsdom resolves undici >=7.28.0."
|
|
108
109
|
},
|
|
109
110
|
"overrides": {
|
|
110
111
|
"@babel/core": "7.29.7",
|
|
111
112
|
"brace-expansion@5.0.2 - 5.0.5": "5.0.6",
|
|
112
113
|
"form-data": "4.0.6",
|
|
113
114
|
"js-yaml": "4.2.0",
|
|
114
|
-
"semver@*": "7.8.1"
|
|
115
|
+
"semver@*": "7.8.1",
|
|
116
|
+
"undici": "7.28.0"
|
|
115
117
|
},
|
|
116
118
|
"jest": {
|
|
117
119
|
"testEnvironment": "node",
|