From 6f53fbd1b58a548a158cd42b1cf4d9dfdc8c1f79 Mon Sep 17 00:00:00 2001 From: Kenneth Falck Date: Mon, 21 Aug 2017 21:36:04 +0300 Subject: [PATCH] Rename from ServerlessPlugin to TypeScriptPlugin --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 6c48d059..436a7eb1 100644 --- a/src/index.ts +++ b/src/index.ts @@ -13,7 +13,7 @@ import { watchFiles } from './watchFiles' const serverlessFolder = '.serverless' const buildFolder = '.build' -export class ServerlessPlugin { +export class TypeScriptPlugin { private originalServicePath: string private isWatching: boolean @@ -206,4 +206,4 @@ export class ServerlessPlugin { } -module.exports = ServerlessPlugin +module.exports = TypeScriptPlugin