A CLI for compiling SCSS files to CSS, and associated pre-commit hook.
Project description
scss-compile
A CLI for compiling SCSS files to CSS, and associated pre-commit hook.
This CLI is a small wrapper around libsass-python, which also aims to be compatible with pre-commit, and provide a pre-commit hook.
NOTE: The package in on alpha release, but looks to be working as intended, and will be trialled in sphinx-panels, and then sphinx-book-theme.
Installation
To use directly as a CLI:
pip install scss-compile
scss-compile --help
To use via pre-commit:
Add to your .pre-commit-config.yaml
- repo: https://github.com/executablebooks/scss-compile
rev: v0.1.0
hooks:
- id: scss-compile
args: [--config=config.yml] # optional
Configuration
You can can configure the compilation directly via the CLI or using a configuration file
(simply replace -
with _
):
$ scss-compile --help
Usage: scss-compile [OPTIONS] [PATHS]...
Compile all SCSS files in the paths provided.
For directories; include all non-partial SCSS files, and for files; if
partial, include all adjacent, non-partial, SCSS files.
Options:
--recurse / --no-recurse For directories, include files in sub-
folders. [default: True]
-d, --partial-depth INTEGER For partial files (starting '_') include all
SCSS files up 'n' parent folders [default:
0]
-s, --stop-on-error Stop on the first compilation error.
-e, --encoding TEXT [default: utf8]
-f, --output-format [nested|expanded|compact|compressed]
[default: compressed]
-m, --sourcemap Output source map.
-h, --hash-filenames Add the content hash to filenames:
<filename>#<hash>.css (old hashes will be
removed).
-t, --translate TEXT Source to output path translations, e.g.
'src/scss:dist/css' (can be used multiple
times)
-p, --precision INTEGER precision for numbers. [default: 5]
-q, --quiet Remove stdout logging.
-v, --verbose Increase stdout logging.
--exit-code INTEGER Exit code when files changed. [default: 2]
--test-run Do not delete/create any files.
--config FILE Read default configuration from a file
(allowed extensions: .json, .toml, .yml,
.yaml.)
--help Show this message and exit.
--config
can point to any of three file-formats:
config.json
:
{
"scss-compile": {
"precision": 5,
"sourcemap": true,
"hash_filenames": true,
"output_format": "compressed",
"partial_depth": 1,
"translate": ["tests/example_sass:tests/output_css"]
}
}
config.toml
:
[scss-compile]
precision = 5
sourcemap = true
hash_filenames = true
output_format = "compressed"
partial_depth = 1
translate = ["tests/example_sass:tests/output_css"]
config.yml
/config.yaml
:
scss-compile:
precision: 5
sourcemap: true
hash_filenames: true
output_format: compressed
partial_depth: 1
translate: ["tests/example_sass:tests/output_css"]
Usage
If you simply specify a normal SCSS file, then the CSS file will be output in the same folder:
$ scss-compile scss/file.scss
scss/
file.scss
file.css
If you use the sourcemap
option, then a sourcemap will also be output,
and a sourceMappingURL
comment added to the CSS:
$ scss-compile scss/file.scss --sourcemap
scss/
file.scss
file.css
file.scss.map.json
If you use the hash_filenames
option, then the CSS filename will include the content hash (and any existing file with a different hash will be removed):
$ scss-compile scss/file.scss -- hash-filenames
scss/
file.scss
file#beabd761a3703567b4ce06c9a6adde55.css
If you specify a partial file, i.e. ones beginning _
used via @import
and @use
,
then all "normal" SCSS files in that folder will be compiled.
If you also use the partial-depth
option, then files in parent folders will also be compiled.
$ scss-compile scss/imports/_partial.scss -- partial-depth=1
scss
/imports
_partial.scss
file.scss
file.css
If you set the --translate
option, then the output files will be "translated" to the specified output path
(which will be created if it does not yet exist):
$ scss-compile scss/file.scss --translate "src/scss:dist/css" --sourcemap
src/scss/
file.scss
dist/css/
file.css
file.scss.map.json
If you specify a directory, then it will first find all SCSS files in that directory,
and recursive sub-folders (unless --no-recurse
is used), then treat each individual file as above.
Development
To run the tests:
pip install tox
tox
To test out the CLI:
tox -e py37-cli -- --help
For code style:
pip install pre-commit
pre-commit run --all
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file scss-compile-0.1.0.tar.gz
.
File metadata
- Download URL: scss-compile-0.1.0.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ce949052ebc120931bc606c2994a301cb6d1b438cfde1c79451845feb56bed2 |
|
MD5 | e97cc268a4030ec3d430f6aed3b71a3f |
|
BLAKE2b-256 | e292e5cbdf5b13ad7dfff0006c0dc7b7d23adfa3ced3c235fb3f685e5bc23020 |
File details
Details for the file scss_compile-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: scss_compile-0.1.0-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4309cdecb505179b6321b89077bc95eb716bf747c7b842657ef455cf3cd1f71d |
|
MD5 | 61c884880c7dd602d375e287cb64afc3 |
|
BLAKE2b-256 | 03d6dd12bf6e0b7935846deee5350f10cacaebfad4c309847fc02bda10a414b4 |