dotcom-tool-kit 4.8.0 → 4.8.2
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/lib/messages.js +3 -3
- package/package.json +4 -4
package/lib/messages.js
CHANGED
|
@@ -71,7 +71,7 @@ const formatUnusedPluginOptions = (unusedOptions, definedPlugins) => `Options ar
|
|
|
71
71
|
|
|
72
72
|
${unusedOptions.map((optionName) => `- ${logger_1.styles.plugin(optionName)}`).join('\n')}
|
|
73
73
|
|
|
74
|
-
They could be misspelt, or defined by a Tool Kit plugin that isn't
|
|
74
|
+
They could be misspelt, placed at the wrong level of YAML indentation, or defined by a Tool Kit plugin that isn't used by this app.
|
|
75
75
|
|
|
76
76
|
${definedPlugins.length > 0
|
|
77
77
|
? `Plugins that are defined and can have options set are: ${definedPlugins
|
|
@@ -84,7 +84,7 @@ const formatUnusedTaskOptions = (unusedOptions, definedTasks) => `Options are de
|
|
|
84
84
|
|
|
85
85
|
${unusedOptions.map((optionName) => `- ${logger_1.styles.task(optionName)}`).join('\n')}
|
|
86
86
|
|
|
87
|
-
They could be misspelt, or defined by a Tool Kit plugin that isn't
|
|
87
|
+
They could be misspelt, placed at the wrong level of YAML indentation, or defined by a Tool Kit plugin that isn't used by this app.
|
|
88
88
|
|
|
89
89
|
${definedTasks.length > 0
|
|
90
90
|
? `Task that are defined and can have options set are: ${definedTasks
|
|
@@ -97,7 +97,7 @@ const formatUnusedHookOptions = (unusedOptions, definedHooks) => `Options are de
|
|
|
97
97
|
|
|
98
98
|
${unusedOptions.map((optionName) => `- ${logger_1.styles.hook(optionName)}`).join('\n')}
|
|
99
99
|
|
|
100
|
-
They could be misspelt, or defined by a Tool Kit plugin that isn't
|
|
100
|
+
They could be misspelt, placed at the wrong level of YAML indentation, or defined by a Tool Kit plugin that isn't used by this app.
|
|
101
101
|
|
|
102
102
|
${definedHooks.length > 0
|
|
103
103
|
? `Hooks that are defined and can have options set are: ${definedHooks
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dotcom-tool-kit",
|
|
3
|
-
"version": "4.8.
|
|
3
|
+
"version": "4.8.2",
|
|
4
4
|
"description": "modern, maintainable, modular developer tooling for FT.com projects",
|
|
5
5
|
"author": "FT.com Platforms Team <platforms-team.customer-products@ft.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@jest/globals": "^29.7.0",
|
|
24
24
|
"@relmify/jest-serializer-strip-ansi": "1.0.2",
|
|
25
|
-
"@types/lodash": "^4.17.
|
|
25
|
+
"@types/lodash": "^4.17.18",
|
|
26
26
|
"@types/pluralize": "^0.0.33",
|
|
27
27
|
"globby": "^10.0.2",
|
|
28
28
|
"winston": "^3.17.0",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"pluralize": "^8.0.0",
|
|
46
46
|
"pretty-format": "^29.7.0",
|
|
47
47
|
"tslib": "^2.8.1",
|
|
48
|
-
"yaml": "^2.
|
|
49
|
-
"zod-validation-error": "^
|
|
48
|
+
"yaml": "^2.8.0",
|
|
49
|
+
"zod-validation-error": "^3.4.1"
|
|
50
50
|
},
|
|
51
51
|
"engines": {
|
|
52
52
|
"node": "18.x || 20.x || 22.x"
|