web-documentation 1.0.35 → 1.0.36
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/build/deploy.js +1 -1
- package/package.json +6 -6
- package/source/deploy.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "web-documentation",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.36",
|
|
4
4
|
"description": "Declarative multilanguage documentation website generator",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"documentation",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"watch": "weboptimizer build --watch"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@aws-sdk/client-s3": "^3.
|
|
53
|
+
"@aws-sdk/client-s3": "^3.1067.0",
|
|
54
54
|
"@babel/eslint-parser": "^7.29.7",
|
|
55
55
|
"@babel/runtime": "^7.29.7",
|
|
56
56
|
"@eslint/js": "^10.0.1",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@types/html-minifier": "^4.0.6",
|
|
61
61
|
"@types/jsdom": "^28.0.3",
|
|
62
62
|
"@types/marked": "^6.0.0",
|
|
63
|
-
"@types/node": "^25.9.
|
|
63
|
+
"@types/node": "^25.9.3",
|
|
64
64
|
"@types/unzipper": "^0.10.11",
|
|
65
65
|
"@types/webpack-env": "^1.18.8",
|
|
66
66
|
"@typescript-eslint/eslint-plugin": "^8.61.0",
|
|
@@ -70,9 +70,9 @@
|
|
|
70
70
|
"bootstrap-icons": "^1.13.1",
|
|
71
71
|
"clientnode": "^4.0.1422",
|
|
72
72
|
"css-loader": "^7.1.4",
|
|
73
|
-
"cssnano": "^8.0.
|
|
73
|
+
"cssnano": "^8.0.2",
|
|
74
74
|
"default-gateway": "^7.2.2",
|
|
75
|
-
"errorreporter": "^1.0.
|
|
75
|
+
"errorreporter": "^1.0.348",
|
|
76
76
|
"eslint": "^10.4.1",
|
|
77
77
|
"eslint-config-google": "^0.14.0",
|
|
78
78
|
"eslint-plugin-jsdoc": "^63.0.2",
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"typescript-eslint": "^8.61.0",
|
|
105
105
|
"ua-parser-js": "^2.0.10",
|
|
106
106
|
"unzipper": "^0.12.3",
|
|
107
|
-
"web-component-wrapper": "^0.0.
|
|
107
|
+
"web-component-wrapper": "^0.0.597",
|
|
108
108
|
"web-internationalization": "^2.0.41",
|
|
109
109
|
"weboptimizer": "^3.0.24",
|
|
110
110
|
"webpack-dev-server": "^5.2.4",
|
package/source/deploy.ts
CHANGED
|
@@ -53,7 +53,7 @@ interface MAKE_TEMPORARY_FILE_OPTIONS {
|
|
|
53
53
|
}
|
|
54
54
|
interface SCOPE_TYPE extends Mapping<unknown> {
|
|
55
55
|
description?: string
|
|
56
|
-
|
|
56
|
+
webDocumentation?: PlainObject
|
|
57
57
|
files?: Array<string>
|
|
58
58
|
main?: string
|
|
59
59
|
name: string
|
|
@@ -237,7 +237,7 @@ const generateAndPushNewDocumentationPage = async (
|
|
|
237
237
|
|
|
238
238
|
let parameters: Mapping<unknown> = {}
|
|
239
239
|
for (const [key, value] of Object.entries(
|
|
240
|
-
SCOPE.
|
|
240
|
+
SCOPE.webDocumentation || {}
|
|
241
241
|
))
|
|
242
242
|
parameters[camelCaseToDelimited(key).toUpperCase()] = value
|
|
243
243
|
if (!parameters.TAGLINE && SCOPE.description)
|