Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@useoptic/cli-scripts

Package Overview
Dependencies
Maintainers
2
Versions
120
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@useoptic/cli-scripts - npm Package Compare versions

Comparing version 8.0.6 to 8.0.7

1

build/index.d.ts

@@ -5,2 +5,3 @@ /// <reference types="node" />

export declare function runStandaloneScript(modulePath: string, ...args: string[]): cp.ChildProcess;
export declare function runScriptByName(name: string, ...args: string[]): cp.ChildProcess;
//# sourceMappingURL=index.d.ts.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.runScriptByName = exports.runStandaloneScript = exports.basePath = void 0;
const cp = require("child_process");
const path = require("path");
exports.basePath = __dirname;

@@ -10,1 +12,5 @@ function runStandaloneScript(modulePath, ...args) {

exports.runStandaloneScript = runStandaloneScript;
function runScriptByName(name, ...args) {
return runStandaloneScript(path.join(exports.basePath, name), ...args);
}
exports.runScriptByName = runScriptByName;

10

package.json
{
"name": "@useoptic/cli-scripts",
"version": "8.0.6",
"version": "8.0.7",
"scripts": {
"ws:test": "echo scripts",
"ws:build": "yarn run tsc -b --verbose"
"ws:build": "yarn run tsc -b --verbose",
"ws:clean": "rm -rf build/*"
},
"repository": {
"type": "git",
"url": "ssh://git@github.com/useoptic/optic-package.git",
"directory": "workspaces/cli-scripts"
},
"main": "build/index.js",

@@ -9,0 +15,0 @@ "types": "build/index.d.ts",

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