-
Notifications
You must be signed in to change notification settings - Fork 65
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
Bundle misses modules #106
Comments
Thanks for the detailed issue! I've gut a hunch it has to do with the global install, it seems to cause some weirdness with webpack module resolution. Could you try installing the
{
"scripts": "x0 docs"
} |
Tried that, Ran ❯ npm doctor
Check Value Recommendation
npm ping OK
npm -v v6.4.1
node -v v8.12.0
npm config get registry https://registry.npmjs.org/
which git /usr/bin/git
Perms check on cached files ok
Perms check on global node_modules ok
Perms check on local node_modules ok
Verify cache contents verified 1911 tarballs |
I'm just realizing it looks like your file ( x0 can't handle the route of your project currently, it expects to be handed a directory of js/md/mdx files. It looks like it might be trying to build your This might fix it maybe (if your index.js is in the root):
|
Hm, nope it's definitely in the same directory I'm executing ~/Projects
❯ cd demo
~/Projects/demo
❯ ls
index.js node_modules package.json yarn.lock
~/Projects/demo
❯ cat index.js
import React from 'react'
import superb from 'superb'
export default class extends React.Component {
render () {
return (
<h1>Hello</h1>
)
}
}
~/Projects/demo
❯ npx x0 .
[Same error log] |
I am also having the same problem. Did you find a solution? |
I didn't, unfortunately. Glad it's not just me! |
I was able to reproduce this error as well, so that will help with debuggin. It appears to be an issue with some dependency resolution deep down the tree. Going to try to dive in this weekend to see what's up because I'm not sure this is a quick fix unfortunately. |
Thanks @johno, let me know if you need any help! |
@johno I was able to consistently reproduce the errors with resolution when importing |
Ok, so it became even more weird now. This works fine: $ mkdir demo
$ cd demo
$ echo "import Evergreen from 'evergreen-ui'" > index.js
$ yarn add evergreen-ui
$ x0 . --open Notice, there's no package.json here. I have no idea where Yarn installs But, if you perform the same procedure, but add |
Thanks for digging @vadimdemedes! Super weird. For x0 I believe it's a regression in react-live/buble that is causing the Doesn't seem to explain the issue with Evergreen since they don't seem to have those same deps. When it errors with Evergreen is it the same |
I think this might be related: bublejs/buble#159 |
That fixes it for me (pinning to [email protected]).
As a temp patch, I'll pin the dep in x0 until this get worked out upstream. |
I published a temporary fix as |
It looks like Thanks a lot for fixing this, I'm a really happy user of |
Thank you very much for your hard work! I will try again on Monday :)
Get Outlook for Android<https://aka.ms/ghei36>
…________________________________
From: John Otander <[email protected]>
Sent: Saturday, October 20, 2018 3:49:36 PM
To: c8r/x0
Cc: Mokbul Miah; Manual
Subject: Re: [c8r/x0] Bundle misses modules (#106)
I published a temporary fix as 6.0.7. Please let me know if you see any more issue or this fix doesn't work for you. Thanks for reporting! ❤️
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub<#106 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/ALkmpMFrx8t_eudq2ye7npdOqKYtOpTqks5umzgAgaJpZM4XjNfS>.
|
Going to reopen this since I think there is a second issue that @vadimdemedes is seeing. If you get a moment could you please create a minimal repo this error you're seeing I can clone locally? I haven't been able to reproduce the errors in your gist. With a small repro I can at least determine whether or not it's an issue with x0 (I think this might still be an x0 issue since there isn't any reason that |
I was able to reproduce this error using these commands: $ docker run -it --rm node bash
$ cd /home/node
$ echo "import Evergreen from 'evergreen-ui'" > demo/index.js
$ npm i -g @compositor/x0
$ cd demo
$ npm i evergreen-ui
$ cd ..
$ x0 demo I think explicit commands here will definitely help you reproduce this error, as repo would be just one file (index.js) and package-lock.json. Let me know if you still want it though ;) |
Thank you very much! I can confirm I am not experiencing the issue anymore. |
I'm not sure if it's the right title for the issue, let me know if there's a better one.
I've used x0 on my main laptop and it worked fantastic, but when I tried setting it up on another one, I can't get it to work. I constantly see this error:
I've tried reinstalling Node.js via multiple methods (official package, homebrew, n) and even reproduced the same issue in a fresh Docker container (
$ docker run --rm -it node bash
). Steps are all the same and taken from the official readme:$ npm i -g @compositor/x0
$ mkdir demo
$ vim index.js
and insert this:$ x0 docs --open
x0 build
.I've also made a video how I reproduce this in a Docker container: https://www.dropbox.com/s/0ktvsx1n2bkmwma/x0.mov?dl=0.
I thought it might have something to do with module resolution and global modules, but since it fails in an isolated Docker container, it might be a bug in x0.
Unfortunately I had to give up that other laptop with working x0 for repair, so I can't find the differences now. Would appreciate any ideas on what might be wrong with my set up :)
Thank you for an amazing piece of software!
The text was updated successfully, but these errors were encountered: