@usebruno/js 0.29.0 → 0.30.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.
|
@@ -12,6 +12,7 @@ const bundleLibraries = async () => {
|
|
|
12
12
|
import btoa from "btoa";
|
|
13
13
|
import atob from "atob";
|
|
14
14
|
import * as CryptoJS from "@usebruno/crypto-js";
|
|
15
|
+
import tv4 from "tv4";
|
|
15
16
|
globalThis.expect = expect;
|
|
16
17
|
globalThis.assert = assert;
|
|
17
18
|
globalThis.moment = moment;
|
|
@@ -19,6 +20,7 @@ const bundleLibraries = async () => {
|
|
|
19
20
|
globalThis.atob = atob;
|
|
20
21
|
globalThis.Buffer = Buffer;
|
|
21
22
|
globalThis.CryptoJS = CryptoJS;
|
|
23
|
+
globalThis.tv4 = tv4;
|
|
22
24
|
globalThis.requireObject = {
|
|
23
25
|
...(globalThis.requireObject || {}),
|
|
24
26
|
'chai': { expect, assert },
|
|
@@ -26,7 +28,8 @@ const bundleLibraries = async () => {
|
|
|
26
28
|
'buffer': { Buffer },
|
|
27
29
|
'btoa': btoa,
|
|
28
30
|
'atob': atob,
|
|
29
|
-
'crypto-js': CryptoJS
|
|
31
|
+
'crypto-js': CryptoJS,
|
|
32
|
+
'tv4': tv4
|
|
30
33
|
};
|
|
31
34
|
`;
|
|
32
35
|
|