summaryrefslogtreecommitdiff
path: root/src/stylesheets/package.json
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2021-08-02 16:10:57 -0600
committerGitHub <noreply@github.com>2021-08-02 16:10:57 -0600
commit7fda8916eb2ae6a936cf1fd1291b135799fe2b52 (patch)
tree5a40174a657ed8ee12c4d4a28dddb257c85870c7 /src/stylesheets/package.json
parent449e0bcc1ef79340d9dd688a96e548efab54477b (diff)
resolves #4118 use autoprefixer to manage browser prefixes in default stylesheet (PR #4120)
Diffstat (limited to 'src/stylesheets/package.json')
-rw-r--r--src/stylesheets/package.json6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/stylesheets/package.json b/src/stylesheets/package.json
index 8f449914..79bc44c9 100644
--- a/src/stylesheets/package.json
+++ b/src/stylesheets/package.json
@@ -2,6 +2,7 @@
"private": true,
"description": "Compiles the default stylesheet for the built-in HTML converter.",
"devDependencies": {
+ "autoprefixer": "~10.3",
"cssnano": "~5.0",
"package.json": "^2.0.1",
"postcss": "~8.3",
@@ -12,5 +13,8 @@
"scripts": {
"build": "postcss asciidoctor.css -o ../../data/stylesheets/asciidoctor-default.css",
"lint": "stylelint asciidoctor.css"
- }
+ },
+ "browserslist": [
+ "defaults"
+ ]
}