- All Implemented Interfaces:
- io.bit3.jsass.importer.Importer
public class FileImporter
extends Object
implements io.bit3.jsass.importer.Importer
This class is used to process "@import" directives within SASS files. It attempts
to find matching a resource in the JCR that correspond to the input specified.
Supported statements:
@import 'file';
@import 'file.scss';
@import 'partials/file';
@import 'partials/file.scss';
@import 'file1', 'file2';
@import '/etc/designs/clientlibs/file';
@import '/etc/designs/clientlibs/file.scss';
Skipped statements:
@import 'http://foo.bar';
Unsupported statements:
@import 'url(some-url-import)';
@import 'file.css';