Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Object + Debug #24

Closed
wants to merge 28 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
a2cc59a
object: mapObject, reduceObject
hbbio Mar 14, 2024
3d48eab
object: cellifyObject
hbbio Mar 15, 2024
bba417b
object: extend cellifyObject test to subscribers
hbbio Mar 15, 2024
59825c4
object: fix cellifyObject type
hbbio Mar 15, 2024
bc84141
gitignore: update
hbbio Mar 16, 2024
86157cb
index: export object utilities
hbbio Mar 16, 2024
9c00fbb
object: improve cellifyObject test
hbbio Mar 16, 2024
afff40f
cell: fullName
hbbio Mar 16, 2024
0eef57b
debug: rewrite debugging functions and messages
hbbio Mar 29, 2024
eb9b1be
sheet: change canDelete to references
hbbio Apr 2, 2024
6c07e9e
sheet: cleanup
hbbio Apr 2, 2024
49ce81a
sheet: update test
hbbio Apr 2, 2024
da6db65
sheet: fix mapRaw error text
hbbio Apr 2, 2024
8601bb0
sheet: restore release after gc
hbbio Apr 2, 2024
090de07
undefined: improve test
hbbio Apr 2, 2024
11f7b83
sheet: Computations<V> reverts to array
hbbio Apr 2, 2024
5c33409
proxy: test deletion
hbbio Apr 2, 2024
e26f616
proxy: test impossible deletion with loop
hbbio Apr 2, 2024
afaf788
sheet, proxy: proxy ids
hbbio Apr 2, 2024
f6da302
package: bump graph version
hbbio Apr 3, 2024
b584a28
proxy, sheet: addProxyDependencies, implement proxy cycle check
hbbio Apr 3, 2024
18f1312
object: add CellObject<T> type variable
hbbio Apr 4, 2024
2c61252
sheet: fix dependentCells
hbbio Apr 4, 2024
eaea179
object: remove cellifyObject
hbbio Apr 4, 2024
70748af
object: use mapNoPrevious in reduceObject
hbbio Apr 4, 2024
b3ada91
object: clean imports
hbbio Apr 4, 2024
c7274bc
Merge branch 'sheet-debug' into object
hbbio Apr 4, 2024
7760dfa
sheet: restore dependentCells after merge
hbbio Apr 4, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ node_modules
coverage
dist
*.dot
*.png
src/*.dot
src/*.png
README.html
coverage
.DS_Store
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"LICENSE"
],
"dependencies": {
"@okcontract/graph": "0.1.3"
"@okcontract/graph": "0.1.4"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
Expand Down
Loading
Loading