Sergey
Sergey
The code from `setup.js`, that downloads schema: ``` // // Inject "babel-plugin-transform-export-extensions" // ----------------------------------------------------------------------------- file = path.resolve('./node_modules/babel-preset-react-app/index.js'); text = fs.readFileSync(file, 'utf8'); if (!text.includes('babel-plugin-transform-export-extensions')) { if (text.includes('const plugins = [')) {...
It is a little bit strange, that I need to run `yarn relay` on each iteration or run the watch process in another tab. So, I made such start command:...
I noticed that I have a sufficient performance decrease when one model action calls another model action in the loop due to it having been logged to redux devtool. It...
As mentioned in the release: > This makes the built-in observability in Dexie a nice replacement for dexie-observable addon - and better, as that addon doesnt support workers, you will...
I am just curious, will the transaction work as expected if I do this: ``` worker.postMessage({ id: 2, action: "exec", sql: "BEGIN TRANSACTION" }); worker.postMessage({ id: 3, action: "exec", sql:...
Is it planning to add hook API support?
Giving: ```tsx type Props = { note: NoteModel; database: Database; noteId: string }; const NotePageComponent: React.FC = ({ note }) => { const database = useDatabase(); const history = useHistory();...
When I do such request: ``` await db.select('SELECT COUNT(*) AS "count" FROM (SELECT * FROM "notes")'); ``` The result is: ``` [{"count":null}] ``` I use #release branch