@bldrs-ai/conway 0.18.902 → 0.19.902
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/compiled/examples/{browser-bundled.js → browser-bundled.cjs} +34 -11
- package/compiled/examples/browser.d.ts +0 -1
- package/compiled/examples/browser.js +0 -1
- package/compiled/examples/cli-bundled.cjs +89676 -0
- package/compiled/examples/{validator-bundled.js → validator-bundled.cjs} +36 -17
- package/compiled/examples/validator.d.ts +0 -1
- package/compiled/examples/validator.js +0 -1
- package/compiled/src/version/version.js +1 -1
- package/compiled/tsconfig.tsbuildinfo +1 -1
- package/package.json +14 -11
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "bldrs.ai datamodel",
|
|
4
4
|
"author": "bldrs.ai",
|
|
5
5
|
"license": "AGPL-3.0",
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "0.19.902",
|
|
7
7
|
"repository": "https://github.com/bldrs-ai/conway",
|
|
8
8
|
"files": [
|
|
9
9
|
"./compiled/**/*"
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"main": "./compiled/src/index.js",
|
|
12
12
|
"types": "./compiled/src/index.d.ts",
|
|
13
13
|
"bin": {
|
|
14
|
+
"cli": "./compiled/examples/cli-bundled.cjs",
|
|
14
15
|
"browser": "./compiled/examples/browser-bundled.js",
|
|
15
16
|
"validator": "./compiled/examples/validator-bundled.js"
|
|
16
17
|
},
|
|
@@ -51,18 +52,20 @@
|
|
|
51
52
|
"build-node-MT": "yarn clean && yarn update-version && yarn build-all-release-node-MT",
|
|
52
53
|
"build-and-serve": "yarn build-incremental && yarn build-conway_geom-web && yarn build-conway_geom-web-MT && yarn serve",
|
|
53
54
|
"serve": "yarn parcel index.html",
|
|
54
|
-
"build-GHA-
|
|
55
|
-
"build-GHA-
|
|
56
|
-
"
|
|
57
|
-
"bundle
|
|
58
|
-
"bundle-
|
|
59
|
-
"bundle-
|
|
55
|
+
"build-GHA-base": "scripts/build-gha.sh",
|
|
56
|
+
"build-GHA-all": "yarn run build-GHA-base ConwayGeomWasmNode ConwayGeomWasmNodeMT ConwayGeomWasmWeb ConwayGeomWasmWebMT && yarn bumpMinor",
|
|
57
|
+
"build-GHA-MT": "yarn run build-GHA-base ConwayGeomWasmNodeMT",
|
|
58
|
+
"bundle": "yarn esbuild --bundle --format=cjs --platform=node --banner:js='#!/usr/bin/env node'",
|
|
59
|
+
"bundle-examples": "yarn bundle-browser && yarn bundle-cli && yarn bundle-validator && shx chmod +x ./compiled/examples/*-bundled.cjs; cd compiled; rm Dist; ln -s dependencies/conway-geom/Dist .",
|
|
60
|
+
"bundle-browser": "yarn bundle compiled/examples/browser.js --outfile=compiled/examples/browser-bundled.cjs",
|
|
61
|
+
"bundle-cli": "yarn bundle compiled/src/ifc/ifc_command_line_main.js --outfile=compiled/examples/cli-bundled.cjs",
|
|
62
|
+
"bundle-validator": "yarn bundle compiled/examples/validator.js --outfile=compiled/examples/validator-bundled.cjs",
|
|
60
63
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
|
|
61
64
|
"generate-flamegraph": "node ./scripts/generate_flame_graph.cjs",
|
|
62
65
|
"cli-profile": "cross-env FORCE_SINGLE_THREAD='true' node --experimental-wasm-threads --prof --logfile=flamegraph.log --no-logfile-per-isolate --experimental-specifier-resolution=node ./compiled/src/ifc/ifc_command_line_main.js -g -n",
|
|
63
|
-
"cli": "node
|
|
64
|
-
"browser": "node
|
|
65
|
-
"validator": "node
|
|
66
|
+
"cli": "node ./compiled/examples/cli-bundled.cjs",
|
|
67
|
+
"browser": "node ./compiled/examples/browser-bundled.cjs",
|
|
68
|
+
"validator": "node ./compiled/examples/validator-bundled.cjs",
|
|
66
69
|
"extract-wasm-dependencies": "node ./scripts/extract-wasm-dependencies.cjs",
|
|
67
70
|
"create-release-candidate": "./scripts/create-release-candidate.sh",
|
|
68
71
|
"build-all-profile-node": "yarn build-profile-conway_geom-node && tsc --build",
|
|
@@ -165,4 +168,4 @@
|
|
|
165
168
|
"vite": "^6.2.3"
|
|
166
169
|
},
|
|
167
170
|
"type": "module"
|
|
168
|
-
}
|
|
171
|
+
}
|