From 53b965c39af24889bbc607d11300a637e19856c0 Mon Sep 17 00:00:00 2001 From: IvayloG Date: Thu, 25 Jan 2018 16:16:46 +0200 Subject: [PATCH] fix: tslint errors. --- templates/jquery/js/projects/empty/index.ts | 4 ++-- templates/react/es6/projects/empty/index.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/jquery/js/projects/empty/index.ts b/templates/jquery/js/projects/empty/index.ts index 0cc2474c8..ae1bf1af3 100644 --- a/templates/jquery/js/projects/empty/index.ts +++ b/templates/jquery/js/projects/empty/index.ts @@ -36,11 +36,11 @@ class EmptyProject implements ProjectTemplate { themePath = "$(igniteuiSource)/css/themes/" + theme + "/infragistics.theme.css"; } const variables = { + "$(description)" : this.description, "$(igniteuiSource)": "./node_modules/ignite-ui", "$(name)" : name, "$(theme)": theme, - "$(themePath)": themePath, - "$(description)" : this.description + "$(themePath)": themePath }; //TODO diff --git a/templates/react/es6/projects/empty/index.ts b/templates/react/es6/projects/empty/index.ts index 53070ab95..a19153172 100644 --- a/templates/react/es6/projects/empty/index.ts +++ b/templates/react/es6/projects/empty/index.ts @@ -26,9 +26,9 @@ class EmptyProject implements ProjectTemplate { //TODO update the config with [{key: "keyname", "value"}] const config = { + "$(name)": name, "$(theme)": theme, - "__path__": name, - "$(name)": name + "__path__": name }; config["$(description)"] = this.description; const pathsConfig = {};