@xcodekit/xcode-wasm 0.6.4 → 0.6.6
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/index.mjs +1 -1
- package/package.json +5 -6
- package/xcode.js +1 -1
- package/xcode_bg_wasm_inline.js +1 -1
- package/xcode_bg.wasm +0 -0
package/index.mjs
CHANGED
|
@@ -14,7 +14,7 @@ import { readFileSync, writeFileSync } from "fs";
|
|
|
14
14
|
import * as wasm from "./xcode.js";
|
|
15
15
|
import wasmBytes from "./xcode_bg_wasm_inline.js";
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
wasm.initSync({ module: wasmBytes });
|
|
18
18
|
|
|
19
19
|
class XcodeProject extends wasm.XcodeProject {
|
|
20
20
|
/** @type {string | null} */
|
package/package.json
CHANGED
|
@@ -2,10 +2,13 @@
|
|
|
2
2
|
"name": "@xcodekit/xcode-wasm",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"description": "Parse, manipulate, and serialize Xcode .pbxproj files (WASM build)",
|
|
5
|
-
"version": "0.6.
|
|
5
|
+
"version": "0.6.6",
|
|
6
6
|
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/mozharovsky/xcode"
|
|
10
|
+
},
|
|
7
11
|
"files": [
|
|
8
|
-
"xcode_bg.wasm",
|
|
9
12
|
"xcode.js",
|
|
10
13
|
"xcode.d.ts",
|
|
11
14
|
"index.mjs",
|
|
@@ -18,10 +21,6 @@
|
|
|
18
21
|
"sideEffects": [
|
|
19
22
|
"./snippets/*"
|
|
20
23
|
],
|
|
21
|
-
"repository": {
|
|
22
|
-
"type": "git",
|
|
23
|
-
"url": "https://github.com/mozharovsky/xcode"
|
|
24
|
-
},
|
|
25
24
|
"keywords": [
|
|
26
25
|
"xcode",
|
|
27
26
|
"pbxproj",
|
package/xcode.js
CHANGED
|
@@ -1196,7 +1196,7 @@ async function __wbg_init(module_or_path) {
|
|
|
1196
1196
|
}
|
|
1197
1197
|
|
|
1198
1198
|
if (module_or_path === undefined) {
|
|
1199
|
-
module_or_path =
|
|
1199
|
+
module_or_path = undefined;
|
|
1200
1200
|
}
|
|
1201
1201
|
const imports = __wbg_get_imports();
|
|
1202
1202
|
|