Mark Burggraf

Results 59 comments of Mark Burggraf

I guess the best way to do this is for me to create a new sample app using `svelte-ionic-npm` then just compare things there to what I have in my...

Trying to set up a basic ionic app with svelte-ionic is giving this error: ``` /Users/markb/dev/svelte-ionic-npm/node_modules/@ionic/core/components/index.js:4 export { setAssetPath, setPlatformOptions } from '@stencil/core/internal/client'; ^^^^^^ SyntaxError: Unexpected token 'export' ```

If I can't resolve it I'll post a basic repo. We should have a starter repo anyway with a basic setup to make things easy. Or at the very least...

I've been working on converting my projects from [https://github.com/Tommertom/svelte-ionic-sidemenu-demo](https://github.com/Tommertom/svelte-ionic-sidemenu-demo) to the new version here [https://github.com/Tommertom/svelte-ionic-app](https://github.com/Tommertom/svelte-ionic-app). The environments are significantly different so it took a lot longer than I expected, but...

All that said, I have not yet tried the binding stuff yet (it took me a lot just to catch up to using `npm ionic-svelte`!)

Not sure what you mean about an NPM library. I don't need to create a lib at this point. Thanks for the pointer about the experimental stuff. I'll hold off...

I'm using this repo as a base for a fairly large project now, and it's going very well. Are you upgrading to the latest SvelteKit release, and if so, when?...

Thanks for this -- I appreciate this POV, basically "if it's working no need to upgrade now." And it's working extremely well, as I said. Just let me know where...

I haven't implemented any form handling -- I usually do most of that by hand anyway, sorry.

Here's my workaround. In my pages: ``` import { pushPathStack, popPathStack } from '$services/navigation.service' const ionViewWillEnter = async () => { pushPathStack(); } { goto(popPathStack()); }}> ``` `navigation.service.ts`: ``` export...