@bytecodealliance/preview2-shim 0.0.6 → 0.0.7
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/lib/browser/index.js +0 -2
- package/lib/nodejs/index.js +0 -2
- package/package.json +1 -1
- package/lib/browser/environment-preopens.js +0 -4
- package/lib/browser/instance-monotonic-clock.js +0 -4
- package/lib/browser/instance-wall-clock.js +0 -4
- package/lib/nodejs/environment-preopens.js +0 -4
- package/lib/nodejs/instance-monotonic-clock.js +0 -4
- package/lib/nodejs/instance-wall-clock.js +0 -4
package/lib/browser/index.js
CHANGED
|
@@ -9,7 +9,6 @@ import * as poll from "./poll.js";
|
|
|
9
9
|
import * as preopens from "./preopens.js";
|
|
10
10
|
import * as random from "./random.js";
|
|
11
11
|
import * as streams from "./streams.js";
|
|
12
|
-
import * as types from "./types.js";
|
|
13
12
|
import * as wallClock from "./wall-clock.js";
|
|
14
13
|
|
|
15
14
|
export const importObject = {
|
|
@@ -24,7 +23,6 @@ export const importObject = {
|
|
|
24
23
|
"preopens": preopens,
|
|
25
24
|
"random": random,
|
|
26
25
|
"streams": streams,
|
|
27
|
-
"types": types,
|
|
28
26
|
"wall-clock": wallClock,
|
|
29
27
|
};
|
|
30
28
|
|
package/lib/nodejs/index.js
CHANGED
|
@@ -9,7 +9,6 @@ import * as poll from "./poll.js";
|
|
|
9
9
|
import * as preopens from "./preopens.js";
|
|
10
10
|
import * as random from "./random.js";
|
|
11
11
|
import * as streams from "./streams.js";
|
|
12
|
-
import * as types from "./types.js";
|
|
13
12
|
import * as wallClock from "./wall-clock.js";
|
|
14
13
|
|
|
15
14
|
export const importObject = {
|
|
@@ -24,7 +23,6 @@ export const importObject = {
|
|
|
24
23
|
"preopens": preopens,
|
|
25
24
|
"random": random,
|
|
26
25
|
"streams": streams,
|
|
27
|
-
"types": types,
|
|
28
26
|
"wall-clock": wallClock,
|
|
29
27
|
};
|
|
30
28
|
|
package/package.json
CHANGED