We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45b2397 commit c45d856Copy full SHA for c45d856
dev/tools/dartdoc.dart
@@ -8,6 +8,7 @@ import 'dart:io';
8
9
import 'package:intl/intl.dart';
10
import 'package:path/path.dart' as path;
11
+import 'update_versions.dart';
12
13
const String kDocRoot = 'dev/docs/doc';
14
@@ -29,9 +30,12 @@ Future<Null> main(List<String> args) async {
29
30
if (path.basename(Directory.current.path) == 'tools')
31
Directory.current = Directory.current.parent.parent;
32
33
+ final RawVersion version = new RawVersion('VERSION');
34
+
35
// Create the pubspec.yaml file.
36
final StringBuffer buf = new StringBuffer('''
37
name: Flutter
38
+version: $version
39
dependencies:
40
''');
41
for (String package in findPackageNames()) {
0 commit comments