:bug: Investigation repo for Snowpack + Vest bug
Importing specific Vest components does not work at the top import level.
// in src/App.svelte
// this does not work
import { create, enforce, test } from 'vest';
// this works
import vest from 'vest';
const { create, enforce, test } = vest;
TODO: Try to understand where the problem is.
$ npm i && npm start