step-node-agent 3.22.1 → 3.22.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.
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var isCoreModule = require('is-core-module');
|
|
4
|
-
var
|
|
4
|
+
var path = require('path');
|
|
5
|
+
var fs = require('fs');
|
|
6
|
+
var data = JSON.parse(String(fs.readFileSync(path.join(path.dirname(require.resolve('is-core-module/package.json')), 'core.json'))));
|
|
5
7
|
|
|
6
8
|
var core = {};
|
|
7
9
|
for (var mod in data) { // eslint-disable-line no-restricted-syntax
|
|
@@ -114,6 +114,8 @@
|
|
|
114
114
|
"node:string_decoder": [">= 14.18 && < 15", ">= 16"],
|
|
115
115
|
"sys": [">= 0.4 && < 0.7", ">= 0.8"],
|
|
116
116
|
"node:sys": [">= 14.18 && < 15", ">= 16"],
|
|
117
|
+
"test/reporters": [">= 19.9", ">= 20"],
|
|
118
|
+
"node:test/reporters": [">= 19.9", ">= 20"],
|
|
117
119
|
"node:test": [">= 16.17 && < 17", ">= 18"],
|
|
118
120
|
"timers": true,
|
|
119
121
|
"node:timers": [">= 14.18 && < 15", ">= 16"],
|
|
@@ -147,7 +149,8 @@
|
|
|
147
149
|
"node:v8": [">= 14.18 && < 15", ">= 16"],
|
|
148
150
|
"vm": true,
|
|
149
151
|
"node:vm": [">= 14.18 && < 15", ">= 16"],
|
|
150
|
-
"wasi": ">= 13.4 && < 13.5",
|
|
152
|
+
"wasi": [">= 13.4 && < 13.5", ">= 20"],
|
|
153
|
+
"node:wasi": ">= 20",
|
|
151
154
|
"worker_threads": ">= 11.7",
|
|
152
155
|
"node:worker_threads": [">= 14.18 && < 15", ">= 16"],
|
|
153
156
|
"zlib": ">= 0.5",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "resolve",
|
|
3
3
|
"description": "resolve like require.resolve() on behalf of files asynchronously and synchronously",
|
|
4
|
-
"version": "1.22.
|
|
4
|
+
"version": "1.22.3",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git://github.com/browserify/resolve.git"
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"url": "https://github.com/sponsors/ljharb"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"is-core-module": "^2.
|
|
61
|
+
"is-core-module": "^2.12.0",
|
|
62
62
|
"path-parse": "^1.0.7",
|
|
63
63
|
"supports-preserve-symlinks-flag": "^1.0.0"
|
|
64
64
|
},
|