New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@eclipse-glsp/cli

Package Overview
Dependencies
Maintainers
6
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eclipse-glsp/cli - npm Package Compare versions

Comparing version 2.2.0-next.886d2d0.156 to 2.2.0-next.b5aff4f.157

lib/commands/update-next.d.ts

4

lib/app.js

@@ -23,2 +23,3 @@ #!/usr/bin/env node

const release_1 = require("./commands/release/release");
const update_next_1 = require("./commands/update-next");
const command_util_1 = require("./util/command-util");

@@ -31,4 +32,5 @@ exports.COMMAND_VERSION = '1.1.0-next';

.addCommand(release_1.ReleaseCommand)
.addCommand(check_header_1.CheckHeaderCommand);
.addCommand(check_header_1.CheckHeaderCommand)
.addCommand(update_next_1.UpdateNextCommand);
app.parse(process.argv);
//# sourceMappingURL=app.js.map

@@ -60,5 +60,5 @@ "use strict";

try {
(0, logger_1.configureLogger)(cliOptions.verbose);
logger_1.LOGGER.debug('Cli options:', cliOptions);
(0, command_util_1.configureShell)({ silent: !cliOptions.verbose });
(0, logger_1.configureLogger)(cliOptions.verbose);
checkGHCli();

@@ -65,0 +65,0 @@ const version = deriveVersion(releaseType, customVersion);

{
"name": "@eclipse-glsp/cli",
"version": "2.2.0-next.886d2d0.156+886d2d0",
"version": "2.2.0-next.b5aff4f.157+b5aff4f",
"description": "CLI Tooling & scripts for GLSP components",

@@ -47,2 +47,3 @@ "keywords": [

"node-fetch": "^2.6.11",
"node-jq": "^4.3.1",
"readline-sync": "^1.4.10",

@@ -53,3 +54,3 @@ "semver": "^7.5.1",

"devDependencies": {
"@eclipse-glsp/config": "2.2.0-next.886d2d0.156+886d2d0",
"@eclipse-glsp/config": "2.2.0-next.b5aff4f.157+b5aff4f",
"@types/glob": "^8.1.0",

@@ -64,3 +65,3 @@ "@types/node-fetch": "^2.6.6",

},
"gitHead": "886d2d02687e28a6a6c243b96449f31b738a3c4e"
"gitHead": "b5aff4fd6b78bf4c61ce7190cc4a84a0d06626aa"
}

@@ -86,2 +86,18 @@ # Eclipse GLSP - CLI

## updateNext
```console
$ glsp updateNext -h
Usage: glsp updateNext|u [options] [rootDir]
Updates all `next` dependencies in GLSP project to the latest version
Arguments:
rootDir The repository root (default: "<cwd>")
Options:
-v, --verbose Enable verbose (debug) log output (default: false)
-h, --help display help for command
```
## More information

@@ -88,0 +104,0 @@

@@ -20,2 +20,3 @@ #!/usr/bin/env node

import { ReleaseCommand } from './commands/release/release';
import { UpdateNextCommand } from './commands/update-next';
import { baseCommand } from './util/command-util';

@@ -30,4 +31,5 @@

.addCommand(ReleaseCommand)
.addCommand(CheckHeaderCommand);
.addCommand(CheckHeaderCommand)
.addCommand(UpdateNextCommand);
app.parse(process.argv);

@@ -80,5 +80,5 @@ /********************************************************************************

try {
configureLogger(cliOptions.verbose);
LOGGER.debug('Cli options:', cliOptions);
configureShell({ silent: !cliOptions.verbose });
configureLogger(cliOptions.verbose);
checkGHCli();

@@ -85,0 +85,0 @@ const version = deriveVersion(releaseType, customVersion);

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc