@contrast/agent 3.11.23 → 3.11.24
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/bin/VERSION +1 -1
- package/bin/linux/contrast-service +0 -0
- package/bin/mac/contrast-service +0 -0
- package/bin/windows/contrast-service.exe +0 -0
- package/node_modules/async/CHANGELOG.md +13 -0
- package/node_modules/async/all.js +74 -9
- package/node_modules/async/allLimit.js +3 -3
- package/node_modules/async/allSeries.js +3 -3
- package/node_modules/async/any.js +75 -9
- package/node_modules/async/anyLimit.js +3 -3
- package/node_modules/async/anySeries.js +3 -3
- package/node_modules/async/applyEach.js +2 -2
- package/node_modules/async/applyEachSeries.js +2 -2
- package/node_modules/async/asyncify.js +3 -3
- package/node_modules/async/auto.js +81 -15
- package/node_modules/async/autoInject.js +30 -4
- package/node_modules/async/cargo.js +1 -1
- package/node_modules/async/cargoQueue.js +1 -1
- package/node_modules/async/compose.js +1 -1
- package/node_modules/async/concat.js +72 -4
- package/node_modules/async/concatLimit.js +3 -3
- package/node_modules/async/concatSeries.js +2 -2
- package/node_modules/async/detect.js +43 -8
- package/node_modules/async/detectLimit.js +3 -3
- package/node_modules/async/detectSeries.js +3 -3
- package/node_modules/async/dir.js +1 -1
- package/node_modules/async/dist/async.js +1379 -168
- package/node_modules/async/dist/async.min.js +1 -1
- package/node_modules/async/dist/async.mjs +1372 -161
- package/node_modules/async/doDuring.js +3 -3
- package/node_modules/async/doUntil.js +2 -2
- package/node_modules/async/doWhilst.js +3 -3
- package/node_modules/async/during.js +3 -3
- package/node_modules/async/each.js +69 -28
- package/node_modules/async/eachLimit.js +4 -4
- package/node_modules/async/eachOf.js +85 -16
- package/node_modules/async/eachOfLimit.js +3 -3
- package/node_modules/async/eachOfSeries.js +2 -2
- package/node_modules/async/eachSeries.js +2 -2
- package/node_modules/async/ensureAsync.js +2 -2
- package/node_modules/async/every.js +74 -9
- package/node_modules/async/everyLimit.js +3 -3
- package/node_modules/async/everySeries.js +3 -3
- package/node_modules/async/filter.js +49 -9
- package/node_modules/async/filterLimit.js +3 -3
- package/node_modules/async/filterSeries.js +3 -3
- package/node_modules/async/find.js +43 -8
- package/node_modules/async/findLimit.js +3 -3
- package/node_modules/async/findSeries.js +3 -3
- package/node_modules/async/flatMap.js +72 -4
- package/node_modules/async/flatMapLimit.js +3 -3
- package/node_modules/async/flatMapSeries.js +2 -2
- package/node_modules/async/foldl.js +87 -11
- package/node_modules/async/foldr.js +2 -2
- package/node_modules/async/forEach.js +69 -28
- package/node_modules/async/forEachLimit.js +4 -4
- package/node_modules/async/forEachOf.js +85 -16
- package/node_modules/async/forEachOfLimit.js +3 -3
- package/node_modules/async/forEachOfSeries.js +2 -2
- package/node_modules/async/forEachSeries.js +2 -2
- package/node_modules/async/forever.js +4 -4
- package/node_modules/async/groupBy.js +62 -8
- package/node_modules/async/groupByLimit.js +3 -3
- package/node_modules/async/groupBySeries.js +2 -2
- package/node_modules/async/inject.js +87 -11
- package/node_modules/async/internal/applyEach.js +2 -2
- package/node_modules/async/internal/asyncEachOfLimit.js +1 -1
- package/node_modules/async/internal/consoleFunc.js +5 -1
- package/node_modules/async/internal/createTester.js +2 -2
- package/node_modules/async/internal/eachOfLimit.js +6 -6
- package/node_modules/async/internal/filter.js +2 -2
- package/node_modules/async/internal/iterator.js +5 -2
- package/node_modules/async/internal/map.js +1 -1
- package/node_modules/async/internal/parallel.js +3 -3
- package/node_modules/async/internal/queue.js +4 -4
- package/node_modules/async/internal/reject.js +2 -2
- package/node_modules/async/internal/setImmediate.js +6 -2
- package/node_modules/async/internal/wrapAsync.js +1 -1
- package/node_modules/async/log.js +1 -1
- package/node_modules/async/map.js +86 -6
- package/node_modules/async/mapLimit.js +3 -3
- package/node_modules/async/mapSeries.js +3 -3
- package/node_modules/async/mapValues.js +102 -12
- package/node_modules/async/mapValuesLimit.js +4 -4
- package/node_modules/async/mapValuesSeries.js +1 -1
- package/node_modules/async/memoize.js +3 -3
- package/node_modules/async/nextTick.js +3 -3
- package/node_modules/async/package.json +4 -6
- package/node_modules/async/parallel.js +96 -7
- package/node_modules/async/parallelLimit.js +2 -2
- package/node_modules/async/priorityQueue.js +11 -4
- package/node_modules/async/queue.js +4 -4
- package/node_modules/async/race.js +3 -3
- package/node_modules/async/reduce.js +87 -11
- package/node_modules/async/reduceRight.js +2 -2
- package/node_modules/async/reflect.js +2 -2
- package/node_modules/async/reflectAll.js +1 -1
- package/node_modules/async/reject.js +44 -10
- package/node_modules/async/rejectLimit.js +3 -3
- package/node_modules/async/rejectSeries.js +3 -3
- package/node_modules/async/retry.js +2 -2
- package/node_modules/async/retryable.js +4 -4
- package/node_modules/async/select.js +49 -9
- package/node_modules/async/selectLimit.js +3 -3
- package/node_modules/async/selectSeries.js +3 -3
- package/node_modules/async/seq.js +4 -4
- package/node_modules/async/series.js +112 -12
- package/node_modules/async/setImmediate.js +1 -1
- package/node_modules/async/some.js +75 -9
- package/node_modules/async/someLimit.js +3 -3
- package/node_modules/async/someSeries.js +3 -3
- package/node_modules/async/sortBy.js +121 -19
- package/node_modules/async/timeout.js +2 -2
- package/node_modules/async/times.js +1 -1
- package/node_modules/async/timesLimit.js +3 -3
- package/node_modules/async/timesSeries.js +1 -1
- package/node_modules/async/transform.js +111 -19
- package/node_modules/async/tryEach.js +3 -3
- package/node_modules/async/until.js +3 -3
- package/node_modules/async/waterfall.js +4 -4
- package/node_modules/async/whilst.js +3 -3
- package/node_modules/async/wrapSync.js +3 -3
- package/node_modules/unix-dgram/build/Makefile +2 -2
- package/node_modules/unix-dgram/build/Release/.deps/Release/obj.target/unix_dgram/src/unix_dgram.o.d +35 -35
- package/node_modules/unix-dgram/build/config.gypi +8 -8
- package/node_modules/unix-dgram/build/unix_dgram.target.mk +14 -14
- package/package.json +1 -1
|
@@ -5,19 +5,19 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.default = transform;
|
|
7
7
|
|
|
8
|
-
var _eachOf = require('./eachOf');
|
|
8
|
+
var _eachOf = require('./eachOf.js');
|
|
9
9
|
|
|
10
10
|
var _eachOf2 = _interopRequireDefault(_eachOf);
|
|
11
11
|
|
|
12
|
-
var _once = require('./internal/once');
|
|
12
|
+
var _once = require('./internal/once.js');
|
|
13
13
|
|
|
14
14
|
var _once2 = _interopRequireDefault(_once);
|
|
15
15
|
|
|
16
|
-
var _wrapAsync = require('./internal/wrapAsync');
|
|
16
|
+
var _wrapAsync = require('./internal/wrapAsync.js');
|
|
17
17
|
|
|
18
18
|
var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
|
|
19
19
|
|
|
20
|
-
var _promiseCallback = require('./internal/promiseCallback');
|
|
20
|
+
var _promiseCallback = require('./internal/promiseCallback.js');
|
|
21
21
|
|
|
22
22
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
23
23
|
|
|
@@ -43,26 +43,118 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
|
|
|
43
43
|
* @returns {Promise} a promise, if no callback provided
|
|
44
44
|
* @example
|
|
45
45
|
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
46
|
+
* // file1.txt is a file that is 1000 bytes in size
|
|
47
|
+
* // file2.txt is a file that is 2000 bytes in size
|
|
48
|
+
* // file3.txt is a file that is 3000 bytes in size
|
|
49
|
+
*
|
|
50
|
+
* // helper function that returns human-readable size format from bytes
|
|
51
|
+
* function formatBytes(bytes, decimals = 2) {
|
|
52
|
+
* // implementation not included for brevity
|
|
53
|
+
* return humanReadbleFilesize;
|
|
54
|
+
* }
|
|
55
|
+
*
|
|
56
|
+
* const fileList = ['file1.txt','file2.txt','file3.txt'];
|
|
57
|
+
*
|
|
58
|
+
* // asynchronous function that returns the file size, transformed to human-readable format
|
|
59
|
+
* // e.g. 1024 bytes = 1KB, 1234 bytes = 1.21 KB, 1048576 bytes = 1MB, etc.
|
|
60
|
+
* function transformFileSize(acc, value, key, callback) {
|
|
61
|
+
* fs.stat(value, function(err, stat) {
|
|
62
|
+
* if (err) {
|
|
63
|
+
* return callback(err);
|
|
64
|
+
* }
|
|
65
|
+
* acc[key] = formatBytes(stat.size);
|
|
66
|
+
* callback(null);
|
|
51
67
|
* });
|
|
52
|
-
* }
|
|
53
|
-
*
|
|
68
|
+
* }
|
|
69
|
+
*
|
|
70
|
+
* // Using callbacks
|
|
71
|
+
* async.transform(fileList, transformFileSize, function(err, result) {
|
|
72
|
+
* if(err) {
|
|
73
|
+
* console.log(err);
|
|
74
|
+
* } else {
|
|
75
|
+
* console.log(result);
|
|
76
|
+
* // [ '1000 Bytes', '1.95 KB', '2.93 KB' ]
|
|
77
|
+
* }
|
|
54
78
|
* });
|
|
55
79
|
*
|
|
80
|
+
* // Using Promises
|
|
81
|
+
* async.transform(fileList, transformFileSize)
|
|
82
|
+
* .then(result => {
|
|
83
|
+
* console.log(result);
|
|
84
|
+
* // [ '1000 Bytes', '1.95 KB', '2.93 KB' ]
|
|
85
|
+
* }).catch(err => {
|
|
86
|
+
* console.log(err);
|
|
87
|
+
* });
|
|
88
|
+
*
|
|
89
|
+
* // Using async/await
|
|
90
|
+
* (async () => {
|
|
91
|
+
* try {
|
|
92
|
+
* let result = await async.transform(fileList, transformFileSize);
|
|
93
|
+
* console.log(result);
|
|
94
|
+
* // [ '1000 Bytes', '1.95 KB', '2.93 KB' ]
|
|
95
|
+
* }
|
|
96
|
+
* catch (err) {
|
|
97
|
+
* console.log(err);
|
|
98
|
+
* }
|
|
99
|
+
* })();
|
|
100
|
+
*
|
|
56
101
|
* @example
|
|
57
102
|
*
|
|
58
|
-
*
|
|
59
|
-
*
|
|
60
|
-
*
|
|
61
|
-
*
|
|
62
|
-
*
|
|
63
|
-
*
|
|
64
|
-
*
|
|
65
|
-
*
|
|
103
|
+
* // file1.txt is a file that is 1000 bytes in size
|
|
104
|
+
* // file2.txt is a file that is 2000 bytes in size
|
|
105
|
+
* // file3.txt is a file that is 3000 bytes in size
|
|
106
|
+
*
|
|
107
|
+
* // helper function that returns human-readable size format from bytes
|
|
108
|
+
* function formatBytes(bytes, decimals = 2) {
|
|
109
|
+
* // implementation not included for brevity
|
|
110
|
+
* return humanReadbleFilesize;
|
|
111
|
+
* }
|
|
112
|
+
*
|
|
113
|
+
* const fileMap = { f1: 'file1.txt', f2: 'file2.txt', f3: 'file3.txt' };
|
|
114
|
+
*
|
|
115
|
+
* // asynchronous function that returns the file size, transformed to human-readable format
|
|
116
|
+
* // e.g. 1024 bytes = 1KB, 1234 bytes = 1.21 KB, 1048576 bytes = 1MB, etc.
|
|
117
|
+
* function transformFileSize(acc, value, key, callback) {
|
|
118
|
+
* fs.stat(value, function(err, stat) {
|
|
119
|
+
* if (err) {
|
|
120
|
+
* return callback(err);
|
|
121
|
+
* }
|
|
122
|
+
* acc[key] = formatBytes(stat.size);
|
|
123
|
+
* callback(null);
|
|
124
|
+
* });
|
|
125
|
+
* }
|
|
126
|
+
*
|
|
127
|
+
* // Using callbacks
|
|
128
|
+
* async.transform(fileMap, transformFileSize, function(err, result) {
|
|
129
|
+
* if(err) {
|
|
130
|
+
* console.log(err);
|
|
131
|
+
* } else {
|
|
132
|
+
* console.log(result);
|
|
133
|
+
* // { f1: '1000 Bytes', f2: '1.95 KB', f3: '2.93 KB' }
|
|
134
|
+
* }
|
|
135
|
+
* });
|
|
136
|
+
*
|
|
137
|
+
* // Using Promises
|
|
138
|
+
* async.transform(fileMap, transformFileSize)
|
|
139
|
+
* .then(result => {
|
|
140
|
+
* console.log(result);
|
|
141
|
+
* // { f1: '1000 Bytes', f2: '1.95 KB', f3: '2.93 KB' }
|
|
142
|
+
* }).catch(err => {
|
|
143
|
+
* console.log(err);
|
|
144
|
+
* });
|
|
145
|
+
*
|
|
146
|
+
* // Using async/await
|
|
147
|
+
* async () => {
|
|
148
|
+
* try {
|
|
149
|
+
* let result = await async.transform(fileMap, transformFileSize);
|
|
150
|
+
* console.log(result);
|
|
151
|
+
* // { f1: '1000 Bytes', f2: '1.95 KB', f3: '2.93 KB' }
|
|
152
|
+
* }
|
|
153
|
+
* catch (err) {
|
|
154
|
+
* console.log(err);
|
|
155
|
+
* }
|
|
156
|
+
* }
|
|
157
|
+
*
|
|
66
158
|
*/
|
|
67
159
|
function transform(coll, accumulator, iteratee, callback) {
|
|
68
160
|
if (arguments.length <= 3 && typeof accumulator === 'function') {
|
|
@@ -4,15 +4,15 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
|
|
7
|
-
var _eachSeries = require('./eachSeries');
|
|
7
|
+
var _eachSeries = require('./eachSeries.js');
|
|
8
8
|
|
|
9
9
|
var _eachSeries2 = _interopRequireDefault(_eachSeries);
|
|
10
10
|
|
|
11
|
-
var _wrapAsync = require('./internal/wrapAsync');
|
|
11
|
+
var _wrapAsync = require('./internal/wrapAsync.js');
|
|
12
12
|
|
|
13
13
|
var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
|
|
14
14
|
|
|
15
|
-
var _awaitify = require('./internal/awaitify');
|
|
15
|
+
var _awaitify = require('./internal/awaitify.js');
|
|
16
16
|
|
|
17
17
|
var _awaitify2 = _interopRequireDefault(_awaitify);
|
|
18
18
|
|
|
@@ -5,11 +5,11 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.default = until;
|
|
7
7
|
|
|
8
|
-
var _whilst = require('./whilst');
|
|
8
|
+
var _whilst = require('./whilst.js');
|
|
9
9
|
|
|
10
10
|
var _whilst2 = _interopRequireDefault(_whilst);
|
|
11
11
|
|
|
12
|
-
var _wrapAsync = require('./internal/wrapAsync');
|
|
12
|
+
var _wrapAsync = require('./internal/wrapAsync.js');
|
|
13
13
|
|
|
14
14
|
var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
|
|
15
15
|
|
|
@@ -41,7 +41,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
|
|
|
41
41
|
* @example
|
|
42
42
|
* const results = []
|
|
43
43
|
* let finished = false
|
|
44
|
-
* async.until(function test(
|
|
44
|
+
* async.until(function test(cb) {
|
|
45
45
|
* cb(null, finished)
|
|
46
46
|
* }, function iter(next) {
|
|
47
47
|
* fetchPage(url, (err, body) => {
|
|
@@ -4,19 +4,19 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
|
|
7
|
-
var _once = require('./internal/once');
|
|
7
|
+
var _once = require('./internal/once.js');
|
|
8
8
|
|
|
9
9
|
var _once2 = _interopRequireDefault(_once);
|
|
10
10
|
|
|
11
|
-
var _onlyOnce = require('./internal/onlyOnce');
|
|
11
|
+
var _onlyOnce = require('./internal/onlyOnce.js');
|
|
12
12
|
|
|
13
13
|
var _onlyOnce2 = _interopRequireDefault(_onlyOnce);
|
|
14
14
|
|
|
15
|
-
var _wrapAsync = require('./internal/wrapAsync');
|
|
15
|
+
var _wrapAsync = require('./internal/wrapAsync.js');
|
|
16
16
|
|
|
17
17
|
var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
|
|
18
18
|
|
|
19
|
-
var _awaitify = require('./internal/awaitify');
|
|
19
|
+
var _awaitify = require('./internal/awaitify.js');
|
|
20
20
|
|
|
21
21
|
var _awaitify2 = _interopRequireDefault(_awaitify);
|
|
22
22
|
|
|
@@ -4,15 +4,15 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
|
|
7
|
-
var _onlyOnce = require('./internal/onlyOnce');
|
|
7
|
+
var _onlyOnce = require('./internal/onlyOnce.js');
|
|
8
8
|
|
|
9
9
|
var _onlyOnce2 = _interopRequireDefault(_onlyOnce);
|
|
10
10
|
|
|
11
|
-
var _wrapAsync = require('./internal/wrapAsync');
|
|
11
|
+
var _wrapAsync = require('./internal/wrapAsync.js');
|
|
12
12
|
|
|
13
13
|
var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
|
|
14
14
|
|
|
15
|
-
var _awaitify = require('./internal/awaitify');
|
|
15
|
+
var _awaitify = require('./internal/awaitify.js');
|
|
16
16
|
|
|
17
17
|
var _awaitify2 = _interopRequireDefault(_awaitify);
|
|
18
18
|
|
|
@@ -5,15 +5,15 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.default = asyncify;
|
|
7
7
|
|
|
8
|
-
var _initialParams = require('./internal/initialParams');
|
|
8
|
+
var _initialParams = require('./internal/initialParams.js');
|
|
9
9
|
|
|
10
10
|
var _initialParams2 = _interopRequireDefault(_initialParams);
|
|
11
11
|
|
|
12
|
-
var _setImmediate = require('./internal/setImmediate');
|
|
12
|
+
var _setImmediate = require('./internal/setImmediate.js');
|
|
13
13
|
|
|
14
14
|
var _setImmediate2 = _interopRequireDefault(_setImmediate);
|
|
15
15
|
|
|
16
|
-
var _wrapAsync = require('./internal/wrapAsync');
|
|
16
|
+
var _wrapAsync = require('./internal/wrapAsync.js');
|
|
17
17
|
|
|
18
18
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
19
19
|
|
|
@@ -308,8 +308,8 @@ ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
|
|
|
308
308
|
endif
|
|
309
309
|
|
|
310
310
|
quiet_cmd_regen_makefile = ACTION Regenerating $@
|
|
311
|
-
cmd_regen_makefile = cd $(srcdir); /opt/hostedtoolcache/node/12.22.
|
|
312
|
-
Makefile: $(srcdir)/../../../../../../../../opt/hostedtoolcache/node/12.22.
|
|
311
|
+
cmd_regen_makefile = cd $(srcdir); /opt/hostedtoolcache/node/12.22.12/x64/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py -fmake --ignore-environment "-Dlibrary=shared_library" "-Dvisibility=default" "-Dnode_root_dir=/home/runner/.cache/node-gyp/12.22.12" "-Dnode_gyp_dir=/opt/hostedtoolcache/node/12.22.12/x64/lib/node_modules/npm/node_modules/node-gyp" "-Dnode_lib_file=/home/runner/.cache/node-gyp/12.22.12/<(target_arch)/node.lib" "-Dmodule_root_dir=/home/runner/work/node-agent/node-agent/target/node_modules/unix-dgram" "-Dnode_engine=v8" "--depth=." "-Goutput_dir=." "--generator-output=build" -I/home/runner/work/node-agent/node-agent/target/node_modules/unix-dgram/build/config.gypi -I/opt/hostedtoolcache/node/12.22.12/x64/lib/node_modules/npm/node_modules/node-gyp/addon.gypi -I/home/runner/.cache/node-gyp/12.22.12/include/node/common.gypi "--toplevel-dir=." binding.gyp
|
|
312
|
+
Makefile: $(srcdir)/../../../../../../../../opt/hostedtoolcache/node/12.22.12/x64/lib/node_modules/npm/node_modules/node-gyp/addon.gypi $(srcdir)/build/config.gypi $(srcdir)/../../../../../../.cache/node-gyp/12.22.12/include/node/common.gypi $(srcdir)/binding.gyp
|
|
313
313
|
$(call do_cmd,regen_makefile)
|
|
314
314
|
|
|
315
315
|
# "all" is a concatenation of the "all" targets from all the included
|
package/node_modules/unix-dgram/build/Release/.deps/Release/obj.target/unix_dgram/src/unix_dgram.o.d
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
cmd_Release/obj.target/unix_dgram/src/unix_dgram.o := g++ '-DNODE_GYP_MODULE_NAME=unix_dgram' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-D__STDC_FORMAT_MACROS' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DBUILDING_NODE_EXTENSION' -I/home/runner/.cache/node-gyp/12.22.
|
|
1
|
+
cmd_Release/obj.target/unix_dgram/src/unix_dgram.o := g++ '-DNODE_GYP_MODULE_NAME=unix_dgram' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-D__STDC_FORMAT_MACROS' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DBUILDING_NODE_EXTENSION' -I/home/runner/.cache/node-gyp/12.22.12/include/node -I/home/runner/.cache/node-gyp/12.22.12/src -I/home/runner/.cache/node-gyp/12.22.12/deps/openssl/config -I/home/runner/.cache/node-gyp/12.22.12/deps/openssl/openssl/include -I/home/runner/.cache/node-gyp/12.22.12/deps/uv/include -I/home/runner/.cache/node-gyp/12.22.12/deps/zlib -I/home/runner/.cache/node-gyp/12.22.12/deps/v8/include -I../../nan -fPIC -pthread -Wall -Wextra -Wno-unused-parameter -m64 -O3 -fno-omit-frame-pointer -fno-rtti -fno-exceptions -std=gnu++1y -MMD -MF ./Release/.deps/Release/obj.target/unix_dgram/src/unix_dgram.o.d.raw -c -o Release/obj.target/unix_dgram/src/unix_dgram.o ../src/unix_dgram.cc
|
|
2
2
|
Release/obj.target/unix_dgram/src/unix_dgram.o: ../src/unix_dgram.cc \
|
|
3
3
|
../../nan/nan.h \
|
|
4
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
5
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
6
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
7
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
8
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
9
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
10
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
11
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
12
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
13
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
14
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
15
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
16
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
17
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
18
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
19
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
20
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
4
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/node_version.h \
|
|
5
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/uv.h \
|
|
6
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/uv/errno.h \
|
|
7
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/uv/version.h \
|
|
8
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/uv/unix.h \
|
|
9
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/uv/threadpool.h \
|
|
10
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/uv/linux.h \
|
|
11
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/node.h \
|
|
12
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/v8.h \
|
|
13
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/v8-internal.h \
|
|
14
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/v8-version.h \
|
|
15
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/v8config.h \
|
|
16
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/v8-platform.h \
|
|
17
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/node_version.h \
|
|
18
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/node_buffer.h \
|
|
19
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/node.h \
|
|
20
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/node_object_wrap.h \
|
|
21
21
|
../../nan/nan_callbacks.h ../../nan/nan_callbacks_12_inl.h \
|
|
22
22
|
../../nan/nan_maybe_43_inl.h ../../nan/nan_converters.h \
|
|
23
23
|
../../nan/nan_converters_43_inl.h ../../nan/nan_new.h \
|
|
@@ -26,23 +26,23 @@ Release/obj.target/unix_dgram/src/unix_dgram.o: ../src/unix_dgram.cc \
|
|
|
26
26
|
../../nan/nan_typedarray_contents.h ../../nan/nan_json.h
|
|
27
27
|
../src/unix_dgram.cc:
|
|
28
28
|
../../nan/nan.h:
|
|
29
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
30
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
31
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
32
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
33
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
34
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
35
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
36
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
37
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
38
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
39
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
40
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
41
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
42
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
43
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
44
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
45
|
-
/home/runner/.cache/node-gyp/12.22.
|
|
29
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/node_version.h:
|
|
30
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/uv.h:
|
|
31
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/uv/errno.h:
|
|
32
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/uv/version.h:
|
|
33
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/uv/unix.h:
|
|
34
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/uv/threadpool.h:
|
|
35
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/uv/linux.h:
|
|
36
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/node.h:
|
|
37
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/v8.h:
|
|
38
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/v8-internal.h:
|
|
39
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/v8-version.h:
|
|
40
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/v8config.h:
|
|
41
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/v8-platform.h:
|
|
42
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/node_version.h:
|
|
43
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/node_buffer.h:
|
|
44
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/node.h:
|
|
45
|
+
/home/runner/.cache/node-gyp/12.22.12/include/node/node_object_wrap.h:
|
|
46
46
|
../../nan/nan_callbacks.h:
|
|
47
47
|
../../nan/nan_callbacks_12_inl.h:
|
|
48
48
|
../../nan/nan_maybe_43_inl.h:
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"v8_use_siphash": 1,
|
|
77
77
|
"v8_use_snapshot": 1,
|
|
78
78
|
"want_separate_host_toolset": 0,
|
|
79
|
-
"nodedir": "/home/runner/.cache/node-gyp/12.22.
|
|
79
|
+
"nodedir": "/home/runner/.cache/node-gyp/12.22.12",
|
|
80
80
|
"standalone_static_library": 1,
|
|
81
81
|
"dmode": "493",
|
|
82
82
|
"cache_lock_stale": "60000",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"legacy_bundling": "",
|
|
85
85
|
"sign_git_tag": "",
|
|
86
86
|
"fmode": "420",
|
|
87
|
-
"user_agent": "npm/6.14.16 node/v12.22.
|
|
87
|
+
"user_agent": "npm/6.14.16 node/v12.22.12 linux x64 ci/github-actions",
|
|
88
88
|
"always_auth": "",
|
|
89
89
|
"bin_links": "true",
|
|
90
90
|
"key": "",
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
"progress": "",
|
|
127
127
|
"https_proxy": "",
|
|
128
128
|
"save_prod": "",
|
|
129
|
-
"npm_session": "
|
|
129
|
+
"npm_session": "f9984b49c0735c0e",
|
|
130
130
|
"audit": "true",
|
|
131
131
|
"cidr": "",
|
|
132
132
|
"onload_script": "",
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
"shell": "bash",
|
|
138
138
|
"dry_run": "",
|
|
139
139
|
"format_package_lock": "true",
|
|
140
|
-
"prefix": "/opt/hostedtoolcache/node/12.22.
|
|
140
|
+
"prefix": "/opt/hostedtoolcache/node/12.22.12/x64",
|
|
141
141
|
"scope": "",
|
|
142
142
|
"browser": "",
|
|
143
143
|
"cache_lock_wait": "10000",
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
"version": "",
|
|
155
155
|
"local_address": "",
|
|
156
156
|
"viewer": "man",
|
|
157
|
-
"node_gyp": "/opt/hostedtoolcache/node/12.22.
|
|
157
|
+
"node_gyp": "/opt/hostedtoolcache/node/12.22.12/x64/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js",
|
|
158
158
|
"audit_level": "low",
|
|
159
159
|
"prefer_offline": "",
|
|
160
160
|
"color": "true",
|
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
"unsafe_perm": "true",
|
|
184
184
|
"update_notifier": "true",
|
|
185
185
|
"auth_type": "legacy",
|
|
186
|
-
"node_version": "12.22.
|
|
186
|
+
"node_version": "12.22.12",
|
|
187
187
|
"tag": "latest",
|
|
188
188
|
"git_tag_version": "true",
|
|
189
189
|
"commit_hooks": "true",
|
|
@@ -193,10 +193,10 @@
|
|
|
193
193
|
"save_exact": "",
|
|
194
194
|
"strict_ssl": "true",
|
|
195
195
|
"dev": "",
|
|
196
|
-
"globalconfig": "/opt/hostedtoolcache/node/12.22.
|
|
196
|
+
"globalconfig": "/opt/hostedtoolcache/node/12.22.12/x64/etc/npmrc",
|
|
197
197
|
"init_module": "/home/runner/.npm-init.js",
|
|
198
198
|
"parseable": "",
|
|
199
|
-
"globalignorefile": "/opt/hostedtoolcache/node/12.22.
|
|
199
|
+
"globalignorefile": "/opt/hostedtoolcache/node/12.22.12/x64/etc/npmignore",
|
|
200
200
|
"cache_lock_retries": "10",
|
|
201
201
|
"searchstaleness": "900",
|
|
202
202
|
"log": "",
|
|
@@ -40,13 +40,13 @@ CFLAGS_CC_Debug := \
|
|
|
40
40
|
-std=gnu++1y
|
|
41
41
|
|
|
42
42
|
INCS_Debug := \
|
|
43
|
-
-I/home/runner/.cache/node-gyp/12.22.
|
|
44
|
-
-I/home/runner/.cache/node-gyp/12.22.
|
|
45
|
-
-I/home/runner/.cache/node-gyp/12.22.
|
|
46
|
-
-I/home/runner/.cache/node-gyp/12.22.
|
|
47
|
-
-I/home/runner/.cache/node-gyp/12.22.
|
|
48
|
-
-I/home/runner/.cache/node-gyp/12.22.
|
|
49
|
-
-I/home/runner/.cache/node-gyp/12.22.
|
|
43
|
+
-I/home/runner/.cache/node-gyp/12.22.12/include/node \
|
|
44
|
+
-I/home/runner/.cache/node-gyp/12.22.12/src \
|
|
45
|
+
-I/home/runner/.cache/node-gyp/12.22.12/deps/openssl/config \
|
|
46
|
+
-I/home/runner/.cache/node-gyp/12.22.12/deps/openssl/openssl/include \
|
|
47
|
+
-I/home/runner/.cache/node-gyp/12.22.12/deps/uv/include \
|
|
48
|
+
-I/home/runner/.cache/node-gyp/12.22.12/deps/zlib \
|
|
49
|
+
-I/home/runner/.cache/node-gyp/12.22.12/deps/v8/include \
|
|
50
50
|
-I$(srcdir)/../nan
|
|
51
51
|
|
|
52
52
|
DEFS_Release := \
|
|
@@ -84,13 +84,13 @@ CFLAGS_CC_Release := \
|
|
|
84
84
|
-std=gnu++1y
|
|
85
85
|
|
|
86
86
|
INCS_Release := \
|
|
87
|
-
-I/home/runner/.cache/node-gyp/12.22.
|
|
88
|
-
-I/home/runner/.cache/node-gyp/12.22.
|
|
89
|
-
-I/home/runner/.cache/node-gyp/12.22.
|
|
90
|
-
-I/home/runner/.cache/node-gyp/12.22.
|
|
91
|
-
-I/home/runner/.cache/node-gyp/12.22.
|
|
92
|
-
-I/home/runner/.cache/node-gyp/12.22.
|
|
93
|
-
-I/home/runner/.cache/node-gyp/12.22.
|
|
87
|
+
-I/home/runner/.cache/node-gyp/12.22.12/include/node \
|
|
88
|
+
-I/home/runner/.cache/node-gyp/12.22.12/src \
|
|
89
|
+
-I/home/runner/.cache/node-gyp/12.22.12/deps/openssl/config \
|
|
90
|
+
-I/home/runner/.cache/node-gyp/12.22.12/deps/openssl/openssl/include \
|
|
91
|
+
-I/home/runner/.cache/node-gyp/12.22.12/deps/uv/include \
|
|
92
|
+
-I/home/runner/.cache/node-gyp/12.22.12/deps/zlib \
|
|
93
|
+
-I/home/runner/.cache/node-gyp/12.22.12/deps/v8/include \
|
|
94
94
|
-I$(srcdir)/../nan
|
|
95
95
|
|
|
96
96
|
OBJS := \
|