Skip to content
This repository has been archived by the owner on May 31, 2021. It is now read-only.

Commit

Permalink
Delete web-angular-simple & console-simple templates (#403)
Browse files Browse the repository at this point in the history
* Remove web-angular-simple template

* Remove generator files for web-angular-simple

* Remove console-simple template

* Remove unused web_polymer* files

* Update CHANGELOG, README, template descriptions

* text tweaks

* Tweak StageXL template name visible in IDEs

* Tweak web-simple description.
  • Loading branch information
kwalrath authored May 9, 2017
1 parent 37527d0 commit 445555e
Show file tree
Hide file tree
Showing 30 changed files with 30 additions and 949 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## Unreleased

- Removed `web-angular-simple` and `console-simple` templates.
- The list of templates had become too long.
- Documentation (such as the
[Angular guide](https://webdev.dartlang.org/angular/guide/setup))
that used to rely on `web-angular-simple` now uses
https://github.com/angular-examples/quickstart.
- Tweaked the text of some template descriptions.

## 1.1.1

- Added `angular_test` based tests to web-angular-simple.
Expand Down
19 changes: 8 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,12 @@ It is a Dart project scaffolding generator, inspired by tools like Web Starter
Kit and Yeoman.

## Stagehand templates
* `console-full` - A larger command-line application sample.
* `console-simple` - A simple command-line application.
* `console-full` - A command-line application sample.
* `package-simple` - A starting point for Dart libraries or applications.
* `server-shelf` - A web server built using the shelf package.
* `web-angular` - A web app built using the latest stable version of Angular.
* `web-angular-simple` - A minimalist example app used in docs.
* `web-simple` - An absolute bare-bones web app.
* `web-stagexl` - A basic 2D canvas app with StageXL.
* `web-angular` - A web app with material design components.
* `web-simple` - A web app that uses only core Dart libraries.
* `web-stagexl` - A starting point for 2D animation and games.

## Installation

Expand Down Expand Up @@ -58,10 +56,9 @@ And to list all of the project templates:
## Goals

* Opinionated and prescriptive; minimal to no options
* Mobile-first
* Support server and client apps
* Becomes the best way to create a new Dart project
* Used by Atom, WebStorm, Sublime, and more
* Support for server and client apps
* The best way to create a new Dart project
* Used by IntelliJ, WebStorm, Atom, Sublime, and more
* Distributed as a pub package

## Issues and bugs
Expand All @@ -77,7 +74,7 @@ Contributions welcome! Please read this short
## Analytics and crash reports

Learn more about how [Stagehand uses Google Analytics][analytics] for measuring
usage and error reporting, and how you can opt-out.
usage and error reporting, and how you can opt out.

## Disclaimer

Expand Down
2 changes: 1 addition & 1 deletion lib/generators/console_full.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import 'console_full_data.dart';
class ConsoleFullGenerator extends DefaultGenerator {
ConsoleFullGenerator()
: super('console-full', 'Console Application',
'A larger command-line application sample.',
'A command-line application sample.',
categories: const ['dart', 'console']) {
for (TemplateFile file in decodeConcatenatedData(data)) {
addTemplateFile(file);
Expand Down
26 changes: 0 additions & 26 deletions lib/generators/console_simple.dart

This file was deleted.

31 changes: 0 additions & 31 deletions lib/generators/console_simple_data.dart

This file was deleted.

4 changes: 2 additions & 2 deletions lib/generators/web_angular.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import 'web_angular_data.dart';
*/
class WebAngularGenerator extends DefaultGenerator {
WebAngularGenerator()
: super('web-angular', 'Angular Web Application',
'A web app built using the latest stable version of Angular.',
: super('web-angular', 'AngularDart Web App',
'A web app with material design components.',
categories: const ['dart', 'web']) {
for (TemplateFile file in decodeConcatenatedData(data)) {
addTemplateFile(file);
Expand Down
26 changes: 0 additions & 26 deletions lib/generators/web_angular_simple.dart

This file was deleted.

155 changes: 0 additions & 155 deletions lib/generators/web_angular_simple_data.dart

This file was deleted.

26 changes: 0 additions & 26 deletions lib/generators/web_polymer.dart

This file was deleted.

Loading

0 comments on commit 445555e

Please sign in to comment.