-
Notifications
You must be signed in to change notification settings - Fork 14
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
Meteor 3.0 Migrations "ReferenceError: __DYNAMIC_VERSIONS__ is not defined" #36
Comments
I'm pretty sure this would be improved by meteor/meteor#12675. The build is erroring part way through but Meteor is silently ignoring the error and trying to run the app. I've seen this before with Meteor 3. |
Hello, I recently tried to try meteor 3.0 again, I cannot use svelte: compiler both in my own project and in zero installation. The error is as follows.
|
I found the problem here and sent a pr for a solution. zodern/melte-compiler#11 |
Hello @zodern, I recently migrated my project to Meteor 3.0 and encountered an issue. I found out where the problem is coming from, but what can we do as a solution?
I updated my application sequentially with the following commands:
meteor update --release 3.0-rc.2
meteor reset
rm -rf node_modules
rm -rf package-lock.json
meteor npm i
Then I ran my application.
meteor --settings settings.json --port 4100 --raw-logs
The application runs successfully, but on the client side, the application remains on a white screen and I get the following error in the log.
My observation is that when I remove the
svelte:compiler
setting frompackage.json
and add the[email protected]
package to the application, it works.Below is the content of the
packages
file andpackage.json
for the application.packages:
package.json:
The text was updated successfully, but these errors were encountered: