@thi.ng/soa 0.4.21 → 0.4.23
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 +1 -1
- package/README.md +5 -5
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<!-- This file is generated - DO NOT EDIT! -->
|
|
2
2
|
|
|
3
|
-
# 
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@thi.ng/soa)
|
|
6
6
|

|
|
@@ -14,8 +14,8 @@ This project is part of the
|
|
|
14
14
|
- [AOS (Array Of Structures)](#aos-array-of-structures)
|
|
15
15
|
- [SOA (Structure of Arrays)](#soa-structure-of-arrays)
|
|
16
16
|
- [Hybrid](#hybrid)
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
- [Status](#status)
|
|
18
|
+
- [Related packages](#related-packages)
|
|
19
19
|
- [Installation](#installation)
|
|
20
20
|
- [Dependencies](#dependencies)
|
|
21
21
|
- [Usage examples](#usage-examples)
|
|
@@ -41,7 +41,7 @@ SOA & AOS memory mapped structured views with optional & extensible serializatio
|
|
|
41
41
|
|
|
42
42
|

|
|
43
43
|
|
|
44
|
-
|
|
44
|
+
## Status
|
|
45
45
|
|
|
46
46
|
**ALPHA** - bleeding edge / work-in-progress
|
|
47
47
|
|
|
@@ -51,7 +51,7 @@ See tests for usage. This package might be merged with and/or superseded
|
|
|
51
51
|
by
|
|
52
52
|
[@thi.ng/ecs](https://github.com/thi-ng/umbrella/tree/develop/packages/ecs).
|
|
53
53
|
|
|
54
|
-
|
|
54
|
+
## Related packages
|
|
55
55
|
|
|
56
56
|
- [@thi.ng/ecs](https://github.com/thi-ng/umbrella/tree/develop/packages/ecs) - Entity Component System based around typed arrays & sparse sets
|
|
57
57
|
- [@thi.ng/malloc](https://github.com/thi-ng/umbrella/tree/develop/packages/malloc) - ArrayBuffer based malloc() impl for hybrid JS/WASM use cases, based on thi.ng/tinyalloc
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/soa",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.23",
|
|
4
4
|
"description": "SOA & AOS memory mapped structured views with optional & extensible serialization",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,20 +34,20 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.4.
|
|
38
|
-
"@thi.ng/binary": "^3.3.
|
|
39
|
-
"@thi.ng/errors": "^2.
|
|
40
|
-
"@thi.ng/transducers-binary": "^2.1.
|
|
41
|
-
"@thi.ng/vectors": "^7.5.
|
|
37
|
+
"@thi.ng/api": "^8.4.2",
|
|
38
|
+
"@thi.ng/binary": "^3.3.5",
|
|
39
|
+
"@thi.ng/errors": "^2.2.0",
|
|
40
|
+
"@thi.ng/transducers-binary": "^2.1.19",
|
|
41
|
+
"@thi.ng/vectors": "^7.5.15"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@microsoft/api-extractor": "^7.
|
|
45
|
-
"@thi.ng/equiv": "^2.1.
|
|
46
|
-
"@thi.ng/testament": "^0.
|
|
44
|
+
"@microsoft/api-extractor": "^7.31.1",
|
|
45
|
+
"@thi.ng/equiv": "^2.1.10",
|
|
46
|
+
"@thi.ng/testament": "^0.3.0",
|
|
47
47
|
"rimraf": "^3.0.2",
|
|
48
48
|
"tools": "^0.0.1",
|
|
49
49
|
"typedoc": "^0.22.17",
|
|
50
|
-
"typescript": "^4.
|
|
50
|
+
"typescript": "^4.8.3"
|
|
51
51
|
},
|
|
52
52
|
"keywords": [
|
|
53
53
|
"acceleration",
|
|
@@ -105,5 +105,5 @@
|
|
|
105
105
|
"status": "alpha",
|
|
106
106
|
"year": 2019
|
|
107
107
|
},
|
|
108
|
-
"gitHead": "
|
|
108
|
+
"gitHead": "973139c5aa3b50081020f4cc726a7cc330f77fc7\n"
|
|
109
109
|
}
|