Socket
Socket
Sign inDemoInstall

@spinajs/cli

Package Overview
Dependencies
Maintainers
0
Versions
219
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@spinajs/cli - npm Package Compare versions

Comparing version 2.0.261 to 2.0.262

2

lib/cjs/cli.d.ts
#!/usr/bin/env node
import "./args.js";
import './args.js';
//# sourceMappingURL=cli.d.ts.map

@@ -11,2 +11,6 @@ #!/usr/bin/env node

di_1.DI.setESMModuleSupport();
const bootstrappers = di_1.DI.resolve(Array.ofType(di_1.Bootstrapper));
for (const b of bootstrappers) {
await b.bootstrap();
}
await di_1.DI.resolve(configuration_common_1.Configuration);

@@ -17,3 +21,2 @@ const log = di_1.DI.resolve(log_1.Log, ['CLI']);

await di_1.DI.resolve(index_js_1.Cli);
process.exit(1);
}

@@ -20,0 +23,0 @@ catch (err) {

#!/usr/bin/env node
import "./args.js";
import './args.js';
//# sourceMappingURL=cli.d.ts.map
#!/usr/bin/env node
import { DI } from '@spinajs/di';
import { Bootstrapper, DI } from '@spinajs/di';
import { Log } from '@spinajs/log';
import { Cli } from './index.js';
import { Configuration } from '@spinajs/configuration-common';
import "./args.js";
import './args.js';
async function cli() {
DI.setESMModuleSupport();
const bootstrappers = DI.resolve(Array.ofType(Bootstrapper));
for (const b of bootstrappers) {
await b.bootstrap();
}
await DI.resolve(Configuration);

@@ -14,3 +18,2 @@ const log = DI.resolve(Log, ['CLI']);

await DI.resolve(Cli);
process.exit(1);
}

@@ -17,0 +20,0 @@ catch (err) {

{
"name": "@spinajs/cli",
"version": "2.0.261",
"version": "2.0.262",
"description": "SpinaJS command line module",

@@ -45,7 +45,7 @@ "main": "lib/cjs/index.js",

"dependencies": {
"@spinajs/configuration": "^2.0.261",
"@spinajs/di": "^2.0.261",
"@spinajs/exceptions": "^2.0.261",
"@spinajs/log": "^2.0.261",
"@spinajs/reflection": "^2.0.261",
"@spinajs/configuration": "^2.0.262",
"@spinajs/di": "^2.0.262",
"@spinajs/exceptions": "^2.0.262",
"@spinajs/log": "^2.0.262",
"@spinajs/reflection": "^2.0.262",
"commander": "10.0.0",

@@ -52,0 +52,0 @@ "reflect-metadata": "^0.1.13"

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

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