@platformatic/service 1.5.0 → 1.5.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.
Files changed (2) hide show
  1. package/lib/compile.js +6 -1
  2. 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
- await execa(tscExecutablePath, tsFlags, { cwd })
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.0",
3
+ "version": "1.5.1",
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.0",
71
- "@platformatic/config": "1.5.0",
72
- "@platformatic/swagger-ui-theme": "1.5.0",
73
- "@platformatic/telemetry": "1.5.0",
74
- "@platformatic/utils": "1.5.0"
70
+ "@platformatic/client": "1.5.1",
71
+ "@platformatic/config": "1.5.1",
72
+ "@platformatic/swagger-ui-theme": "1.5.1",
73
+ "@platformatic/telemetry": "1.5.1",
74
+ "@platformatic/utils": "1.5.1"
75
75
  },
76
76
  "standard": {
77
77
  "ignore": [