serverless-tasks-handel-extension
Advanced tools
Comparing version 0.2.1 to 0.2.2
{ | ||
"name": "serverless-tasks-handel-extension", | ||
"version": "0.2.1", | ||
"version": "0.2.2", | ||
"description": "Handel Extension that provides serverless scheduled tasks using ECS Fargate", | ||
@@ -22,3 +22,4 @@ "main": "dist/extension.js", | ||
"handel-extension-support": "^0.31.1", | ||
"uuid": "^7.0.2" | ||
"uuid": "^7.0.2", | ||
"winston": "^2.3.1" | ||
}, | ||
@@ -31,2 +32,3 @@ "devDependencies": { | ||
"@types/uuid": "^7.0.0", | ||
"@types/winston": "2.3.1", | ||
"chai": "^4.1.2", | ||
@@ -33,0 +35,0 @@ "cpy-cli": "^2.0.0", |
@@ -43,2 +43,3 @@ /* | ||
import { v4 as uuid } from 'uuid'; | ||
import * as winston from 'winston'; | ||
import awsWrapper from './aws-wrapper'; | ||
@@ -48,2 +49,5 @@ import { ScheduledTasksServiceConfig } from './config-types'; | ||
// @ts-ignore | ||
winston.level = process.env.LOG_LEVEL || 'debug'; | ||
const SERVICE_NAME = 'ServerlessTasks'; | ||
@@ -50,0 +54,0 @@ |
80816
1085
5
15
+ Addedwinston@^2.3.1
+ Addedwinston@2.4.7(transitive)