Jakub T. Jankiewicz
Jakub T. Jankiewicz
@RonWizz Please first show what the API would look like. I don't want you to waste your time.
@eugeniol can you show your exact code?
I think that canonical git don't check timestamp of the file only file content. So this will never be implemented. Unless you can find example of working with git where...
I though, based on your comment, that you want to make status return modified when time of the file is changed. An OP code is Original Poster Code, which means...
The fix was invalid, Need to revert.
You have a typo: https://github.com/isomorphic-git/isomorphic-git/actions/runs/8610074109/job/23604865135?pr=1898
I've added comments to the [commit](https://github.com/isomorphic-git/isomorphic-git/pull/1898/commits/b9aec417af39ea974d521e7eae6c4ea2a003e865), they are not visible on the PR.
It's probably because it try to execute `align_image_stack ""` with empty argument.
I have a similar problem, `insertRule` can't be modified: ```typescript const $style = document.createElement('style'); document.head.appendChild($style); const sheet = $style.sheet!; const style = { color: 'red' }; const index = sheet.cssRules.length;...
I was investigating and it seems that the problem is that when the CSS property is not present in the rule when inserting you can't change it afterwards: ```typescript it('should...