-
-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(new-application): add scaffolding feature for navigation skeleton
- Loading branch information
Showing
66 changed files
with
1,379 additions
and
356 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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
{ | ||
"type": [ | ||
"project:application" | ||
], | ||
"bundler": [ | ||
{ | ||
"id": "webpack", | ||
"displayName": "Webpack" | ||
} | ||
], | ||
"build": [ | ||
{ | ||
"options": { | ||
"server": "dev", | ||
"extractCss": "prod", | ||
"coverage": false | ||
} | ||
} | ||
], | ||
"platform": [ | ||
{ | ||
"id": "aspnetcore", | ||
"displayName": "ASP.NET Core" | ||
} | ||
], | ||
"loader": [ | ||
{ | ||
"id": "none", | ||
"displayName": "None" | ||
} | ||
], | ||
"transpiler": [ | ||
{ | ||
"id": "typescript", | ||
"displayName": "TypeScript", | ||
"fileExtension": ".ts" | ||
} | ||
], | ||
"markupProcessor": [ | ||
{ | ||
"id": "minimum", | ||
"displayName": "Minimal Minification", | ||
"fileExtension": ".html" | ||
} | ||
], | ||
"cssProcessor": [ | ||
{ | ||
"id": "none", | ||
"displayName": "None", | ||
"fileExtension": ".css" | ||
} | ||
], | ||
"editor": [ | ||
{ | ||
"id": "vscode", | ||
"displayName": "Visual Studio Code" | ||
} | ||
], | ||
"unitTestRunner": [ | ||
{ | ||
"id": "jest", | ||
"displayName": "Jest" | ||
} | ||
], | ||
"integrationTestRunner": [ | ||
{ | ||
"id": "protractor", | ||
"displayName": "Protractor" | ||
} | ||
] | ||
} |
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
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
46 changes: 46 additions & 0 deletions
46
...ds/generate-skeletons/project-definitions/skeleton-requirejs-esnext-karma-aspnetcore.json
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"name": "skeleton-requirejs-esnext-karma-aspnetcore", | ||
"type": "project:application", | ||
"bundler": { | ||
"id": "cli", | ||
"displayName": "Aurelia-CLI" | ||
}, | ||
"platform": { | ||
"id": "aspnetcore", | ||
"displayName": "ASP.NET Core" | ||
}, | ||
"loader": { | ||
"id": "require", | ||
"displayName": "RequireJS" | ||
}, | ||
"transpiler": { | ||
"id": "babel", | ||
"displayName": "Babel", | ||
"fileExtension": ".js" | ||
}, | ||
"markupProcessor": { | ||
"id": "minimum", | ||
"displayName": "Minimal Minification", | ||
"fileExtension": ".html" | ||
}, | ||
"cssProcessor": { | ||
"id": "none", | ||
"displayName": "None", | ||
"fileExtension": ".css" | ||
}, | ||
"editor": { | ||
"id": "vscode", | ||
"displayName": "Visual Studio Code" | ||
}, | ||
"unitTestRunner": { | ||
"id": "karma", | ||
"displayName": "Karma" | ||
}, | ||
"integrationTestRunner": { | ||
"id": "protractor", | ||
"displayName": "Protractor" | ||
}, | ||
"features": { | ||
"navigation": "navigation" | ||
} | ||
} |
46 changes: 46 additions & 0 deletions
46
lib/commands/generate-skeletons/project-definitions/skeleton-requirejs-esnext-karma.json
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"name": "skeleton-requirejs-esnext-karma", | ||
"type": "project:application", | ||
"bundler": { | ||
"id": "cli", | ||
"displayName": "Aurelia-CLI" | ||
}, | ||
"platform": { | ||
"id": "web", | ||
"displayName": "Web" | ||
}, | ||
"loader": { | ||
"id": "require", | ||
"displayName": "RequireJS" | ||
}, | ||
"transpiler": { | ||
"id": "babel", | ||
"displayName": "Babel", | ||
"fileExtension": ".js" | ||
}, | ||
"markupProcessor": { | ||
"id": "minimum", | ||
"displayName": "Minimal Minification", | ||
"fileExtension": ".html" | ||
}, | ||
"cssProcessor": { | ||
"id": "none", | ||
"displayName": "None", | ||
"fileExtension": ".css" | ||
}, | ||
"editor": { | ||
"id": "vscode", | ||
"displayName": "Visual Studio Code" | ||
}, | ||
"unitTestRunner": { | ||
"id": "karma", | ||
"displayName": "Karma" | ||
}, | ||
"integrationTestRunner": { | ||
"id": "protractor", | ||
"displayName": "Protractor" | ||
}, | ||
"features": { | ||
"navigation": "navigation" | ||
} | ||
} |
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
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
46 changes: 46 additions & 0 deletions
46
...enerate-skeletons/project-definitions/skeleton-requirejs-typescript-karma-aspnetcore.json
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"name": "skeleton-requirejs-typescript-karma-aspnetcore", | ||
"type": "project:application", | ||
"bundler": { | ||
"id": "cli", | ||
"displayName": "Aurelia-CLI" | ||
}, | ||
"platform": { | ||
"id": "aspnetcore", | ||
"displayName": "ASP.NET Core" | ||
}, | ||
"loader": { | ||
"id": "require", | ||
"displayName": "RequireJS" | ||
}, | ||
"transpiler": { | ||
"id": "typescript", | ||
"displayName": "TypeScript", | ||
"fileExtension": ".ts" | ||
}, | ||
"markupProcessor": { | ||
"id": "minimum", | ||
"displayName": "Minimal Minification", | ||
"fileExtension": ".html" | ||
}, | ||
"cssProcessor": { | ||
"id": "none", | ||
"displayName": "None", | ||
"fileExtension": ".css" | ||
}, | ||
"editor": { | ||
"id": "vscode", | ||
"displayName": "Visual Studio Code" | ||
}, | ||
"unitTestRunner": { | ||
"id": "karma", | ||
"displayName": "Karma" | ||
}, | ||
"integrationTestRunner": { | ||
"id": "protractor", | ||
"displayName": "Protractor" | ||
}, | ||
"features": { | ||
"navigation": "navigation" | ||
} | ||
} |
46 changes: 46 additions & 0 deletions
46
lib/commands/generate-skeletons/project-definitions/skeleton-requirejs-typescript-karma.json
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"name": "skeleton-requirejs-typescript-karma", | ||
"type": "project:application", | ||
"bundler": { | ||
"id": "cli", | ||
"displayName": "Aurelia-CLI" | ||
}, | ||
"platform": { | ||
"id": "web", | ||
"displayName": "Web" | ||
}, | ||
"loader": { | ||
"id": "require", | ||
"displayName": "RequireJS" | ||
}, | ||
"transpiler": { | ||
"id": "typescript", | ||
"displayName": "TypeScript", | ||
"fileExtension": ".ts" | ||
}, | ||
"markupProcessor": { | ||
"id": "minimum", | ||
"displayName": "Minimal Minification", | ||
"fileExtension": ".html" | ||
}, | ||
"cssProcessor": { | ||
"id": "none", | ||
"displayName": "None", | ||
"fileExtension": ".css" | ||
}, | ||
"editor": { | ||
"id": "vscode", | ||
"displayName": "Visual Studio Code" | ||
}, | ||
"unitTestRunner": { | ||
"id": "karma", | ||
"displayName": "Karma" | ||
}, | ||
"integrationTestRunner": { | ||
"id": "protractor", | ||
"displayName": "Protractor" | ||
}, | ||
"features": { | ||
"navigation": "navigation" | ||
} | ||
} |
Oops, something went wrong.