Skip to content

Commit

Permalink
Move pkg build script mkdir to build-share.
Browse files Browse the repository at this point in the history
  • Loading branch information
pablo-mayrgundter committed Oct 23, 2023
1 parent bc104b3 commit 86fe67b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "bldrs",
"version": "1.0.0-r748",
"version": "1.0.0-r755",
"main": "src/index.jsx",
"license": "MIT",
"homepage": "https://github.com/bldrs-ai/Share",
"bugs": {
"url": "https://github.com/bldrs-ai/Share/issues"
},
"scripts": {
"build": "yarn clean && shx mkdir -p docs/static/js && yarn build-share-webifc && yarn build-cosmos",
"build": "yarn clean && yarn build-share-webifc && yarn build-cosmos",
"build-conway": "yarn clean && yarn build-share-conway && yarn build-cosmos",
"build-webifc": "yarn clean && yarn build-share-webifc && yarn build-cosmos",
"build-cosmos": "shx rm -rf docs/cosmos; shx mkdir -p docs ; cosmos-export --config .cosmos.config.json && shx mv cosmos-export docs/cosmos",
"build-share": "yarn write-new-version && node tools/esbuild/build.js",
"build-share": "yarn write-new-version && node tools/esbuild/build.js && shx mkdir -p docs/static/js",
"build-share-conway": "USE_WEBIFC_SHIM=true yarn build-share && yarn build-share-copy-wasm-conway",
"build-share-webifc": "USE_WEBIFC_SHIM=false yarn build-share && yarn build-share-copy-wasm-webifc",
"build-share-copy-wasm-webifc": "shx cp node_modules/web-ifc/*.wasm docs/static/js",
Expand Down

0 comments on commit 86fe67b

Please sign in to comment.