Skip to content
This repository has been archived by the owner on Aug 18, 2018. It is now read-only.

Commit

Permalink
Merge pull request #36 from dart-lang/0.4.1
Browse files Browse the repository at this point in the history
update pubspec/changelog for release
  • Loading branch information
jakemac53 committed Mar 4, 2016
2 parents b4c217a + fd2827f commit 85350f2
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,19 @@
## 0.4.1

* Added a fix for [#24890](https://github.com/dart-lang/sdk/issues/24890).
* All constants in all libraries will once again be resolved by default.
* Added a new `resolveAllLibraries` option to `Resolver#resolve` and
`Resolvers#get`. If `false` is passed then constants will not be resolved in
non entry points. This saves significant time if constants are not needed.
* Added a `useSharedSources` option to `Resolvers`. This gives a significant
speed increase, but must be used carefully.
* If used, then all `Resolver` instances created from the same `Resolvers`
instance will share the same sources cache.
* This should be generally safe to use if the `Resolvers` instance is created
in the constructor of your `Transformer`.
* This option should probably not be used with a static or shared `Resolvers`
instance.

## 0.4.0

* Remove dependency on `test`, and move all test related apis to a new
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
@@ -1,5 +1,5 @@
name: code_transformers
version: 0.4.0
version: 0.4.1
author: Dart Team <misc@dartlang.org>
description: Collection of utilities related to creating barback transformers.
homepage: https://github.com/dart-lang/code-transformers
Expand Down
2 changes: 1 addition & 1 deletion test/remove_sourcemap_comment_test.dart
@@ -1,12 +1,12 @@
// Copyright (c) 2013, the Dart project authors. 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.

@TestOn('vm')
library code_transformers.test.remove_sourcemap_comment_test;

import 'package:barback/barback.dart';
import 'package:code_transformers/src/remove_sourcemap_comment.dart';
import 'package:test/test.dart';
import 'package:transformer_test/utils.dart';

final phases = [
Expand Down

0 comments on commit 85350f2

Please sign in to comment.