File tree 3 files changed +35
-27
lines changed
3 files changed +35
-27
lines changed Original file line number Diff line number Diff line change @@ -575,7 +575,6 @@ a.ui-state-default:focus {
575
575
/* 4 */
576
576
cursor : pointer;
577
577
-webkit-user-select : none;
578
- -ms-user-select : none;
579
578
user-select : none;
580
579
}
581
580
.ui-button : hover {
@@ -1549,7 +1548,6 @@ input.ui-button.ui-icon-notext .ui-icon {
1549
1548
font-family : inherit;
1550
1549
cursor : pointer;
1551
1550
-webkit-user-select : auto;
1552
- -ms-user-select : auto;
1553
1551
user-select : auto;
1554
1552
}
1555
1553
.no-ui-button .ui-selectmenu-button : hover , .no-ui-button .ui-selectmenu-button : active {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " textpattern-jquery-ui-theme" ,
3
3
"description" : " The jQuery UI theme used within Textpattern CMS admin side." ,
4
- "version" : " 4.8.4 " ,
4
+ "version" : " 4.8.6 " ,
5
5
"keywords" : [
6
6
" jquery-ui" ,
7
7
" theme" ,
17
17
"url" : " https://github.com/textpattern/textpattern-jquery-ui-theme/issues"
18
18
},
19
19
"devDependencies" : {
20
- "autoprefixer" : " 9.8 .6" ,
20
+ "autoprefixer" : " 10.2 .6" ,
21
21
"clean-webpack-plugin" : " 3.0.0" ,
22
- "cross-env" : " 7.0.2 " ,
23
- "css-loader" : " 5.0.1 " ,
22
+ "cross-env" : " 7.0.3 " ,
23
+ "css-loader" : " 5.2.6 " ,
24
24
"fibers" : " 5.0.0" ,
25
- "mini-css-extract-plugin" : " 1.3.1" ,
26
- "postcss-loader" : " 3.0.0" ,
27
- "sass" : " 1.29.0" ,
28
- "sass-loader" : " 10.1.0" ,
29
- "stylelint" : " 13.8.0" ,
25
+ "mini-css-extract-plugin" : " 1.6.0" ,
26
+ "postcss" : " 8.3.0" ,
27
+ "postcss-loader" : " 5.3.0" ,
28
+ "sass" : " 1.34.0" ,
29
+ "sass-loader" : " 11.1.1" ,
30
+ "stylelint" : " 13.13.1" ,
30
31
"stylelint-order" : " 4.1.0" ,
31
- "stylelint-scss" : " 3.18 .0" ,
32
+ "stylelint-scss" : " 3.19 .0" ,
32
33
"stylelint-webpack-plugin" : " 2.1.1" ,
33
- "webpack" : " 5.6.0" ,
34
- "webpack-cli" : " 4.2.0"
35
- },
36
- "optionalDependencies" : {
37
- "fibers" : " 5.0.0"
34
+ "webpack" : " 5.38.1" ,
35
+ "webpack-cli" : " 4.7.0"
38
36
},
39
37
"browserslist" : [
40
38
" > 0.5%" ,
41
39
" Firefox ESR" ,
42
- " IE 11"
40
+ " not IE 11"
43
41
],
44
42
"scripts" : {
45
43
"build" : " webpack --progress"
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ const MiniCssExtractPlugin = require('mini-css-extract-plugin');
5
5
const StyleLintPlugin = require ( 'stylelint-webpack-plugin' ) ;
6
6
7
7
module . exports = {
8
+ mode : 'production' ,
8
9
entry : {
9
10
'jquery-ui.css' : './scss/jquery-ui.scss'
10
11
} ,
@@ -18,20 +19,31 @@ module.exports = {
18
19
test : / \. ( s c s s ) $ / ,
19
20
use : [
20
21
MiniCssExtractPlugin . loader ,
21
- // Translates CSS into CommonJS modules.
22
- { loader : 'css-loader' , options : { importLoaders : 2 } } ,
23
- // Run postCSS actions.
24
- { loader : 'postcss-loader' , options : { plugins : [ require ( 'autoprefixer' ) ] } } ,
25
- // Compiles Sass to CSS.
22
+ {
23
+ loader : 'css-loader' ,
24
+ options : {
25
+ importLoaders : 2 ,
26
+ } ,
27
+ } ,
28
+ {
29
+ loader : 'postcss-loader' ,
30
+ options : {
31
+ postcssOptions : {
32
+ plugins : [
33
+ 'autoprefixer' ,
34
+ ] ,
35
+ } ,
36
+ } ,
37
+ } ,
26
38
{
27
39
loader : 'sass-loader' ,
28
40
options : {
29
41
implementation : require ( 'sass' ) ,
30
42
sassOptions : {
31
- outputStyle : 'expanded'
32
- }
33
- }
34
- }
43
+ outputStyle : 'expanded' ,
44
+ } ,
45
+ } ,
46
+ } ,
35
47
]
36
48
} ,
37
49
]
You can’t perform that action at this time.
0 commit comments