mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-30 04:39:03 +01:00
parent
15fe12be21
commit
a6164217df
@ -1,3 +1,9 @@
|
||||
## 1.14.1
|
||||
|
||||
### Command-Line Interface
|
||||
|
||||
* Print more readable paths in `--watch` mode.
|
||||
|
||||
## 1.14.0
|
||||
|
||||
### BREAKING CHANGE
|
||||
|
@ -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);
|
||||
}
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user