When compiling to custom elements, getContext returns undefined ```javascript // Select.svelte import { setContext } from 'svelte' setContext('select', { selected: 'one' }) // SelectOption.svelte import { getContext } from 'svelte' const { selected } = getContext('select') // undefined ```