serverless-plugin-additional-stacks
Advanced tools
Comparing version 0.9.1 to 1.0.0
@@ -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 @@ |
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Install scripts
Supply chain riskInstall scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.
Found 2 instances in 1 package
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Install scripts
Supply chain riskInstall scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
74571
15
763
1
128
2
1