@isolated-vm/experimental 0.0.11 → 0.0.12
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/addon/handle/value_of.cc +3 -1
- package/package.json +9 -9
package/addon/handle/value_of.cc
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
module;
|
|
2
|
+
#include "auto_js/export_tag.h"
|
|
1
3
|
export module isolated_vm:handle.value_of;
|
|
2
4
|
import :handle.types;
|
|
3
5
|
import :support.lock_fwd;
|
|
@@ -53,7 +55,7 @@ class value_next : public value_of<typename Tag::tag_type> {
|
|
|
53
55
|
};
|
|
54
56
|
|
|
55
57
|
// `value_of<Tag>` specializations.
|
|
56
|
-
template <class Type> class value_for_typed_array_of;
|
|
58
|
+
template <class Type> class EXPORT value_for_typed_array_of;
|
|
57
59
|
|
|
58
60
|
template <class Tag>
|
|
59
61
|
struct value_specialization
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@isolated-vm/experimental",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"author": "https://github.com/laverdet/",
|
|
6
6
|
"description": "JavaScript sandbox",
|
|
@@ -46,20 +46,20 @@
|
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/node": "^26.0.1",
|
|
49
|
-
"@isolated-vm/experimental": "^0.0.
|
|
49
|
+
"@isolated-vm/experimental": "^0.0.12"
|
|
50
50
|
},
|
|
51
51
|
"repository": {
|
|
52
52
|
"type": "git",
|
|
53
53
|
"url": "git+https://github.com/laverdet/isolated-vm.git"
|
|
54
54
|
},
|
|
55
55
|
"optionalDependencies": {
|
|
56
|
-
"@isolated-vm/experimental-linux-arm64-musl": "0.0.
|
|
57
|
-
"@isolated-vm/experimental-darwin-arm64": "0.0.
|
|
58
|
-
"@isolated-vm/experimental-linux-arm64-gnu": "0.0.
|
|
59
|
-
"@isolated-vm/experimental-linux-x64-musl": "0.0.
|
|
60
|
-
"@isolated-vm/experimental-darwin-x64": "0.0.
|
|
61
|
-
"@isolated-vm/experimental-win32-x64": "0.0.
|
|
62
|
-
"@isolated-vm/experimental-linux-x64-gnu": "0.0.
|
|
56
|
+
"@isolated-vm/experimental-linux-arm64-musl": "0.0.12",
|
|
57
|
+
"@isolated-vm/experimental-darwin-arm64": "0.0.12",
|
|
58
|
+
"@isolated-vm/experimental-linux-arm64-gnu": "0.0.12",
|
|
59
|
+
"@isolated-vm/experimental-linux-x64-musl": "0.0.12",
|
|
60
|
+
"@isolated-vm/experimental-darwin-x64": "0.0.12",
|
|
61
|
+
"@isolated-vm/experimental-win32-x64": "0.0.12",
|
|
62
|
+
"@isolated-vm/experimental-linux-x64-gnu": "0.0.12"
|
|
63
63
|
},
|
|
64
64
|
"scripts": {
|
|
65
65
|
"test:all": "pnpm run -s test:node && pnpm run -s test:deno && pnpm run -s test:bun",
|