A CLI to compile/minify SCSS & JS, and associated pre-commit hook.
This CLI is a small wrapper around libsass-python, rJSmin and jinja2, 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.
To use directly as a CLI:
pip install web-compile
web-compile --helpTo use via pre-commit:
Add to your .pre-commit-config.yaml
-   repo: https://github.com/executablebooks/web-compile
    rev: v0.2.0
    hooks:
      - id: web-compile
        # optional
        args: [--config=config.yml]
        files: >-
            (?x)^(
                web-compile-config.yml|
                src/.*|
                dist/.*
            )$By default, the hook will be initiated for all text file changes. But it is advisable to constrain this to the known configuration file, and input/output folders.
You can can configure the compilation directly via the CLI or using a configuration file;
simply replace - with _, CLI takes priority over the file:
$ web-compile --help
Usage: web-compile [OPTIONS]
  Compile web assets.
Options:
  --version                       Show the version and exit.
  -c, --config FILE               Allowed extensions: json, toml, yml, yaml
                                  [default: web-compile-config.yml]
  --sass-files DICT               File mapping (config only)
  --sass-format [nested|expanded|compact|compressed]
                                  [default: compressed]
  --sass-precision INTEGER        precision for numbers.  [default: 5]
  --sass-sourcemap                Output source map.
  --sass-encoding TEXT            [default: utf8]
  --js-files DICT                 File mapping (config only)
  --js-comments                   Keep comments starting with '/*!'.
  --js-encoding TEXT              [default: utf8]
  --jinja-files DICT              File mapping (config only)
  --jinja-variables DICT          Global variable mapping (config only)
  --jinja-encoding TEXT           [default: utf8]
  --git-add / --no-git-add        Add new files to git index.  [default: True]
  --continue-on-error             Do not stop on the first error.
  --exit-code INTEGER             Exit code when files changed.  [default: 3]
  --test-run                      Do not delete/create any files.
  -q, --quiet                     Remove stdout logging.
  -v, --verbose                   Increase stdout logging.
  --help                          Show this message and exit.--config can point to any of three file-formats:
config.yml/config.yaml:
web-compile:
  sass:
    encoding: utf8
    files:
      tests/example_src/example1.scss: tests/example_dist/example1.[hash].css
      tests/example_src/example2.scss: tests/example_dist/example2.[hash].css
    format: compressed
    precision: 5
    sourcemap: true
  js:
    comments: false
    encoding: utf8
    files:
      tests/example_src/example1.js: tests/example_dist/example1.[hash].js
  jinja:
    files:
      tests/example_src/example1.j2: tests/example_dist/example1.txt
      tests/example_src/example3.j2: tests/example_dist/example3.txt
    variables:
      a: b
  continue_on_error: true
  exit_code: 2
  test_run: false
  verbose: false
  quiet: falseconfig.toml:
[web-compile]
exit_code = 2
verbose = false
test_run = false
continue_on_error = true
quiet = false
[web-compile.sass]
precision = 5
sourcemap = true
format = "compressed"
encoding = "utf8"
[web-compile.js]
comments = false
encoding = "utf8"
[web-compile.sass.files]
"tests/example_src/example1.scss" = "tests/example_dist/example1.[hash].css"
"tests/example_src/example2.scss" = "tests/example_dist/example2.[hash].css"
[web-compile.js.files]
"tests/example_src/example1.js" = "tests/example_dist/example1.[hash].js"
[web-compile.jinja.files]
"tests/example_src/example1.j2" = "tests/example_dist/example1.txt"
"tests/example_src/example3.j2" = "tests/example_dist/example3.txt"
[web-compile.jinja.variables]
a = "b"config.json:
{
  "web-compile": {
    "sass": {
      "files": {
        "tests/example_src/example1.scss": "tests/example_dist/example1.[hash].css",
        "tests/example_src/example2.scss": "tests/example_dist/example2.[hash].css"
      },
      "precision": 5,
      "sourcemap": true,
      "format": "compressed",
      "encoding": "utf8"
    },
    "js": {
      "files": {
        "tests/example_src/example1.js": "tests/example_dist/example1.[hash].js"
      },
      "comments": false,
      "encoding": "utf8"
    },
    "jinja": {
      "files": {
        "tests/example_src/example1.j2": "tests/example_dist/example1.txt",
        "tests/example_src/example3.j2": "tests/example_dist/example3.txt"
      },
      "variables": {
        "a": "b"
      }
    },
    "exit_code": 2,
    "verbose": false,
    "test_run": false,
    "continue_on_error": true,
    "quiet": false
  }
}Simply map a source SCSS file to an output CSS filename.Paths should be relative to the configuration files and @import \ @useed partial files will also be read:
web-compile:
  sass:
    files:
      src/file.scss: dist/file.css$ web-compilesrc/
    _partial.scss
    file.scss
dist/
    file.css
If you use the sourcemap option, then a sourcemap will also be output,
and a sourceMappingURL comment added to the CSS:
web-compile:
  sass:
    files:
      src/file.scss: dist/file.css
    sourcemap: true$ web-compiledist/
    file.css
    file.scss.map.json
If you add [hash] to the CSS filename, then it will be replaced with the content hash.
Also, any existing files, matching the pattern, with a different hash will be removed:
web-compile:
  sass:
    files:
      src/file.scss: dist/file.[hash].css$ web-compiledist/
    file.beabd761a3703567b4ce06c9a6adde55.css
Javascript files are minified and are configured similarly to SCSS.
web-compile:
  js:
    files:
      src/file.js: dist/file.[hash].js$ web-compiledist/
    file.beabd761a3703567b4ce06c9a6adde55.js
Files can be created from Jinja templates. These are created after the SCSS and JS files are compiled. In addition, they may be combined with two Jinja filters designed for this tool:
- compiled_namewill convert an input file path to the compiled file name.
- hashwill return the hash for a filename that can be inserted wherever you wish.
src/file.j2:
{{ "src/file.scss" | compiled_name }}
{{ "src/file.scss" | compiled_name }}?digest={{ "src/file.scss" | hash }}
{{ var1 }}web-compile:
  sass:
    files:
      src/file.scss: dist/file.[hash].css
  jinja:
    files:
      src/file.j2: dist/file.txt
    variables:
      var1: other$ web-compiledist/file.txt:
file.beabd761a3703567b4ce06c9a6adde55.css
file.beabd761a3703567b4ce06c9a6adde55.css?digest=beabd761a3703567b4ce06c9a6adde55
other
To run the tests:
pip install tox
tox -e py37To test out the CLI:
tox -e py37-cliTo test the pre-commit hook:
tox -e try-repoFor code style:
pip install pre-commit
pre-commit run --all