Upgrade Yarn dev dependencies
Moves Sass to the dev dependencies. Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
This commit is contained in:
parent
fe4ae4c415
commit
4c41f85a0b
@ -34,6 +34,9 @@
|
||||
"new-cap": "error",
|
||||
"no-array-constructor": "error",
|
||||
"no-eval": "error",
|
||||
"no-jquery/no-event-shorthand": "off",
|
||||
"no-jquery/no-is-array": "off",
|
||||
"no-jquery/no-sizzle": "off",
|
||||
"no-loop-func": "error",
|
||||
"no-multiple-empty-lines": "error",
|
||||
"no-new-func": "error",
|
||||
|
||||
@ -3,6 +3,7 @@ phpMyAdmin - ChangeLog
|
||||
|
||||
5.0.3 (not yet released)
|
||||
- issue #15983 Require twig ^2.9
|
||||
- issue Move Sass to the development dependencies
|
||||
|
||||
5.0.2 (2020-03-20)
|
||||
- issue Fixed deprecation warning "implode(): Passing glue string after array is deprecated." function on export page
|
||||
|
||||
11
package.json
11
package.json
@ -17,7 +17,6 @@
|
||||
"jquery.event.drag": "2.2.2",
|
||||
"js-cookie": "2.2.1",
|
||||
"popper.js": "^1.14.6",
|
||||
"sass": "^1.22.4",
|
||||
"tracekit": "0.4.5",
|
||||
"u2f-api-polyfill": "0.4.4",
|
||||
"updated-jqplot": "1.0.9",
|
||||
@ -26,11 +25,15 @@
|
||||
"devDependencies": {
|
||||
"eslint": "^6.2.2",
|
||||
"eslint-plugin-no-jquery": "^2.1.0",
|
||||
"stylelint": "^10.1.0",
|
||||
"stylelint-config-recommended-scss": "^3.3.0",
|
||||
"stylelint-config-standard": "^18.3.0",
|
||||
"sass": "^1.22.4",
|
||||
"stylelint": "^13.2.1",
|
||||
"stylelint-config-recommended-scss": "^4.2.0",
|
||||
"stylelint-config-standard": "^20.0.0",
|
||||
"stylelint-scss": "^3.10.0"
|
||||
},
|
||||
"resolutions": {
|
||||
"kind-of": "^6.0.3"
|
||||
},
|
||||
"scripts": {
|
||||
"postinstall": "yarn run --silent css-compile --quiet --style=compressed",
|
||||
"css-compile": "sass themes/pmahomme/scss:themes/pmahomme/css themes/original/scss:themes/original/css themes/metro/scss:themes/metro/css",
|
||||
|
||||
@ -5,7 +5,7 @@ $font-family: "Open Sans", "Segoe UI", sans-serif;
|
||||
$font-family-light: "Open Sans Light", "Segoe UI Light", "Segoe UI", sans-serif;
|
||||
$font-family-bold: "Open Sans Bold", sans-serif;
|
||||
$font-family-extra-bold: "Open Sans Extrabold", "Segoe Black", sans-serif;
|
||||
$font-family-fixed: Consolas, "Lucida Grande", monospace;
|
||||
$font-family-fixed: "Consolas", "Lucida Grande", monospace;
|
||||
|
||||
// Theme color scheme
|
||||
// Values: "teal", "redmond", "blueeyes", "mono", "win"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user