-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: compiler subpackage #10988
chore: compiler subpackage #10988
Conversation
🦋 Changeset detectedLatest commit: 6c77ba9 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Pretty sure this will break language tools - @jasonlyu123 could you check and if it does break create a PR that can deal with the new structure? |
Released new versions of language tools which can deal with the subpackage, so this can be merged whenever. |
svelte vs code is crashing, can't find complier.cjs and eslint is not liking require in index.js file as it should be module according to eslint expectations |
Moves
compiler.cjs
tocompiler/index.js
, per a previous decision. I had hoped to useimportScript
inside the REPL workers, but alas we can't do that because they're module workers (but only during development IIUC?) and I couldn't be bothered to fight with it