Socket
Socket
Sign inDemoInstall

serverless-alpha

Package Overview
Dependencies
Maintainers
2
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serverless-alpha - npm Package Compare versions

Comparing version 0.0.19 to 0.0.20

24

index.js

@@ -96,4 +96,4 @@ 'use strict' // eslint-disable-line strict

'logout:logout': this.logout.bind(this),
'after:deploy:initialize': this.injectArtifacts.bind(this),
'after:deploy:deploy': this.publishService.bind(this)
'after:deploy:initialize': this.publishService.bind(this)
// 'after:deploy:deploy': this.publishService.bind(this)
}

@@ -540,8 +540,16 @@ }

publishService(serviceDataWithReadme, clientWithAuth).catch(error => {
log(
"Couldn't publish this deploy information to the Serverless Platform due: \n",
error
)
})
publishService(serviceDataWithReadme, clientWithAuth)
.then(() => {
const username = jwtDecode(authToken).nickname
const serviceName = this.serverless.service.service
log(
`Your service is available at ${config.PLATFORM_FRONTEND_BASE_URL}services/${username}/${serviceName}`
)
})
.catch(error => {
log(
"Couldn't publish this deploy information to the Serverless Platform due: \n",
error
)
})
})

@@ -548,0 +556,0 @@ })

{
"name": "serverless-alpha",
"version": "0.0.19",
"version": "0.0.20",
"author": "serverless.com",

@@ -5,0 +5,0 @@ "license": "MIT",

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