@api3/commons 0.6.1 → 0.7.0
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/README.md +27 -15
- package/dist/config-hash/index.d.ts +4 -0
- package/dist/config-hash/index.d.ts.map +1 -0
- package/dist/config-hash/index.js +30 -0
- package/dist/config-hash/index.js.map +1 -0
- package/dist/config-parsing/index.d.ts +15 -0
- package/dist/config-parsing/index.d.ts.map +1 -0
- package/dist/config-parsing/index.js +55 -0
- package/dist/config-parsing/index.js.map +1 -0
- package/dist/eslint/react.js +1 -1
- package/dist/eslint/react.js.map +1 -1
- package/dist/http/index.d.ts +29 -0
- package/dist/http/index.d.ts.map +1 -0
- package/dist/http/index.js +36 -0
- package/dist/http/index.js.map +1 -0
- package/dist/logger/index.d.ts.map +1 -1
- package/dist/logger/index.js +15 -15
- package/dist/logger/index.js.map +1 -1
- package/dist/node-index.d.ts +6 -0
- package/dist/node-index.d.ts.map +1 -0
- package/dist/{index.js → node-index.js} +4 -2
- package/dist/node-index.js.map +1 -0
- package/dist/processing/unsafe-evaluate.d.ts.map +1 -1
- package/dist/processing/unsafe-evaluate.js +0 -2
- package/dist/processing/unsafe-evaluate.js.map +1 -1
- package/dist/universal-index.d.ts +2 -0
- package/dist/universal-index.d.ts.map +1 -0
- package/dist/universal-index.js +19 -0
- package/dist/universal-index.js.map +1 -0
- package/package.json +11 -3
- package/src/config-hash/README.md +25 -0
- package/src/config-hash/index.test.ts +93 -0
- package/src/config-hash/index.ts +25 -0
- package/src/config-parsing/README.md +48 -0
- package/src/config-parsing/index.test.ts +158 -0
- package/src/config-parsing/index.ts +75 -0
- package/src/eslint/react.js +1 -1
- package/src/http/README.md +3 -0
- package/src/http/index.test.ts +43 -0
- package/src/http/index.ts +61 -0
- package/src/logger/index.test.ts +19 -17
- package/src/logger/index.ts +15 -16
- package/src/{index.ts → node-index.ts} +3 -1
- package/src/processing/processing.test.ts +1 -1
- package/src/processing/unsafe-evaluate.test.ts +0 -1
- package/src/processing/unsafe-evaluate.ts +0 -2
- package/src/universal-index.ts +2 -0
- package/dist/index.d.ts +0 -4
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
|
@@ -27,7 +27,6 @@ import stream from 'node:stream';
|
|
|
27
27
|
import string_decoder from 'node:string_decoder';
|
|
28
28
|
import timers from 'node:timers';
|
|
29
29
|
import tls from 'node:tls';
|
|
30
|
-
import trace_events from 'node:trace_events';
|
|
31
30
|
import tty from 'node:tty';
|
|
32
31
|
import url from 'node:url';
|
|
33
32
|
import util from 'node:util';
|
|
@@ -69,7 +68,6 @@ const builtInNodeModules = {
|
|
|
69
68
|
string_decoder,
|
|
70
69
|
timers,
|
|
71
70
|
tls,
|
|
72
|
-
trace_events,
|
|
73
71
|
tty,
|
|
74
72
|
url,
|
|
75
73
|
util,
|
package/dist/index.d.ts
DELETED
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,wBAAwB,CAAC"}
|
package/dist/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iHAAiH;AACjH,2CAAyB;AACzB,+CAA6B;AAC7B,yDAAuC"}
|