@momo2555/koppeliajs 0.0.109 → 0.0.110

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.
@@ -71,9 +71,9 @@ export class State {
71
71
  update[entry] = newState[entry];
72
72
  }
73
73
  }
74
+ console.log("change state NewState=", newState, "; update=", update, " currentState=", this._previousStateValue);
74
75
  this._previousStateValue = structuredClone(newState);
75
76
  this._console.onReady(() => {
76
- console.log("change state NewState=", newState, "; update=", update, " currentState=", this._previousStateValue);
77
77
  let req = new Message();
78
78
  req.setRequest("changeState");
79
79
  req.addParam("state", update);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momo2555/koppeliajs",
3
- "version": "0.0.109",
3
+ "version": "0.0.110",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run package",