@thi.ng/ramp 2.1.32 → 2.1.33
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 +7 -7
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2022-
|
|
3
|
+
- **Last updated**: 2022-11-23T22:46:54Z
|
|
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.
|
|
@@ -45,9 +45,9 @@ and/or version bumps of transitive dependencies.
|
|
|
45
45
|
|
|
46
46
|
#### ♻️ Refactoring
|
|
47
47
|
|
|
48
|
-
- update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
|
|
49
48
|
- update imports in all pkgs ([5fa2b6f](https://github.com/thi-ng/umbrella/commit/5fa2b6f))
|
|
50
49
|
- add .js suffix for all relative imports
|
|
50
|
+
- update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
|
|
51
51
|
|
|
52
52
|
# [2.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/ramp@2.0.0) (2021-10-12)
|
|
53
53
|
|
|
@@ -68,18 +68,18 @@ and/or version bumps of transitive dependencies.
|
|
|
68
68
|
|
|
69
69
|
#### ♻️ Refactoring
|
|
70
70
|
|
|
71
|
-
- update imports (transducers) ([6de47ec](https://github.com/thi-ng/umbrella/commit/6de47ec))
|
|
72
|
-
- update imports ([138571a](https://github.com/thi-ng/umbrella/commit/138571a))
|
|
73
|
-
- update all test stubs ([f2d6d53](https://github.com/thi-ng/umbrella/commit/f2d6d53))
|
|
74
71
|
- update all tests in _all_ pkgs ([8b582bc](https://github.com/thi-ng/umbrella/commit/8b582bc))
|
|
75
72
|
- update all to use [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament)
|
|
73
|
+
- update all test stubs ([f2d6d53](https://github.com/thi-ng/umbrella/commit/f2d6d53))
|
|
74
|
+
- update imports ([138571a](https://github.com/thi-ng/umbrella/commit/138571a))
|
|
75
|
+
- update imports (transducers) ([6de47ec](https://github.com/thi-ng/umbrella/commit/6de47ec))
|
|
76
76
|
|
|
77
77
|
### [0.1.39](https://github.com/thi-ng/umbrella/tree/@thi.ng/ramp@0.1.39) (2020-12-07)
|
|
78
78
|
|
|
79
79
|
#### ♻️ Refactoring
|
|
80
80
|
|
|
81
|
-
- update type-only imports ([97a4e43](https://github.com/thi-ng/umbrella/commit/97a4e43))
|
|
82
81
|
- update type-only imports in various tests/pkgs ([3fd9c24](https://github.com/thi-ng/umbrella/commit/3fd9c24))
|
|
82
|
+
- update type-only imports ([97a4e43](https://github.com/thi-ng/umbrella/commit/97a4e43))
|
|
83
83
|
|
|
84
84
|
### [0.1.2](https://github.com/thi-ng/umbrella/tree/@thi.ng/ramp@0.1.2) (2020-02-25)
|
|
85
85
|
|
|
@@ -91,9 +91,9 @@ and/or version bumps of transitive dependencies.
|
|
|
91
91
|
|
|
92
92
|
#### 🚀 Features
|
|
93
93
|
|
|
94
|
+
- import as new pkg ([d58ba4e](https://github.com/thi-ng/umbrella/commit/d58ba4e))
|
|
94
95
|
- add ARamp.bounds(), factory fns, optimize timeIndex(), add benchmarks ([83d3670](https://github.com/thi-ng/umbrella/commit/83d3670))
|
|
95
96
|
- add linear()/hermite() factory fns
|
|
96
97
|
- add RampBounds & ARamp.bounds() to obtain min/max values
|
|
97
98
|
- switch to binary search if num stops >= 256
|
|
98
99
|
- update deps / readme
|
|
99
|
-
- import as new pkg ([d58ba4e](https://github.com/thi-ng/umbrella/commit/d58ba4e))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/ramp",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.33",
|
|
4
4
|
"description": "Parametric (non-)linearly interpolated 1D lookup tables for remapping values",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,18 +34,18 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/arrays": "^2.4.
|
|
38
|
-
"@thi.ng/compare": "^2.1.
|
|
39
|
-
"@thi.ng/math": "^5.3.
|
|
40
|
-
"@thi.ng/transducers": "^8.3.
|
|
41
|
-
"@thi.ng/vectors": "^7.5.
|
|
37
|
+
"@thi.ng/arrays": "^2.4.2",
|
|
38
|
+
"@thi.ng/compare": "^2.1.16",
|
|
39
|
+
"@thi.ng/math": "^5.3.13",
|
|
40
|
+
"@thi.ng/transducers": "^8.3.23",
|
|
41
|
+
"@thi.ng/vectors": "^7.5.24"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@microsoft/api-extractor": "^7.33.5",
|
|
45
|
-
"@thi.ng/testament": "^0.3.
|
|
45
|
+
"@thi.ng/testament": "^0.3.5",
|
|
46
46
|
"rimraf": "^3.0.2",
|
|
47
47
|
"tools": "^0.0.1",
|
|
48
|
-
"typedoc": "^0.23.
|
|
48
|
+
"typedoc": "^0.23.20",
|
|
49
49
|
"typescript": "^4.8.4"
|
|
50
50
|
},
|
|
51
51
|
"keywords": [
|
|
@@ -71,8 +71,8 @@
|
|
|
71
71
|
"node": ">=12.7"
|
|
72
72
|
},
|
|
73
73
|
"files": [
|
|
74
|
-
"
|
|
75
|
-
"
|
|
74
|
+
"./*.js",
|
|
75
|
+
"./*.d.ts"
|
|
76
76
|
],
|
|
77
77
|
"exports": {
|
|
78
78
|
".": {
|
|
@@ -94,5 +94,5 @@
|
|
|
94
94
|
"thi.ng": {
|
|
95
95
|
"year": 2019
|
|
96
96
|
},
|
|
97
|
-
"gitHead": "
|
|
97
|
+
"gitHead": "044ee6a3895720fc78e115032d4d831b63510929\n"
|
|
98
98
|
}
|