Prettify URIs (#481)

Closes #464
This commit is contained in:
Progracientist 2018-09-26 18:39:49 +01:00 committed by Natalie Weizenbaum
parent 15fe12be21
commit a6164217df
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,9 @@
## 1.14.1
### Command-Line Interface
* Print more readable paths in `--watch` mode.
## 1.14.0
### BREAKING CHANGE

View File

@ -79,7 +79,8 @@ Future compileStylesheet(ExecutableOptions options, StylesheetGraph graph,
if (options.color) buffer.write('\u001b[32m');
var sourceName = source == null ? 'stdin' : p.prettyUri(p.toUri(source));
buffer.write('Compiled $sourceName to $destination.');
var destinationName = p.prettyUri(p.toUri(destination));
buffer.write('Compiled $sourceName to $destinationName.');
if (options.color) buffer.write('\u001b[0m');
print(buffer);
}

View File

@ -1,5 +1,5 @@
name: sass
version: 1.14.0
version: 1.14.1-dev
description: A Sass implementation in Dart.
author: Dart Team <misc@dartlang.org>
homepage: https://github.com/sass/dart-sass