We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
cd theia/examples/browser && yo theia:browser ./src-gen/frontend/index.js is auto-created with the following lines:
cd theia/examples/browser && yo theia:browser
Promise.resolve() .then(function () { return import('theia-core\lib\application\browser\menu\browser-menu-module').then(load) }) .then(function () { return import('theia-core\lib\application\browser\clipboard\browser-clipboard-module').then(load) }) .then(function () { return import('theia-core\lib\filesystem\browser\filesystem-frontend-module').then(load) }) .then(function () { return import('theia-core\lib\workspace\browser\workspace-frontend-module').then(load) }) .then(function () { return import('theia-core\lib\navigator\browser\navigator-frontend-module').then(load) }) .then(function () { return import('theia-core\lib\terminal\browser\terminal-frontend-module').then(load) }) .then(function () { return import('theia-core\lib\editor\browser\editor-frontend-module').then(load) }) .then(function () { return import('theia-core\lib\monaco\browser\monaco-browser-module').then(load) }) .then(function () { return import('theia-core\lib\languages\browser\languages-frontend-module').then(load) }) .then(function () { return import('theia-core\lib\java\browser\java-frontend-module').then(load) }) .then(function () { return import('theia-core\lib\python\browser\python-frontend-module').then(load) }) .then(function () { return import('theia-core\lib\cpp\browser\cpp-frontend-module').then(load) }) .then(start);
The chracters "\" in the "return import" lines will cause compilation errors.
In order to make the compiler happy, I had to manually replace all "\" with "/"
The text was updated successfully, but these errors were encountered:
The same issues exists int ./src-gen/backend/main.js
Sorry, something went wrong.
#268: use / as a file separator in generated imports
0f8189c
Signed-off-by: Anton Kosiakov <anton.kosyakov@typefox.io>
@daxiansheng Could you try with #310?
f0d6e62
Should be fixed by #310
eclipse-theia#268: use / as a file separator in generated imports
d318851
akosyakov
No branches or pull requests
cd theia/examples/browser && yo theia:browser
./src-gen/frontend/index.js is auto-created with the following lines:
The chracters "\" in the "return import" lines will cause compilation errors.
In order to make the compiler happy, I had to manually replace all "\" with "/"
The text was updated successfully, but these errors were encountered: