Nikolas Poniros
Nikolas Poniros
In my case the extra line is added by the plugin itself when I use --fix. For example the following code ``` sql` SELECT 1 ` ``` is fixed to...
Depending on how you update you might be able to use http://dexie.org/docs/Table/Table.bulkPut(). http://dexie.org/docs/Table/Table.update() explains the difference between put and update. In case you use table.update you should put the calls...
The default part is normal. `import Dexie from 'dexie'` imports dexie using the default export and the default export is just dexie. Extending it should not be an issue unless...
In my experience a scripts folder containing shell scripts is always a top-level directory. A scripts folder in a subdirectory often contains files meant to be consumed by a browser....
Thanks for the info @hdorgeval. I didn't know that I can ignore files in the config file. Is this option documented in the README? I had an older config file...
Just an additional idea: if we implement a Cursor maybe we can use the es6 iterable protocol for it so that it works with for...of and the spread operator. (We...
I'm using dexie syncable combined with a server (https://github.com/nponiros/sync_server) which actually saves the data in a file. Then I use git to distribute the file to other clients. I guess...
Yes I don't see a way to do what you want with dexie syncable. I also tried to use a timestamp in the past but that caused other issues and...