Andrew Jones
Andrew Jones
I ended up just creating a plugin. I need it for web components because if you just use a text loader for css, you have to append a script tag...
Yeah, the problem is that Safari doesn't support constructable style sheets.
Definitely! The code is very messy and complicated, so it might be difficult. I am just trying to get features completed rather than worrying about the code looking pretty. This...
Haha oh no. I knew those extensions would cause problems because of the compilation step. What are the error messages you encounter? I guess you followed the compilation steps in...
When D1 is available I will make it work!
It has arrived! The greatest D1 ORM of all time. https://github.com/thebinarysearchtree/flyweight#cloudflare-d1
@louwers hopefully it works now. in project root: ```bash rm -rf src/database npm uninstall create-flyweight npx create-flyweight d1 src/database ```
My ORM handles this properly because I actually know how sqlite works. Each transaction must have its own database connection. https://github.com/thebinarysearchtree/flyweight#transactions-and-concurrency
SQLite is designed to allow you to continue querying the database during a transaction as long as you use a different connection.
You need to run ```npm init``` first to create the package.json. I have updated the installation so it doesn't matter though. You probably want to delete the directory and create...