@thi.ng/timestep 0.4.8 → 0.4.10

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.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-08-22T14:39:27Z
3
+ - **Last updated**: 2023-08-27T11:20:59Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/timestep",
3
- "version": "0.4.8",
3
+ "version": "0.4.10",
4
4
  "description": "Deterministic fixed timestep simulation updates with state interpolation",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,17 +34,17 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.9.4",
38
- "@thi.ng/math": "^5.5.5",
39
- "@thi.ng/vectors": "^7.7.8"
37
+ "@thi.ng/api": "^8.9.5",
38
+ "@thi.ng/math": "^5.6.1",
39
+ "@thi.ng/vectors": "^7.7.10"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@microsoft/api-extractor": "^7.36.4",
43
- "@thi.ng/testament": "^0.3.22",
43
+ "@thi.ng/testament": "^0.3.23",
44
44
  "rimraf": "^5.0.1",
45
45
  "tools": "^0.0.1",
46
- "typedoc": "^0.24.8",
47
- "typescript": "^5.1.6"
46
+ "typedoc": "^0.25.0",
47
+ "typescript": "^5.2.2"
48
48
  },
49
49
  "keywords": [
50
50
  "deterministic",
@@ -88,5 +88,5 @@
88
88
  "status": "alpha",
89
89
  "year": 2023
90
90
  },
91
- "gitHead": "74cfe3fb8de5bfcbfc1109e67604541cbd7b77aa\n"
91
+ "gitHead": "5929dd20497668496af13415cdf784a4d6f69aa3\n"
92
92
  }
package/timestep.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { __decorate } from "tslib";
2
2
  import { INotifyMixin, } from "@thi.ng/api";
3
3
  import { EVENT_FRAME, EVENT_SUBFRAME, } from "./api.js";
4
- export let TimeStep = class TimeStep {
4
+ let TimeStep = class TimeStep {
5
5
  constructor(opts) {
6
6
  this.t = 0;
7
7
  this.current = 0;
@@ -77,6 +77,7 @@ export let TimeStep = class TimeStep {
77
77
  TimeStep = __decorate([
78
78
  INotifyMixin
79
79
  ], TimeStep);
80
+ export { TimeStep };
80
81
  export const defTimeStep = (opts) => new TimeStep(opts);
81
82
  /**
82
83
  * Calls {@link ITimeStep.integrate} for all given items (in given order).