-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing generated files. jQuery and Angular are almost ready now...
- Loading branch information
Showing
5 changed files
with
24 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
{ | ||
"id": "$(name)", | ||
"name": "$(name)", | ||
"description": "$(name) template", | ||
"framework": "$(framework)", | ||
"projectType": "$(type)", | ||
"components": "<add your components here>" | ||
} | ||
"components": "<add your components here>", | ||
"controlGroup": "<add your control group name here>", | ||
"listInComponentTemplates": true, | ||
"dependencies": "[<list your component dependencies here>]" | ||
} |
Binary file removed
BIN
-162 KB
templates/angular/igx-ts/generate/files/assets/Ignite-header-apps-960.png
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
{ | ||
"id": "$(name)", | ||
"name": "$(name)", | ||
"description": "$(name) template", | ||
"framework": "$(framework)", | ||
"projectType": "$(type)", | ||
"components": "<add your components here>" | ||
} | ||
"components": "<add your components here>", | ||
"controlGroup": "<add your control group name here>", | ||
"listInComponentTemplates": true, | ||
"dependencies": "[<list your component dependencies here>]" | ||
} |
Binary file removed
BIN
-162 KB
templates/jquery/js/generate/files/assets/Ignite-header-apps-960.png
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>$(name)</title> | ||
<title>$(description)</title> | ||
|
||
$(cssBlock) | ||
$(scriptBlock) | ||
|
||
<script type="text/javascript"> | ||
// TODO: add necessary script to load your template | ||
</script> | ||
</head> | ||
<body> | ||
<h1>Ignite UI CLI Project: $(name)</h1> | ||
<h2>Ignite UI CLI Framework: $(framework)</h2> | ||
<h2>Ignite UI CLI Type: $(type)</h2> | ||
<h3>Thank you for using the Ignite UI CLI!</h3> | ||
<img src="assets/Ignite-header-apps-960.png" alt="Ignite UI" height="602" width="602" /> | ||
|
||
<div id="$(name)"></div> | ||
</body> | ||
</html> | ||
</html> |