@bitbybit-dev/base 0.19.0 → 0.19.1

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/README.md +12 -10
  2. package/package.json +2 -3
package/README.md CHANGED
@@ -2,19 +2,21 @@
2
2
 
3
3
  <img src="https://app.bitbybit.dev/assets/git-cover.png" alt="Picture showing bitbybit.dev platform">
4
4
 
5
- This genericc package contains base algorithms for our CAD platform. It has various helper functions for math, text, lists, vectors, matrix operations. It also contains some base types used accross bitbybit.dev platform on higher levels. This layer should be kept as lightweight as possible and ideally not contain any third-party dependencies as they just add to the weight and complexity.
5
+ This package contains base algorithms for our CAD platform. It has various helper functions for math, text, lists, vectors, matrix operations. It also contains some base types used accross bitbybit.dev platform on higher levels. This layer should be kept as lightweight as possible and ideally not contain any third-party dependencies as they just add to the weight and complexity.
6
6
 
7
7
  This package is already used or will be used in these packages:
8
8
 
9
- @bitbybit-dev/occt
10
- @bitbybit-dev/occt-worker
11
- @bitbybit-dev/jscad
12
- @bitbybit-dev/jscad-worker
13
- @bitbybit-dev/manifold
14
- @bitbybit-dev/manifold-worker
15
- @bitbybit-dev/core
16
- @bitbybit-dev/babylonjs
17
- @bitbybit-dev/threejs
9
+
10
+ [@bitbybit-dev/babylonjs](https://www.npmjs.com/package/@bitbybit-dev/babylonjs)
11
+ [@bitbybit-dev/threejs](https://www.npmjs.com/package/@bitbybit-dev/threejs)
12
+ [@bitbybit-dev/core](https://www.npmjs.com/package/@bitbybit-dev/core)
13
+ [@bitbybit-dev/jscad](https://www.npmjs.com/package/@bitbybit-dev/jscad)
14
+ [@bitbybit-dev/jscad-worker](https://www.npmjs.com/package/@bitbybit-dev/jscad-worker)
15
+ [@bitbybit-dev/manifold](https://www.npmjs.com/package/@bitbybit-dev/manifold)
16
+ [@bitbybit-dev/manifold-worker](https://www.npmjs.com/package/@bitbybit-dev/manifold-worker)
17
+ [@bitbybit-dev/occt](https://www.npmjs.com/package/@bitbybit-dev/occt)
18
+ [@bitbybit-dev/occt-worker](https://www.npmjs.com/package/@bitbybit-dev/occt-worker)
19
+ [@bitbybit-dev/base](https://www.npmjs.com/package/@bitbybit-dev/base)
18
20
 
19
21
  This package should work in Node and browser based applications and should provide generic layer which could be helpful to all higher-level CAD algorithms and kernels. Algorithms of this base layer are also exposed on our bitbybit.dev Rete, Blockly & Monaco editors.
20
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitbybit-dev/base",
3
- "version": "0.19.0",
3
+ "version": "0.19.1",
4
4
  "description": "Bit By Bit Developers Base CAD Library to Program Geometry",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -48,7 +48,7 @@
48
48
  "build-p": "npm run build && npm run copy-package && npm run copy-readme && npm run delete-coverage",
49
49
  "copy-package": "cp -R ./package.json ./dist",
50
50
  "copy-readme": "cp -R ./README.md ./dist && cp -R ./LICENSE ./dist",
51
- "delete-coverage": "rm -R ./dist/coverage",
51
+ "delete-coverage": "rm -rf ./dist/coverage || true",
52
52
  "test": "set NODE_OPTIONS=--experimental-specifier-resolution=node && jest --watchAll=true",
53
53
  "test-c": "set NODE_OPTIONS=--experimental-specifier-resolution=node && jest --coverage --watchAll=false",
54
54
  "test-c-l": "set NODE_OPTIONS=--experimental-specifier-resolution=node && jest --coverage --watchAll=true"
@@ -68,7 +68,6 @@
68
68
  "ts-jest": "29.0.0",
69
69
  "typescript": "4.8.2",
70
70
  "@types/jest": "29.0.0",
71
- "@types/three": "0.169.0",
72
71
  "babel-jest": "29.0.0",
73
72
  "@babel/core": "7.16.0",
74
73
  "@babel/preset-env": "7.16.0",