Skip to content

Commit

Permalink
fix: tslint errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
IvayloG committed Jan 25, 2018
1 parent 47b3624 commit 53b965c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions templates/jquery/js/projects/empty/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions templates/react/es6/projects/empty/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {};
Expand Down

0 comments on commit 53b965c

Please sign in to comment.