@nxtedition/lib 23.9.2 → 23.9.4

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/app.js CHANGED
@@ -139,7 +139,7 @@ export function makeApp(appConfig, onTerminate) {
139
139
  null)
140
140
 
141
141
  if (isMainThread && serviceName) {
142
- process.title = serviceName
142
+ process.title = userAgent
143
143
  }
144
144
 
145
145
  const dailyOffpeakTime = config.dailyOffpeakTime ?? getUTCRangeForLocalTime('00:00-04:00')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/lib",
3
- "version": "23.9.2",
3
+ "version": "23.9.4",
4
4
  "license": "MIT",
5
5
  "author": "Robert Nagy <robert.nagy@boffins.se>",
6
6
  "type": "module",
@@ -414,7 +414,7 @@ export default function ({ ds, proxify, compiler, logger }) {
414
414
 
415
415
  const error = Object.assign(new Error('expression failed'), {
416
416
  cause: err,
417
- data: this._expression,
417
+ data: { expression: this._expression, data: this._args },
418
418
  })
419
419
 
420
420
  if (this._suspended) {