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

@fastly/cli

Package Overview
Dependencies
Maintainers
0
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fastly/cli - npm Package Compare versions

Comparing version 10.13.3 to 10.14.0

index.d.ts

12

fastly.js

@@ -22,2 +22,12 @@ #!/usr/bin/env node

execFileSync(location, process.argv.slice(2), { stdio: "inherit" });
try {
execFileSync(location, process.argv.slice(2), { stdio: "inherit" });
} catch(err) {
if (err.code) {
// Spawning child process failed
throw err;
}
if (err.status != null) {
process.exitCode = err.status;
}
}

30

package.json
{
"name": "@fastly/cli",
"version": "10.13.3",
"version": "10.14.0",
"description": "Build, deploy and configure Fastly services from your terminal",
"type": "module",
"scripts": {
"prepack": "cp ../../../README.md ../../../LICENSE ../../../SECURITY.md .",
"version": "node ./update.js $npm_package_version"

@@ -14,2 +15,3 @@ },

"main": "index.js",
"types": "index.d.ts",
"engines": {

@@ -22,11 +24,21 @@ "node": ">=16"

"optionalDependencies": {
"@fastly/cli-darwin-arm64": "=10.13.3",
"@fastly/cli-darwin-x64": "=10.13.3",
"@fastly/cli-linux-arm64": "=10.13.3",
"@fastly/cli-linux-x64": "=10.13.3",
"@fastly/cli-linux-x32": "=10.13.3",
"@fastly/cli-win32-arm64": "=10.13.3",
"@fastly/cli-win32-x64": "=10.13.3",
"@fastly/cli-win32-x32": "=10.13.3"
"@fastly/cli-darwin-arm64": "=10.14.0",
"@fastly/cli-darwin-x64": "=10.14.0",
"@fastly/cli-linux-arm64": "=10.14.0",
"@fastly/cli-linux-x64": "=10.14.0",
"@fastly/cli-linux-x32": "=10.14.0",
"@fastly/cli-win32-arm64": "=10.14.0",
"@fastly/cli-win32-x64": "=10.14.0",
"@fastly/cli-win32-x32": "=10.14.0"
},
"files": [
"index.js",
"fastly.js",
"package-helpers.js",
"update.js",
"index.d.ts",
"README.md",
"LICENSE",
"SECURITY.md"
],
"license": "Apache-2.0",

@@ -33,0 +45,0 @@ "repository": {

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