Hello,
Updating my app to the latest Alpha and getting the following error:
Unhandled Promise Rejection: Command join not found
I'm using it like this
import { join } from '@tauri-apps/api/path'
const path = await join('folder', 'filename.jpg')
I have already removed allowlist from tauri.conf.json. I don't see path as a 2.0.0-alpha plugin, so it seems like it's still in the core api? When I console.log(join) it contains a function too.
Is there a commit or PR that I could look at to see how path.join has changed? Thank you!