Skip to content
Snippets Groups Projects
Unverified Commit 5b92c13c authored by Kevin Moore's avatar Kevin Moore Committed by GitHub
Browse files

misc: use the latest pkg:source_gen (#573)

parent 9f6b0acd
No related branches found
No related tags found
No related merge requests found
## 3.1.3
## 3.1.2 ## 3.1.2
- All templates: Set min SDK version to 2.0.0. - All templates: Set min SDK version to 2.0.0.
......
// Copyright (c) 2018, Google Inc. Please see the AUTHORS file for details.
// All rights reserved. Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// GENERATED CODE - DO NOT MODIFY BY HAND // GENERATED CODE - DO NOT MODIFY BY HAND
part of 'cli_app.dart'; part of 'cli_app.dart';
...@@ -10,4 +6,4 @@ part of 'cli_app.dart'; ...@@ -10,4 +6,4 @@ part of 'cli_app.dart';
// VersionGenerator // VersionGenerator
// ************************************************************************** // **************************************************************************
const appVersion = '3.1.2'; const appVersion = '3.1.3-dev';
// Copyright (c) 2018, Google Inc. Please see the AUTHORS file for details.
// All rights reserved. Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// GENERATED CODE - DO NOT MODIFY BY HAND // GENERATED CODE - DO NOT MODIFY BY HAND
part of 'console_full.dart'; part of 'console_full.dart';
......
// Copyright (c) 2018, Google Inc. Please see the AUTHORS file for details.
// All rights reserved. Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// GENERATED CODE - DO NOT MODIFY BY HAND // GENERATED CODE - DO NOT MODIFY BY HAND
part of 'package_simple.dart'; part of 'package_simple.dart';
......
// Copyright (c) 2018, Google Inc. Please see the AUTHORS file for details.
// All rights reserved. Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// GENERATED CODE - DO NOT MODIFY BY HAND // GENERATED CODE - DO NOT MODIFY BY HAND
part of 'server_shelf.dart'; part of 'server_shelf.dart';
......
// Copyright (c) 2018, Google Inc. Please see the AUTHORS file for details.
// All rights reserved. Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// GENERATED CODE - DO NOT MODIFY BY HAND // GENERATED CODE - DO NOT MODIFY BY HAND
part of 'web_angular.dart'; part of 'web_angular.dart';
......
// Copyright (c) 2018, Google Inc. Please see the AUTHORS file for details.
// All rights reserved. Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// GENERATED CODE - DO NOT MODIFY BY HAND // GENERATED CODE - DO NOT MODIFY BY HAND
part of 'web_simple.dart'; part of 'web_simple.dart';
......
// Copyright (c) 2018, Google Inc. Please see the AUTHORS file for details.
// All rights reserved. Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// GENERATED CODE - DO NOT MODIFY BY HAND // GENERATED CODE - DO NOT MODIFY BY HAND
part of 'web_stagexl.dart'; part of 'web_stagexl.dart';
......
...@@ -7,7 +7,7 @@ description: > ...@@ -7,7 +7,7 @@ description: >
A scaffolding generator for your Dart projects. Stagehand helps you get set A scaffolding generator for your Dart projects. Stagehand helps you get set
up! up!
# After changing the version, run `pub run build_runner build`. # After changing the version, run `pub run build_runner build`.
version: 3.1.2 version: 3.1.3-dev
homepage: https://github.com/dart-lang/stagehand homepage: https://github.com/dart-lang/stagehand
author: Dart Team <misc@dartlang.org> author: Dart Team <misc@dartlang.org>
...@@ -30,6 +30,6 @@ dev_dependencies: ...@@ -30,6 +30,6 @@ dev_dependencies:
build_runner: ^0.10.0 build_runner: ^0.10.0
glob: ^1.1.5 glob: ^1.1.5
grinder: ^0.8.0 grinder: ^0.8.0
source_gen: ^0.8.1+1 source_gen: ^0.9.0
test: ^1.0.0 test: ^1.0.0
yaml: ^2.1.2 yaml: ^2.1.2
...@@ -11,12 +11,4 @@ import 'src/version_generator.dart'; ...@@ -11,12 +11,4 @@ import 'src/version_generator.dart';
Builder stagehandBuilder([_]) => new PartBuilder([ Builder stagehandBuilder([_]) => new PartBuilder([
new VersionGenerator(), new VersionGenerator(),
new DataGenerator(), new DataGenerator(),
], header: _fileHeader); ], '.g.dart');
final _fileHeader = '''
// Copyright (c) 2018, Google Inc. Please see the AUTHORS file for details.
// All rights reserved. Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// GENERATED CODE - DO NOT MODIFY BY HAND
''';
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment