jww-parser 2025.12.3 → 2025.12.4
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/dist/index.d.ts +54 -54
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +832 -754
- package/package.json +3 -3
- package/wasm/jww-parser.wasm +0 -0
- package/dist/index.d.mts +0 -947
- package/dist/index.mjs +0 -723
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jww-parser",
|
|
3
|
-
"version": "2025.12.
|
|
3
|
+
"version": "2025.12.4",
|
|
4
4
|
"description": "JWW (Jw_cad) file parser and DXF converter for JavaScript/TypeScript",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
"wasm"
|
|
18
18
|
],
|
|
19
19
|
"scripts": {
|
|
20
|
+
"build:wasm": "make -C .. build-wasm copy-wasm-exec && mkdir -p wasm && rm -f wasm/wasm_exec.js wasm/jww-parser.wasm && cp ../dist/jww-parser.wasm ../dist/wasm_exec.js wasm/",
|
|
21
|
+
"build:js": "tsc",
|
|
20
22
|
"build": "npm run build:wasm && npm run build:js",
|
|
21
|
-
"build:wasm": "mkdir -p wasm && cd .. && make build-wasm copy-wasm-exec && cp dist/jww-parser.wasm dist/wasm_exec.js npm/wasm/",
|
|
22
|
-
"build:js": "tsup src/index.ts --format cjs,esm --dts",
|
|
23
23
|
"prepublishOnly": "npm run build"
|
|
24
24
|
},
|
|
25
25
|
"keywords": [
|
package/wasm/jww-parser.wasm
CHANGED
|
Binary file
|