@platformatic/service 1.5.0 → 1.5.2
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/lib/compile.js +6 -1
- package/package.json +6 -6
package/lib/compile.js
CHANGED
|
@@ -71,7 +71,12 @@ async function compile (cwd, config, originalLogger) {
|
|
|
71
71
|
|
|
72
72
|
try {
|
|
73
73
|
const tsFlags = config?.plugins?.typescript?.flags || ['--project', tsConfigPath, '--rootDir', '.']
|
|
74
|
-
|
|
74
|
+
const env = {
|
|
75
|
+
...process.env
|
|
76
|
+
}
|
|
77
|
+
delete env.NODE_V8_COVERAGE
|
|
78
|
+
|
|
79
|
+
await execa(tscExecutablePath, tsFlags, { cwd, env })
|
|
75
80
|
logger.info('Typescript compilation completed successfully.')
|
|
76
81
|
return true
|
|
77
82
|
} catch (error) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/service",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -67,11 +67,11 @@
|
|
|
67
67
|
"pino-pretty": "^10.2.0",
|
|
68
68
|
"rfdc": "^1.3.0",
|
|
69
69
|
"ua-parser-js": "^1.0.36",
|
|
70
|
-
"@platformatic/client": "1.5.
|
|
71
|
-
"@platformatic/config": "1.5.
|
|
72
|
-
"@platformatic/swagger-ui-theme": "1.5.
|
|
73
|
-
"@platformatic/telemetry": "1.5.
|
|
74
|
-
"@platformatic/utils": "1.5.
|
|
70
|
+
"@platformatic/client": "1.5.2",
|
|
71
|
+
"@platformatic/config": "1.5.2",
|
|
72
|
+
"@platformatic/swagger-ui-theme": "1.5.2",
|
|
73
|
+
"@platformatic/telemetry": "1.5.2",
|
|
74
|
+
"@platformatic/utils": "1.5.2"
|
|
75
75
|
},
|
|
76
76
|
"standard": {
|
|
77
77
|
"ignore": [
|