@ideasonpurpose/build-tools-wordpress 2.1.6 → 2.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/README.md +1 -1
- package/config/webpack.config.js +2 -8
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### v2.1.6
|
|
8
|
+
|
|
9
|
+
> 1 May 2025
|
|
10
|
+
|
|
11
|
+
- refactor tokenizeHTML, bug fixes, tests
|
|
12
|
+
- typo
|
|
13
|
+
|
|
7
14
|
#### v2.1.5
|
|
8
15
|
|
|
9
16
|
> 17 April 2025
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @ideasonpurpose/build-tools-wordpress
|
|
2
2
|
|
|
3
|
-
#### Version 2.1.
|
|
3
|
+
#### Version 2.1.7
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@ideasonpurpose/build-tools-wordpress)
|
|
6
6
|
[](https://github.com/ideasonpurpose/build-tools-wordpress#readme)
|
package/config/webpack.config.js
CHANGED
|
@@ -128,12 +128,13 @@ export default async (env) => {
|
|
|
128
128
|
loader: "css-loader",
|
|
129
129
|
options: {
|
|
130
130
|
import: false, // imports already handled by Sass or PostCSS
|
|
131
|
-
|
|
131
|
+
sourceMap: !isProduction,
|
|
132
132
|
},
|
|
133
133
|
},
|
|
134
134
|
{
|
|
135
135
|
loader: "postcss-loader",
|
|
136
136
|
options: {
|
|
137
|
+
sourceMap: !isProduction,
|
|
137
138
|
postcssOptions: {
|
|
138
139
|
plugins: isProduction
|
|
139
140
|
? [
|
|
@@ -144,13 +145,6 @@ export default async (env) => {
|
|
|
144
145
|
},
|
|
145
146
|
},
|
|
146
147
|
},
|
|
147
|
-
// {
|
|
148
|
-
// loader: "resolve-url-loader",
|
|
149
|
-
// options: {
|
|
150
|
-
// // sourceMap: true,
|
|
151
|
-
// // debug: true,
|
|
152
|
-
// },
|
|
153
|
-
// },
|
|
154
148
|
{
|
|
155
149
|
loader: "sass-loader",
|
|
156
150
|
options: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ideasonpurpose/build-tools-wordpress",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.7",
|
|
4
4
|
"description": "Build scripts and dependencies for IOP's WordPress development environments.",
|
|
5
5
|
"homepage": "https://github.com/ideasonpurpose/build-tools-wordpress#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -39,30 +39,30 @@
|
|
|
39
39
|
"@rollup/plugin-json": "^6.1.0",
|
|
40
40
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
41
41
|
"@svgr/webpack": "^8.1.0",
|
|
42
|
-
"@wordpress/dependency-extraction-webpack-plugin": "^6.
|
|
42
|
+
"@wordpress/dependency-extraction-webpack-plugin": "^6.24.0",
|
|
43
43
|
"ansi-html": "^0.0.9",
|
|
44
44
|
"archiver": "^7.0.1",
|
|
45
45
|
"auto-changelog": "^2.5.0",
|
|
46
46
|
"autoprefixer": "^10.4.21",
|
|
47
47
|
"babel-loader": "^10.0.0",
|
|
48
|
-
"caniuse-lite": "^1.0.
|
|
48
|
+
"caniuse-lite": "^1.0.30001718",
|
|
49
49
|
"chalk": "^5.4.1",
|
|
50
|
-
"chalk-cli": "^
|
|
50
|
+
"chalk-cli": "^6.0.0",
|
|
51
51
|
"classnames": "^2.5.1",
|
|
52
52
|
"cli-truncate": "^4.0.0",
|
|
53
53
|
"copy-webpack-plugin": "^13.0.0",
|
|
54
54
|
"cosmiconfig": "^9.0.0",
|
|
55
55
|
"cross-env": "^7.0.3",
|
|
56
56
|
"css-loader": "^7.1.2",
|
|
57
|
-
"cssnano": "^7.0.
|
|
57
|
+
"cssnano": "^7.0.7",
|
|
58
58
|
"dotenv": "^16.5.0",
|
|
59
59
|
"esbuild-loader": "^4.3.0",
|
|
60
|
-
"eslint": "^9.
|
|
60
|
+
"eslint": "^9.27.0",
|
|
61
61
|
"filesize": "^10.1.6",
|
|
62
62
|
"fs-extra": "^11.3.0",
|
|
63
63
|
"globby": "^14.1.0",
|
|
64
64
|
"http-proxy": "^1.18.1",
|
|
65
|
-
"humanize-duration": "^3.32.
|
|
65
|
+
"humanize-duration": "^3.32.2",
|
|
66
66
|
"image-minimizer-webpack-plugin": "^4.1.3",
|
|
67
67
|
"is-text-path": "^3.0.0",
|
|
68
68
|
"lodash": "^4.17.21",
|
|
@@ -74,17 +74,17 @@
|
|
|
74
74
|
"pretty-hrtime": "^1.0.3",
|
|
75
75
|
"read-package-up": "^11.0.0",
|
|
76
76
|
"replacestream": "^4.0.3",
|
|
77
|
-
"sass-embedded": "^1.
|
|
77
|
+
"sass-embedded": "^1.89.0",
|
|
78
78
|
"sass-loader": "^16.0.5",
|
|
79
|
-
"semver": "^7.7.
|
|
80
|
-
"sharp": "^0.34.
|
|
81
|
-
"sort-package-json": "^3.
|
|
79
|
+
"semver": "^7.7.2",
|
|
80
|
+
"sharp": "^0.34.2",
|
|
81
|
+
"sort-package-json": "^3.2.1",
|
|
82
82
|
"string-length": "^6.0.0",
|
|
83
83
|
"style-loader": "^4.0.0",
|
|
84
84
|
"svgo": "^3.3.2",
|
|
85
85
|
"svgo-loader": "^4.0.0",
|
|
86
86
|
"version-everything": "^0.11.4",
|
|
87
|
-
"webpack": "^5.99.
|
|
87
|
+
"webpack": "^5.99.9",
|
|
88
88
|
"webpack-bundle-analyzer": "^4.10.2",
|
|
89
89
|
"webpack-dev-middleware": "^7.4.2",
|
|
90
90
|
"webpack-dev-server": "^5.2.1"
|
|
@@ -93,8 +93,8 @@
|
|
|
93
93
|
"webpack-cli": "^6.0.1"
|
|
94
94
|
},
|
|
95
95
|
"devDependencies": {
|
|
96
|
-
"@vitest/coverage-v8": "^3.1.
|
|
97
|
-
"vitest": "^3.1.
|
|
96
|
+
"@vitest/coverage-v8": "^3.1.4",
|
|
97
|
+
"vitest": "^3.1.4"
|
|
98
98
|
},
|
|
99
99
|
"version-everything": {
|
|
100
100
|
"files": [
|