@eclipse-glsp/cli 2.6.0 → 2.7.0-next.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -26
- package/dist/cli.js +181 -1453
- package/dist/cli.js.map +3 -3
- package/package.json +3 -5
package/README.md
CHANGED
|
@@ -141,7 +141,6 @@ Commands:
|
|
|
141
141
|
version [options] <versionType> [customVersion] Set the version of all packages in a GLSP repository
|
|
142
142
|
prepare [options] <versionType> [customVersion] Prepare a new release for a GLSP component (version bump, changelog, PR
|
|
143
143
|
creation ...)
|
|
144
|
-
publish [options] Publish a new release for a GLSP component (npm, maven, github ...)
|
|
145
144
|
help [command] display help for command
|
|
146
145
|
```
|
|
147
146
|
|
|
@@ -199,31 +198,6 @@ Options:
|
|
|
199
198
|
-h, --help display help for command
|
|
200
199
|
```
|
|
201
200
|
|
|
202
|
-
### publish
|
|
203
|
-
|
|
204
|
-
Helper command for publishing a new GLSP release.
|
|
205
|
-
This command should be used on the main branch of GLSP repo after a (previously prepared) Release PR has been merged.
|
|
206
|
-
Creates & publishes an new tag and Github release.
|
|
207
|
-
In addition, for all non-Java repositories the release version will be published to npm.
|
|
208
|
-
|
|
209
|
-
The glsp repository type ("glsp-client", "glsp-server-node" etc.) is auto detected from the given repository path.
|
|
210
|
-
If the command is invoked in a non-GLSP repository it will fail.
|
|
211
|
-
|
|
212
|
-
```console
|
|
213
|
-
$ glsp releng publish -h\
|
|
214
|
-
Usage: glsp releng publish [options]
|
|
215
|
-
|
|
216
|
-
Publish a new release for a GLSP component (npm, maven, github ...)
|
|
217
|
-
|
|
218
|
-
Options:
|
|
219
|
-
-v, --verbose Enable verbose (debug) log output (default: false)
|
|
220
|
-
-r, --repoDir <repoDir> Path to the component repository (default:
|
|
221
|
-
"<cwd>")
|
|
222
|
-
--no-npm Skip npm publishing
|
|
223
|
-
-d, --draft Create a draft GitHub release (default: false)
|
|
224
|
-
-h, --help display help for command
|
|
225
|
-
```
|
|
226
|
-
|
|
227
201
|
## More information
|
|
228
202
|
|
|
229
203
|
For more information, please visit the [Eclipse GLSP Umbrella repository](https://github.com/eclipse-glsp/glsp) and the [Eclipse GLSP Website](https://www.eclipse.org/glsp/).
|