Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions build_modules/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 5.1.1

- Fix re-add `multiRootScheme` to build_modules exports.

## 5.1.0

- Add drivers and state resources required for DDC + Frontend Server compilation.
Expand Down
1 change: 1 addition & 0 deletions build_modules/lib/build_modules.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// 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.

export 'src/common.dart' show multiRootScheme;
export 'src/ddc_names.dart';
export 'src/errors.dart' show MissingModulesException, UnsupportedModules;
export 'src/frontend_server_resources.dart'
Expand Down
2 changes: 1 addition & 1 deletion build_modules/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: build_modules
version: 5.1.0
version: 5.1.1
description: >-
Builders to analyze and split Dart code into individually compilable modules
based on imports.
Expand Down
4 changes: 4 additions & 0 deletions build_web_compilers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.4.1

- Read `multiRootScheme` from `build_modules`.

## 4.4.0

- Add DDC + Frontend Server compilation support to existing builders.
Expand Down
2 changes: 1 addition & 1 deletion build_web_compilers/lib/src/common.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import 'dart:convert';
import 'dart:io';

import 'package:build/build.dart';
import 'package:build_modules/build_modules.dart' show multiRootScheme;
import 'package:path/path.dart' as p;
import 'package:scratch_space/scratch_space.dart';

final multiRootScheme = 'org-dartlang-app';
final jsModuleErrorsExtension = '.ddc.js.errors';
final jsModuleExtension = '.ddc.js';
final jsSourceMapExtension = '.ddc.js.map';
Expand Down
2 changes: 1 addition & 1 deletion build_web_compilers/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: build_web_compilers
version: 4.4.0
version: 4.4.1
description: Builder implementations wrapping the dart2js and DDC compilers.
repository: https://github.com/dart-lang/build/tree/master/build_web_compilers
resolution: workspace
Expand Down