chore: bump version to 0.0.29
All checks were successful
Deploy to Production / deploy (push) Successful in 9s

This commit is contained in:
2026-02-22 20:31:54 +00:00
parent a9881bb5fa
commit a75c148a5b
7 changed files with 104 additions and 119 deletions

View File

@@ -29,11 +29,19 @@ self.onmessage = (e) => {
sendUpdate();
break;
case 'ROTATE_LAYER':
case 'ROTATE_LAYER': {
const { axis, index, direction } = payload;
cube.rotateLayer(axis, index, direction);
sendUpdate();
break;
}
case 'TURN': {
const { move } = payload;
cube.applyTurn(move);
sendUpdate();
break;
}
case 'VALIDATE':
const validation = cube.validate();