@ideasonpurpose/build-tools-wordpress 2.10.10 → 2.10.11
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/README.md +2 -2
- package/bin/update-wp-image.js +4 -1
- package/boilerplate/package.json +2 -2
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @ideasonpurpose/build-tools-wordpress
|
|
2
2
|
|
|
3
|
-
#### Version 2.10.
|
|
3
|
+
#### Version 2.10.11
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@ideasonpurpose/build-tools-wordpress)
|
|
6
6
|
[](https://github.com/ideasonpurpose/build-tools-wordpress/actions/workflows/npm-publish.yml)
|
|
@@ -35,7 +35,7 @@ Typical host scripts (see [`boilerplate/package.json`](./boilerplate/package.jso
|
|
|
35
35
|
"zip": "iop-build-zip-archive"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@ideasonpurpose/build-tools-wordpress": "^2.10.
|
|
38
|
+
"@ideasonpurpose/build-tools-wordpress": "^2.10.11"
|
|
39
39
|
},
|
|
40
40
|
"prettier": "@ideasonpurpose/prettier-config",
|
|
41
41
|
"stylelint": {
|
package/bin/update-wp-image.js
CHANGED
|
@@ -38,4 +38,7 @@ if (!IMAGE_RE.test(yaml)) {
|
|
|
38
38
|
|
|
39
39
|
const image = `ideasonpurpose/wordpress:${wordpress}`;
|
|
40
40
|
await writeFile(composePath, yaml.replace(IMAGE_RE, `$1${image}`));
|
|
41
|
-
console.log(
|
|
41
|
+
console.log(
|
|
42
|
+
"✅",
|
|
43
|
+
chalk.green(`docker-compose WordPress image updated to ${image}`),
|
|
44
|
+
);
|
package/boilerplate/package.json
CHANGED
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"extends": "@ideasonpurpose/stylelint-config"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@ideasonpurpose/build-tools-wordpress": "^2.10.
|
|
66
|
+
"@ideasonpurpose/build-tools-wordpress": "^2.10.11"
|
|
67
67
|
},
|
|
68
68
|
"version-everything": {
|
|
69
69
|
"files": [
|
|
@@ -71,4 +71,4 @@
|
|
|
71
71
|
"wp-content/themes/iop-theme/style.css"
|
|
72
72
|
]
|
|
73
73
|
}
|
|
74
|
-
}
|
|
74
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ideasonpurpose/build-tools-wordpress",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.11",
|
|
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": {
|
|
@@ -105,7 +105,11 @@
|
|
|
105
105
|
},
|
|
106
106
|
"version-everything": {
|
|
107
107
|
"files": [
|
|
108
|
-
"README.md"
|
|
108
|
+
"README.md",
|
|
109
|
+
"boilerplate/package.json"
|
|
110
|
+
],
|
|
111
|
+
"prefixes": [
|
|
112
|
+
"@ideasonpurpose/build-tools-wordpress\": \"\\^"
|
|
109
113
|
]
|
|
110
114
|
},
|
|
111
115
|
"allowScripts": {
|