|
1 | 1 | {
|
2 | 2 | "name": "bitbybit",
|
3 |
| - "version": "0.19.0", |
| 3 | + "version": "0.19.1", |
4 | 4 | "description": "Monorepo for browser CAD which holds bitbybit.dev npm packages",
|
5 | 5 | "main": "index.js",
|
6 | 6 | "scripts": {
|
| 7 | + "ci-base": "cd packages/dev/base && npm ci", |
| 8 | + "ci-core": "cd packages/dev/core && npm ci", |
| 9 | + "ci-threejs": "cd packages/dev/threejs && npm ci", |
| 10 | + "ci-babylonjs": "cd packages/dev/babylonjs && npm ci", |
| 11 | + "ci-occt-worker": "cd packages/dev/occt-worker && npm ci", |
| 12 | + "ci-occt": "cd packages/dev/occt && npm ci", |
| 13 | + "ci-jscad-worker": "cd packages/dev/jscad-worker && npm ci", |
| 14 | + "ci-jscad": "cd packages/dev/jscad && npm ci", |
| 15 | + "ci-manifold-worker": "cd packages/dev/manifold-worker && npm ci", |
| 16 | + "ci-manifold": "cd packages/dev/manifold && npm ci", |
| 17 | + "ci-packages": "npm run ci-base && npm run ci-core && npm run ci-threejs && npm run ci-babylonjs && npm run ci-occt-worker && npm run ci-occt && npm run ci-jscad-worker && npm run ci-jscad && npm run ci-manifold-worker && npm run ci-manifold", |
| 18 | + "rm-dist-base-if-exists": "rm -rf packages/dev/base/dist || true", |
| 19 | + "rm-dist-core-if-exists": "rm -rf packages/dev/core/dist || true", |
| 20 | + "rm-dist-threejs-if-exists": "rm -rf packages/dev/threejs/dist || true", |
| 21 | + "rm-dist-babylonjs-if-exists": "rm -rf packages/dev/babylonjs/dist || true", |
| 22 | + "rm-dist-occt-worker-if-exists": "rm -rf packages/dev/occt-worker/dist || true", |
| 23 | + "rm-dist-occt-if-exists": "rm -rf packages/dev/occt/dist || true", |
| 24 | + "rm-dist-jscad-worker-if-exists": "rm -rf packages/dev/jscad-worker/dist || true", |
| 25 | + "rm-dist-jscad-if-exists": "rm -rf packages/dev/jscad/dist || true", |
| 26 | + "rm-dist-manifold-worker-if-exists": "rm -rf packages/dev/manifold-worker/dist || true", |
| 27 | + "rm-dist-manifold-if-exists": "rm -rf packages/dev/manifold/dist || true", |
| 28 | + "rm-dist-packages": "npm run rm-dist-base-if-exists && npm run rm-dist-core-if-exists && npm run rm-dist-threejs-if-exists && npm run rm-dist-babylonjs-if-exists && npm run rm-dist-occt-worker-if-exists && npm run rm-dist-occt-if-exists && npm run rm-dist-jscad-worker-if-exists && npm run rm-dist-jscad-if-exists && npm run rm-dist-manifold-worker-if-exists && npm run rm-dist-manifold-if-exists", |
| 29 | + "build-base": "cd packages/dev/base && npm run build-p", |
| 30 | + "build-core": "cd packages/dev/core && npm run build-p", |
| 31 | + "build-threejs": "cd packages/dev/threejs && npm run build-p", |
| 32 | + "build-babylonjs": "cd packages/dev/babylonjs && npm run build-p", |
| 33 | + "build-occt-worker": "cd packages/dev/occt-worker && npm run build-p", |
| 34 | + "build-occt": "cd packages/dev/occt && npm run build-p", |
| 35 | + "build-jscad-worker": "cd packages/dev/jscad-worker && npm run build-p", |
| 36 | + "build-jscad": "cd packages/dev/jscad && npm run build-p", |
| 37 | + "build-manifold-worker": "cd packages/dev/manifold-worker && npm run build-p", |
| 38 | + "build-manifold": "cd packages/dev/manifold && npm run build-p", |
| 39 | + "build-packages": "npm run build-base && npm run build-occt && npm run build-jscad && npm run build-manifold && npm run build-occt-worker && npm run build-jscad-worker && npm run build-manifold-worker && npm run build-core && npm run build-babylonjs && npm run build-threejs", |
| 40 | + "rebuild-all-packages": "npm run rm-dist-packages && npm run build-packages", |
| 41 | + "install-rebuild-all-packages": "npm run ci-packages && npm run rebuild-all-packages", |
7 | 42 | "test-base": "cd packages/dev/base && npm run test-c",
|
8 | 43 | "test-occt": "cd packages/dev/occt && npm run test-c",
|
9 | 44 | "test-core": "cd packages/dev/core && npm run test-c",
|
10 | 45 | "test-jscad": "cd packages/dev/jscad && npm run test-c",
|
11 | 46 | "test-manifold": "cd packages/dev/manifold && npm run test-c",
|
12 |
| - "test": "npm run test-occt && npm run test-base && npm run test-core && npm run test-jscad && npm run test-manifold" |
| 47 | + "test-threejs": "cd packages/dev/threejs && npm run test-c", |
| 48 | + "test": "npm run test-occt && npm run test-base && npm run test-core && npm run test-jscad && npm run test-manifold && npm run test-threejs" |
13 | 49 | },
|
14 | 50 | "repository": {
|
15 | 51 | "type": "git",
|
|
0 commit comments