-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Fixed some follow ups after restructuring and issues around generator-theia #310
Conversation
Signed-off-by: Anton Kosiakov <anton.kosyakov@typefox.io>
Signed-off-by: Anton Kosiakov <anton.kosyakov@typefox.io>
Signed-off-by: Anton Kosiakov <anton.kosyakov@typefox.io>
Signed-off-by: Anton Kosiakov <anton.kosyakov@typefox.io>
Signed-off-by: Anton Kosiakov <anton.kosyakov@typefox.io>
Signed-off-by: Anton Kosiakov <anton.kosyakov@typefox.io>
Signed-off-by: Anton Kosiakov <anton.kosyakov@typefox.io>
doc/Developing.md
Outdated
@@ -41,7 +41,7 @@ This command does a few things: | |||
|
|||
## Run the browser-based example application | |||
|
|||
We can start the application with: | |||
We can start the application from examples/browser directory with: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd suggest saying "from the".
doc/Developing.md
Outdated
|
||
npm run rebuild:web | ||
|
||
It can also be started with from examples/electron directory: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd change it to
It can also be started from the examples/electron directory with:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see why someone would want to rollback however ?
Is this more confusing then helping?
Maybe move this to the web basec example section?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After rebuilding for electron, web won't work, but by default web is working. I can put in the web section that if you run npm run rebuild:electron
don't forget to run npm run rebuild:web
fisrt.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK yes I was curious about that so this means that since with hoisting we have only 1 node-modules we can only have 1 example at the time without rebuilding :(
But yes sounds better to me in the web section thx
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It could be that we can have a setup where we exclude node-pty from hoisting and don't need to run rebuild, but I've spent half a day and failed to come up with such. I think mostly we work with one or another example anyway and later with more experience maybe can overcome it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good
@@ -51,7 +51,7 @@ export abstract class AbstractGenerator { | |||
return `Promise.resolve(${invocation})`; | |||
} | |||
return invocation; | |||
}).map(statement => `.then(function () { return ${statement}.then(load) })`); | |||
}).map(statement => ` .then(function () { return ${statement}.then(load) })`); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this change for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to fix indentation in the generated source files: src-gen/frontend/main.js
and src-gen/backend/main.js
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes thx for that! I had run into trouble with it
@@ -21,6 +21,7 @@ before_script: | |||
before_install: | |||
- "npm install -g npm@^4" | |||
- "google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222 http://localhost &" | |||
bundler_args: --retry 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this travis specific or it's passed to lerna or something ?
I can't find options on lerna or npm and travis ci references bundler_args with the ruby bundler
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is travis specific, depending on provided language travis knows how to build the project, like run npm install
first and then npm test
for node projects. It also has some defaults for such projects, e.g. for node to try to run npm install
3 times if the first fails, since npmjs sometimes is not available.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK thanks!
doc/Developing.md
Outdated
|
||
npm run rebuild:web | ||
|
||
It can also be started with from examples/electron directory: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see why someone would want to rollback however ?
Is this more confusing then helping?
Maybe move this to the web basec example section?
@@ -116,16 +125,17 @@ To build and run the browser example: | |||
|
|||
git clone https://github.com/theia-ide/theia \ | |||
&& cd theia \ | |||
&& npm install --unsafe-perm\ | |||
&& cd ../../examples/browser \ | |||
&& npm install --unsafe-perm \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
BTW we discussed this a bit and --unsafe-perm looks really weird.
I Suggest we move it out of the TL;DR and add it to the troubleshooting section
but that can be in another PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you open an issue for it? or PR :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Issue #311
doc/Internals.md
Outdated
``` | ||
|
||
To webpack.config.js so that the requests are proxied to the backend properly. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should update it to say that now the endpoints with /services/* are served by the webpack dev server
'safe-json-stringify': emptyPath, | ||
'mv': emptyPath, | ||
'source-map-support': emptyPath | ||
'vs': path.resolve(outputPath, monacoEditorPath) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this not needed for bunyan anymore?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't use bunyan in the frontend and use the webpack to build only the frontend, so these modules are never bundled
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right :) thx
@@ -10,11 +13,13 @@ | |||
"preinstall": "cd generator-theia && npm install", | |||
"prepare": "npm install generator-theia && npm run bootstrap && npm run clean && npm run build", | |||
"prepublishOnly": "npm run test", | |||
"bootstrap": "node scripts/generate.js && lerna bootstrap --hoist", | |||
"bootstrap": "node scripts/generate.js && lerna bootstrap --hoist -- --no-optional", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this doing? (the --no-optional) I'm not sure it's passed to what
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bunyan has some optional dependencies for dtracing and so on, we don't use it, by passing --no-optional
we avoid downloading unnecessary dependencies.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK I still don't see how it goes up to bunyan but will investigate
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://github.com/trentm/node-bunyan/blob/master/package.json#L25 it declares optional dependencies here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So this is passed to npm install in the end? so all modules are with --no-optional?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
right, to enable them later we can either remove passing this option or add them explicitly
Signed-off-by: Anton Kosiakov <anton.kosyakov@typefox.io>
Signed-off-by: Anton Kosiakov <anton.kosyakov@typefox.io>
No description provided.