From 38b6501612c299e7e3f3506b40e14cf113d2b313 Mon Sep 17 00:00:00 2001 From: Ibby Hadeed Date: Thu, 23 Aug 2018 10:15:28 -0400 Subject: [PATCH] chore(): handle identifiers in v5 build process Closes #2652 --- scripts/build/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build/helpers.ts b/scripts/build/helpers.ts index ae19a4f1..0288d773 100644 --- a/scripts/build/helpers.ts +++ b/scripts/build/helpers.ts @@ -38,8 +38,8 @@ export function getDecoratorArgs(decorator: any) { switch (prop.initializer.kind) { case ts.SyntaxKind.StringLiteral: + case ts.SyntaxKind.Identifier: val = prop.initializer.text; - // args[prop.name.escapedText] = val; break; case ts.SyntaxKind.ArrayLiteralExpression: