Skip to content

Commit 4e14d92

Browse files
authored
Readding multiRootScheme as an export (#4272)
This was mistakenly removed in #4240
1 parent 32bca25 commit 4e14d92

File tree

6 files changed

+12
-3
lines changed

6 files changed

+12
-3
lines changed

build_modules/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 5.1.1
2+
3+
- Fix re-add `multiRootScheme` to build_modules exports.
4+
15
## 5.1.0
26

37
- Add drivers and state resources required for DDC + Frontend Server compilation.

build_modules/lib/build_modules.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
export 'src/common.dart' show multiRootScheme;
56
export 'src/ddc_names.dart';
67
export 'src/errors.dart' show MissingModulesException, UnsupportedModules;
78
export 'src/frontend_server_resources.dart'

build_modules/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: build_modules
2-
version: 5.1.0
2+
version: 5.1.1
33
description: >-
44
Builders to analyze and split Dart code into individually compilable modules
55
based on imports.

build_web_compilers/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 4.4.1
2+
3+
- Read `multiRootScheme` from `build_modules`.
4+
15
## 4.4.0
26

37
- Add DDC + Frontend Server compilation support to existing builders.

build_web_compilers/lib/src/common.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import 'dart:convert';
66
import 'dart:io';
77

88
import 'package:build/build.dart';
9+
import 'package:build_modules/build_modules.dart' show multiRootScheme;
910
import 'package:path/path.dart' as p;
1011
import 'package:scratch_space/scratch_space.dart';
1112

12-
final multiRootScheme = 'org-dartlang-app';
1313
final jsModuleErrorsExtension = '.ddc.js.errors';
1414
final jsModuleExtension = '.ddc.js';
1515
final jsSourceMapExtension = '.ddc.js.map';

build_web_compilers/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: build_web_compilers
2-
version: 4.4.0
2+
version: 4.4.1
33
description: Builder implementations wrapping the dart2js and DDC compilers.
44
repository: https://github.com/dart-lang/build/tree/master/build_web_compilers
55
resolution: workspace

0 commit comments

Comments
 (0)