2016-05-24 03:11:09 +02:00
|
|
|
// 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';
|
2016-05-28 01:09:03 +02:00
|
|
|
import 'package:sass/src/visitor/css.dart';
|
2016-06-03 22:36:20 +02:00
|
|
|
import 'package:sass/src/visitor/sass/statement/perform.dart';
|
|
|
|
import 'package:sass/src/visitor/css/serialize.dart';
|
2016-05-24 03:11:09 +02:00
|
|
|
|
|
|
|
void main(List<String> args) {
|
|
|
|
var parser = new Parser(new File(args.first).readAsStringSync(),
|
|
|
|
url: p.toUri(args.first));
|
2016-05-28 01:09:03 +02:00
|
|
|
var cssTree = new PerformVisitor().visitStylesheet(parser.parse());
|
|
|
|
print(toCss(cssTree));
|
2016-05-24 03:11:09 +02:00
|
|
|
}
|