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

Fixed some follow ups after restructuring and issues around generator-theia #310

Merged
merged 10 commits into from
Jul 20, 2017

Conversation

akosyakov
Copy link
Member

No description provided.

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>
Signed-off-by: Anton Kosiakov <anton.kosyakov@typefox.io>
@@ -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:
Copy link
Contributor

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".


npm run rebuild:web

It can also be started with from examples/electron directory:
Copy link
Contributor

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:

Copy link

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?

Copy link
Member Author

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.

Copy link

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

Copy link
Member Author

@akosyakov akosyakov Jul 19, 2017

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.

Copy link

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) })`);
Copy link
Contributor

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?

Copy link
Member Author

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

Copy link

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
Copy link

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

Copy link
Member Author

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.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK thanks!


npm run rebuild:web

It can also be started with from examples/electron directory:
Copy link

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 \
Copy link

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

Copy link
Member Author

@akosyakov akosyakov Jul 19, 2017

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 :)

Copy link

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.

Copy link

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)
Copy link

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?

Copy link
Member Author

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

Copy link

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",
Copy link

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

Copy link
Member Author

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.

Copy link

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

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link

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?

Copy link
Member Author

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>
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

Successfully merging this pull request may close these issues.

4 participants