Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dart.googlesource.com-stagehand
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fuchsia-mirror
dart.googlesource.com-stagehand
Commits
a62bf10e
Commit
a62bf10e
authored
10 years ago
by
Devon Carew
Browse files
Options
Downloads
Patches
Plain Diff
tweak some text
parent
c0c58ac5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bin/stagehand.dart
+2
-2
2 additions, 2 deletions
bin/stagehand.dart
lib/generators/webapp.dart
+2
-2
2 additions, 2 deletions
lib/generators/webapp.dart
with
4 additions
and
4 deletions
bin/stagehand.dart
+
2
−
2
View file @
a62bf10e
...
...
@@ -105,12 +105,12 @@ class CliApp {
_out
(
'usage:
${APP_NAME}
-o <output directory> generator-name'
);
_out
(
argParser
.
getUsage
());
_out
(
''
);
_out
(
'generators
\n
----------
'
);
_out
(
'
Available
generators
:
\n
'
);
int
len
=
generators
.
map
((
g
)
=
>
g
.
id
.
length
)
.
fold
(
0
,
(
a
,
b
)
=
>
max
(
a
,
b
));
generators
.
map
((
g
)
=
>
"
[
${_pad(g.id, len)}
]
${g.description}
"
)
.
map
((
g
)
=
>
"
${_pad(g.id, len)}
:
${g.description}
"
)
.
forEach
(
logger
.
stdout
);
}
...
...
This diff is collapsed.
Click to expand it.
lib/generators/webapp.dart
+
2
−
2
View file @
a62bf10e
...
...
@@ -13,8 +13,8 @@ import '../stagehand.dart';
class
WebAppGenerator
extends
Generator
{
WebAppGenerator
()
:
super
(
'webapp'
,
"
This is the most
minimal
option
for the developer that doesn’t want to "
"
be confused by
too much going on."
,
"
A
minimal
web app
for the developer that doesn’t want to
be confused by
"
"too much going on."
,
categories:
const
[
'dart'
,
'web'
])
{
_addFile
(
'.gitignore'
,
gitIgnoreContents
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment