@shikijs/engine-oniguruma 3.15.0 → 3.17.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.
Files changed (2) hide show
  1. package/dist/index.mjs +3 -3
  2. package/package.json +2 -2
package/dist/index.mjs CHANGED
@@ -97,10 +97,10 @@ async function main(init) {
97
97
  env: asmLibraryArg,
98
98
  wasi_snapshot_preview1: asmLibraryArg
99
99
  };
100
- const exports = await init(info);
101
- wasmMemory = exports.memory;
100
+ const exports$1 = await init(info);
101
+ wasmMemory = exports$1.memory;
102
102
  updateGlobalBufferAndViews(wasmMemory.buffer);
103
- Object.assign(binding, exports);
103
+ Object.assign(binding, exports$1);
104
104
  binding.UTF8ToString = UTF8ToString;
105
105
  }
106
106
  await createWasm();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@shikijs/engine-oniguruma",
3
3
  "type": "module",
4
- "version": "3.15.0",
4
+ "version": "3.17.0",
5
5
  "description": "Engine for Shiki using Oniguruma RegExp engine in WebAssembly",
6
6
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
7
7
  "license": "MIT",
@@ -30,7 +30,7 @@
30
30
  ],
31
31
  "dependencies": {
32
32
  "@shikijs/vscode-textmate": "^10.0.2",
33
- "@shikijs/types": "3.15.0"
33
+ "@shikijs/types": "3.17.0"
34
34
  },
35
35
  "devDependencies": {
36
36
  "vscode-oniguruma": "1.7.0"