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

serverless-plugin-additional-stacks

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serverless-plugin-additional-stacks - npm Package Compare versions

Comparing version 0.9.1 to 1.0.0

buildspec.yml

5

index.js

@@ -233,4 +233,7 @@ 'use strict'

if (typeof stack.Tags === 'object') {
// Add custom tags
// Add custom tags specified only for this stack
Object.assign(stackTags, stack.Tags)
} else if (typeof this.serverless.service.provider.stackTags === 'object') {
// Add stackTags from Serverless main provider config
Object.assign(stackTags, this.serverless.service.provider.stackTags)
}

@@ -237,0 +240,0 @@

7

package.json
{
"name": "serverless-plugin-additional-stacks",
"version": "0.9.1",
"version": "1.0.0",
"main": "index.js",
"repository": {},
"license": "MIT"
"license": "MIT",
"scripts": {
"test": "cd test && npm run test"
}
}

@@ -1,7 +0,8 @@

# PRE-RELEASE (0.9.0)
# Additional Stacks Plugin for Serverless 1.x
# Additional Stacks Plugin for Serverless 1.x
Created by Kenneth Falck <<kennu@sc5.io>> in 2017.
Copyright [SC5 Online](https://sc5.io). Released under the MIT license.
![Build Status](https://codebuilder.sc5.io/badge/serverless-plugin-additional-stacks?1)
## Overview and purpose

@@ -84,3 +85,3 @@

StackName: CustomName
Resources:
Resources: ...

@@ -92,3 +93,3 @@ ```

By default, additional stacks are deployed *before* the main Serverless
CloudFormatio resources. This ensures they are immediately available when your
CloudFormation resources. This ensures they are immediately available when your
Lambda functions start running.

@@ -95,0 +96,0 @@

@@ -8,4 +8,13 @@ {

"scripts": {
"install": "mkdir -p node_modules/serverless-plugin-additional-stacks && cp ../{index.js,package.json,README.md} node_modules/serverless-plugin-additional-stacks/"
"install": "cd service && npm install",
"test": "mocha --timeout 300000 tests.js"
},
"dependencies": {
"aws-sdk": "^2.36.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chalk": "^1.1.3",
"mocha": "^3.2.0",
"serverless": "^1.10.1"
}
}

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