mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-27 12:44:42 +01:00
18 lines
601 B
Dart
18 lines
601 B
Dart
// Copyright 2016 Google Inc. Use of this source code is governed by an
|
|
// MIT-style license that can be found in the LICENSE file or at
|
|
// https://opensource.org/licenses/MIT.
|
|
|
|
import 'dart:io';
|
|
|
|
import 'package:path/path.dart' as p;
|
|
import 'package:sass/src/parser.dart';
|
|
import 'package:sass/src/visitor/perform.dart';
|
|
import 'package:sass/src/visitor/serialize.dart';
|
|
|
|
void main(List<String> args) {
|
|
var parser = new Parser(new File(args.first).readAsStringSync(),
|
|
url: p.toUri(args.first));
|
|
var cssTree = new PerformVisitor().visitStylesheet(parser.parse());
|
|
print(toCss(cssTree));
|
|
}
|