diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2021-06-01 23:54:51 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-01 23:54:51 -0600 |
| commit | 073c4224ace75fe119dab2fca2bf7b0fd3ae17a7 (patch) | |
| tree | 51a8f84e870c173e47fde720603f7a8763639c93 /src/stylesheets/package.json | |
| parent | c99153748c06e48ea7eba529ce0038f0519bfdfc (diff) | |
resolves #4062 import source and build for default stylesheet (PR #4064)
Diffstat (limited to 'src/stylesheets/package.json')
| -rw-r--r-- | src/stylesheets/package.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/stylesheets/package.json b/src/stylesheets/package.json new file mode 100644 index 00000000..ef0bd69b --- /dev/null +++ b/src/stylesheets/package.json @@ -0,0 +1,15 @@ +{ + "private": true, + "description": "Compiles the default stylesheet for the built-in HTML converter.", + "dependencies": { + "cssnano": "~5.0", + "postcss": "~8.2", + "postcss-cli": "~8.3", + "stylelint": "~13.13", + "stylelint-config-standard": "~22.0" + }, + "scripts": { + "build": "postcss asciidoctor.css -o ../../data/stylesheets/asciidoctor-default.css", + "lint": "stylelint asciidoctor.css" + } +} |
