Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2022-05-11 00:27:35 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2022-05-11 00:27:35 +0300
commit4ccf0f90db38d8cb069d745bfee6afa8b9a3f96f (patch)
tree4de36ddb50d10e54f2a21f7670cf9a4f8edd45e5
parentc451305d0d20faae4a41927cc1455c06159bcb66 (diff)
Add CSS prefixes before generating RTL CSS files
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
-rw-r--r--package.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json
index ca65ef3a6d..393e4dea1f 100644
--- a/package.json
+++ b/package.json
@@ -50,7 +50,7 @@
},
"scripts": {
"postinstall": "yarn run build",
- "build": "yarn run css-compile --style=compressed && yarn run css-rtl && yarn run css-prefix && yarn run js-compile",
+ "build": "yarn run css-compile --style=compressed && yarn run css-prefix && yarn run css-rtl && yarn run js-compile",
"css-compile": "sass themes/pmahomme/scss:themes/pmahomme/css themes/original/scss:themes/original/css themes/metro/scss:themes/metro/css themes/bootstrap/scss:themes/bootstrap/css setup/scss:setup",
"css-lint": "stylelint -s scss \"themes/**/scss/*.scss\" \"setup/scss/*.scss\"",
"css-prefix": "postcss themes/*/css/*.css setup/styles.css --use autoprefixer --replace",