@thi.ng/dual-algebra 0.4.61 → 0.4.63

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**: 2024-03-01T15:22:50Z
3
+ - **Last updated**: 2024-03-07T20:40:47Z
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/README.md CHANGED
@@ -63,6 +63,8 @@ Some examples (see further below for code example):
63
63
  Alternatively, use convenience fns to create dual numbers:
64
64
 
65
65
  ```ts
66
+ import { $, $2, $3, dual } from "@thi.ng/dual-algebra";
67
+
66
68
  $(5) // [5, 0]
67
69
  $(5, 1) // [5, 1]
68
70
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/dual-algebra",
3
- "version": "0.4.61",
3
+ "version": "0.4.63",
4
4
  "description": "Multivariate dual number algebra, automatic differentiation",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -32,10 +32,11 @@
32
32
  "doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
33
33
  "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
34
34
  "pub": "yarn npm publish --access public",
35
- "test": "bun test"
35
+ "test": "bun test",
36
+ "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
36
37
  },
37
38
  "dependencies": {
38
- "@thi.ng/api": "^8.9.27"
39
+ "@thi.ng/api": "^8.9.28"
39
40
  },
40
41
  "devDependencies": {
41
42
  "@microsoft/api-extractor": "^7.40.1",
@@ -91,5 +92,5 @@
91
92
  "status": "alpha",
92
93
  "year": 2020
93
94
  },
94
- "gitHead": "d660ae8fd1bf64d919b4334f19509f1f539d70f6\n"
95
+ "gitHead": "a421058a65ba76608d94129ac29451bfedaf201c\n"
95
96
  }