Skip to content

Commit 3f5ef57

Browse files
committed
Latest 4.8.x build
1 parent b01d933 commit 3f5ef57

File tree

3 files changed

+35
-27
lines changed

3 files changed

+35
-27
lines changed

dist/textpattern/jquery-ui.css

-2
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,6 @@ a.ui-state-default:focus {
575575
/* 4 */
576576
cursor: pointer;
577577
-webkit-user-select: none;
578-
-ms-user-select: none;
579578
user-select: none;
580579
}
581580
.ui-button:hover {
@@ -1549,7 +1548,6 @@ input.ui-button.ui-icon-notext .ui-icon {
15491548
font-family: inherit;
15501549
cursor: pointer;
15511550
-webkit-user-select: auto;
1552-
-ms-user-select: auto;
15531551
user-select: auto;
15541552
}
15551553
.no-ui-button .ui-selectmenu-button:hover, .no-ui-button .ui-selectmenu-button:active {

package.json

+14-16
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "textpattern-jquery-ui-theme",
33
"description": "The jQuery UI theme used within Textpattern CMS admin side.",
4-
"version": "4.8.4",
4+
"version": "4.8.6",
55
"keywords": [
66
"jquery-ui",
77
"theme",
@@ -17,29 +17,27 @@
1717
"url": "https://github.com/textpattern/textpattern-jquery-ui-theme/issues"
1818
},
1919
"devDependencies": {
20-
"autoprefixer": "9.8.6",
20+
"autoprefixer": "10.2.6",
2121
"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",
2424
"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",
3031
"stylelint-order": "4.1.0",
31-
"stylelint-scss": "3.18.0",
32+
"stylelint-scss": "3.19.0",
3233
"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"
3836
},
3937
"browserslist": [
4038
"> 0.5%",
4139
"Firefox ESR",
42-
"IE 11"
40+
"not IE 11"
4341
],
4442
"scripts": {
4543
"build": "webpack --progress"

webpack.config.js

+21-9
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const MiniCssExtractPlugin = require('mini-css-extract-plugin');
55
const StyleLintPlugin = require('stylelint-webpack-plugin');
66

77
module.exports = {
8+
mode: 'production',
89
entry: {
910
'jquery-ui.css': './scss/jquery-ui.scss'
1011
},
@@ -18,20 +19,31 @@ module.exports = {
1819
test: /\.(scss)$/,
1920
use: [
2021
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+
},
2638
{
2739
loader: 'sass-loader',
2840
options: {
2941
implementation: require('sass'),
3042
sassOptions: {
31-
outputStyle: 'expanded'
32-
}
33-
}
34-
}
43+
outputStyle: 'expanded',
44+
},
45+
},
46+
},
3547
]
3648
},
3749
]

0 commit comments

Comments
 (0)