@parcel/core
Advanced tools
Comparing version 2.0.0-canary.1705 to 2.0.0-canary.1707
@@ -36,3 +36,2 @@ "use strict"; | ||
threads, | ||
tracerOptions, | ||
...options | ||
@@ -45,4 +44,3 @@ }) { | ||
threads, | ||
options, | ||
tracerOptions | ||
options | ||
}); | ||
@@ -49,0 +47,0 @@ } |
@@ -157,5 +157,5 @@ "use strict"; | ||
try { | ||
_rust().initSentry === null || _rust().initSentry === void 0 || (0, _rust().initSentry)(); | ||
_rust().initializeMonitoring === null || _rust().initializeMonitoring === void 0 || (0, _rust().initializeMonitoring)(); | ||
process.on('exit', () => { | ||
_rust().closeSentry === null || _rust().closeSentry === void 0 || (0, _rust().closeSentry)(); | ||
_rust().closeMonitoring === null || _rust().closeMonitoring === void 0 || (0, _rust().closeMonitoring)(); | ||
}); | ||
@@ -162,0 +162,0 @@ } catch (e) { |
{ | ||
"name": "@parcel/core", | ||
"version": "2.0.0-canary.1705+8ab5d078b", | ||
"version": "2.0.0-canary.1707+4ce0f6eb0", | ||
"license": "MIT", | ||
@@ -28,17 +28,17 @@ "publishConfig": { | ||
"@mischnic/json-sourcemap": "^0.1.0", | ||
"@parcel/cache": "2.0.0-canary.1707+8ab5d078b", | ||
"@parcel/diagnostic": "2.0.0-canary.1707+8ab5d078b", | ||
"@parcel/events": "2.0.0-canary.1707+8ab5d078b", | ||
"@parcel/feature-flags": "2.12.1-canary.3330+8ab5d078b", | ||
"@parcel/fs": "2.0.0-canary.1707+8ab5d078b", | ||
"@parcel/graph": "3.2.1-canary.3330+8ab5d078b", | ||
"@parcel/logger": "2.0.0-canary.1707+8ab5d078b", | ||
"@parcel/package-manager": "2.0.0-canary.1707+8ab5d078b", | ||
"@parcel/plugin": "2.0.0-canary.1707+8ab5d078b", | ||
"@parcel/profiler": "2.12.1-canary.3330+8ab5d078b", | ||
"@parcel/rust": "2.12.1-canary.3330+8ab5d078b", | ||
"@parcel/cache": "2.0.0-canary.1709+4ce0f6eb0", | ||
"@parcel/diagnostic": "2.0.0-canary.1709+4ce0f6eb0", | ||
"@parcel/events": "2.0.0-canary.1709+4ce0f6eb0", | ||
"@parcel/feature-flags": "2.12.1-canary.3332+4ce0f6eb0", | ||
"@parcel/fs": "2.0.0-canary.1709+4ce0f6eb0", | ||
"@parcel/graph": "3.2.1-canary.3332+4ce0f6eb0", | ||
"@parcel/logger": "2.0.0-canary.1709+4ce0f6eb0", | ||
"@parcel/package-manager": "2.0.0-canary.1709+4ce0f6eb0", | ||
"@parcel/plugin": "2.0.0-canary.1709+4ce0f6eb0", | ||
"@parcel/profiler": "2.12.1-canary.3332+4ce0f6eb0", | ||
"@parcel/rust": "2.12.1-canary.3332+4ce0f6eb0", | ||
"@parcel/source-map": "^2.1.1", | ||
"@parcel/types": "2.0.0-canary.1707+8ab5d078b", | ||
"@parcel/utils": "2.0.0-canary.1707+8ab5d078b", | ||
"@parcel/workers": "2.0.0-canary.1707+8ab5d078b", | ||
"@parcel/types": "2.0.0-canary.1709+4ce0f6eb0", | ||
"@parcel/utils": "2.0.0-canary.1709+4ce0f6eb0", | ||
"@parcel/workers": "2.0.0-canary.1709+4ce0f6eb0", | ||
"base-x": "^3.0.8", | ||
@@ -63,3 +63,3 @@ "browserslist": "^4.6.6", | ||
}, | ||
"gitHead": "8ab5d078beedb9a2dcb2b798d674444bb9a82241" | ||
"gitHead": "4ce0f6eb01da680891a29183833f5f6a881bcb74" | ||
} |
@@ -14,3 +14,2 @@ // @flow | ||
threads?: number, | ||
tracerOptions?: ParcelNapiOptions['tracerOptions'], | ||
...ParcelNapiOptions['options'], | ||
@@ -27,3 +26,2 @@ |}; | ||
threads, | ||
tracerOptions, | ||
...options | ||
@@ -37,3 +35,2 @@ }: ParcelV3Options) { | ||
options, | ||
tracerOptions, | ||
}); | ||
@@ -40,0 +37,0 @@ } |
@@ -49,4 +49,8 @@ // @flow strict-local | ||
import {init as initSourcemaps} from '@parcel/source-map'; | ||
import {init as initRust, initSentry, closeSentry} from '@parcel/rust'; | ||
import { | ||
init as initRust, | ||
initializeMonitoring, | ||
closeMonitoring, | ||
} from '@parcel/rust'; | ||
import { | ||
fromProjectPath, | ||
@@ -108,5 +112,5 @@ toProjectPath, | ||
try { | ||
initSentry?.(); | ||
initializeMonitoring?.(); | ||
process.on('exit', () => { | ||
closeSentry?.(); | ||
closeMonitoring?.(); | ||
}); | ||
@@ -113,0 +117,0 @@ } catch (e) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
1408790
40529