Anyone ever see this error setting up SQLDelight i...
# squarelibraries
c
Anyone ever see this error setting up SQLDelight in JS?
Copy code
:frontend-decompose-logic:jsMain: Could not find app.cash.sqldelight:sqljs-driver:2.0.2.
Required by:
    project :frontend-decompose-logic
Looks like the latest version we can get is just
2.0.0-alpha5
Actually just realized the dependencies for js target is changed to this:
Copy code
implementation("app.cash.sqldelight:web-worker-driver:2.0.2")
      implementation(npm("@cashapp/sqldelight-sqljs-worker", "2.0.2"))
      implementation(npm("sql.js", "1.6.2"))
      implementation(devNpm("copy-webpack-plugin", "9.1.0"))
s
This was very helpful! Thank you. They should mention it in their official documentation!
1