Skip to content

Commit ea32a07

Browse files
adjust readme
1 parent 4badc55 commit ea32a07

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ Bit By Bit Developers web platform allows creators to program geometry through s
8989

9090
# Development Setup
9191

92+
## Contributions
93+
94+
If you're interested in contributing please check our [Contribution guidelines](https://github.com/bitbybit-dev/bitbybit/blob/master/CONTRIBUTING.md) & [code of conduct](https://github.com/bitbybit-dev/bitbybit/blob/master/CODE_OF_CONDUCT.md)
95+
9296
## First Time Setup and Testing
9397

9498
For first-time developers working on this project, follow these steps to set up the development environment and run all unit tests:
@@ -120,11 +124,6 @@ For first-time developers working on this project, follow these steps to set up
120124
- `npm run build-packages` - Build all packages
121125
- `npm run rebuild-all-packages` - Clean and rebuild all packages
122126

123-
### Cross-Platform Compatibility
124-
All commands are now cross-platform compatible and work on Windows, macOS, and Linux. The project uses:
125-
- `rimraf` for cross-platform file deletion
126-
- Standard npm scripts for package management
127-
128127
### Running Individual Package Tests
129128
You can also run tests for individual packages:
130129
- `npm run test-base` - Test base package
@@ -139,7 +138,6 @@ If you encounter issues during setup:
139138
1. Make sure you have Node.js v16+ installed
140139
2. Clear npm cache: `npm cache clean --force`
141140
3. Delete node_modules and package-lock.json, then run `npm install`
142-
4. If on Windows, make sure to run commands in a proper terminal (Command Prompt, PowerShell, or WSL)
143141

144142
## Major Dependencies
145143
BabylonJS, ThreeJS, OpenCascade, Manifold, JSCAD, Verbnurbs

packages/dev/base/lib/api/services/math.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ describe("Math unit tests", () => {
326326

327327
it("should compute ease out sine", () => {
328328
const result = math.ease({ x: 0.3, min: 0, max: 1, ease: Inputs.Math.easeEnum.easeOutSine });
329-
expect(result).toEqual(0.45399049973954675);
329+
expect(result).toEqual(0.4539904997395468);
330330
});
331331

332332
it("should compute ease out sine", () => {

0 commit comments

Comments
 (0)