generator-theia-extension
generator-theia-extension copied to clipboard
A Yeoman generator for extensions to the Theia IDE
I found this was needed to prevent an error ``` mkdir my-extension && cd my-extension yo theia-extension ? The extension's type Hello World ? The extension's name hello-world HelloWorld create...
After the exceptional theia kick-starter training with [Jonas Helming](https://github.com/JonasHelming) from [EclipseSource GmbH](https://eclipsesource.com/de/technology/eclipse-theia/#eclipse-theia-training) I found that it would be good to have an easy starting point for either backend service extensions...
Bumps [semver](https://github.com/npm/node-semver) from 5.7.1 to 5.7.2. Release notes Sourced from semver's releases. v5.7.2 5.7.2 (2023-07-10) Bug Fixes 2f8fd41 #585 better handling of whitespace (#585) (@joaomoreno, @lukekarrys) Changelog Sourced from semver's...
Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) from 0.2.0 to 0.2.2. Release notes Sourced from decode-uri-component's releases. v0.2.2 Prevent overwriting previously decoded tokens 980e0bf https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.1...v0.2.2 v0.2.1 Switch to GitHub workflows 76abc93 Fix issue where decode...
Due to https://github.com/eclipse-theia/theia/pull/13082
root@k8s01:~/cwy/my-extension# yo theia-extension hello-world-extension ? The extension's type Hello World HelloWorldExtension create package.json Error theia-extension hello-world-extension EACCES: permission denied, open '/root/cwy/my-extension/package.json' ┌───────────────────────────────────────────────────┐ │ yo update check failed │ │ Try...
Greetings, In our company, we are trying to integrate an extension produced by yeoman generator, specifically "Tree Editor". Following the documentation [https://theia-ide.org/docs/composing_applications](url) we successfully created our extension and used the...
This generator generates a whole Theia-based application, not just a Theia extension, yet it's is invoked with `yo theia-extension`. A naive user will be surprised.
We have one yeoman generator that is invoked with `yo @theia/plugin` and this one is invoked with `yo theia-extension`. Why not use the same syntax like `yo @theia/extension`?
We currently generate various things like "Hello World", etc. Why not have a single generator that can generate Theia plugins as well? Like ``` yo theia -y plugin ```