Skip to content
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

Nested imports are not supported #10

Open
red-meadow opened this issue Sep 18, 2022 · 2 comments
Open

Nested imports are not supported #10

red-meadow opened this issue Sep 18, 2022 · 2 comments

Comments

@red-meadow
Copy link
Contributor

This code doesn't work:

if (Meteor.isServer) {
  import { xxx } from 'yyy'
  console.log(xxx)
}

It would be nice to have this feature. I got around this problem by replacing import with require() in the existing project, but AFAIK it's not the same.

@Akryum
Copy link
Owner

Akryum commented Sep 21, 2022

Nested imports are a non-standard feature of Meteor.

For the specific use case of Meteor.isServer and Meteor.isClient, we could replace them statically with true or false so that the relevant code and imports are tree-shaken (if it doesn't have side-effects):

import { xxx } from 'yyy'

if (Meteor.isServer) {
  console.log(xxx)
}

Another solution is dynamic imports.

if (Meteor.isServer) {
  const { xxx } = await import('yyy')
  console.log(xxx)
}

@red-meadow
Copy link
Contributor Author

I tired to use dynamic imports, they worked fine in development but failed on a build step. Vite treated them as a part of a client code, created chunks and there were problems with imports inside those chunks, e. g. this import could not be resolved:
import { Email } from 'meteor/email'

I replaced all dynamic imports with require() and everything seems to be working just fine. The server code in not bundled for the client.

Akryum pushed a commit that referenced this issue Oct 10, 2023
⚡ Add Svelte example application
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants