web-documentation 1.0.9 → 1.0.10
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 +6 -56
- package/package.json +13 -13
- package/source/index.ts +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "web-documentation",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
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.1045.0",
|
|
54
54
|
"@babel/eslint-parser": "^7.28.6",
|
|
55
55
|
"@babel/runtime": "^7.29.2",
|
|
56
56
|
"@eslint/js": "^10.0.1",
|
|
@@ -60,16 +60,16 @@
|
|
|
60
60
|
"@types/html-minifier": "^4.0.6",
|
|
61
61
|
"@types/jsdom": "^28.0.1",
|
|
62
62
|
"@types/marked": "^6.0.0",
|
|
63
|
-
"@types/node": "^25.
|
|
63
|
+
"@types/node": "^25.7.0",
|
|
64
64
|
"@types/unzipper": "^0.10.11",
|
|
65
65
|
"@types/webpack-env": "^1.18.8",
|
|
66
|
-
"@typescript-eslint/eslint-plugin": "^8.59.
|
|
67
|
-
"@typescript-eslint/parser": "^8.59.
|
|
66
|
+
"@typescript-eslint/eslint-plugin": "^8.59.3",
|
|
67
|
+
"@typescript-eslint/parser": "^8.59.3",
|
|
68
68
|
"@webcomponents/webcomponentsjs": "^2.8.0",
|
|
69
|
-
"archiver": "^
|
|
69
|
+
"archiver": "^8.0.0",
|
|
70
70
|
"clientnode": "^4.0.1395",
|
|
71
71
|
"css-loader": "^7.1.4",
|
|
72
|
-
"cssnano": "^8.0.
|
|
72
|
+
"cssnano": "^8.0.1",
|
|
73
73
|
"default-gateway": "^7.2.2",
|
|
74
74
|
"errorreporter": "^1.0.339",
|
|
75
75
|
"eslint": "^10.3.0",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"favicons": "^7.2.0",
|
|
79
79
|
"favicons-webpack-plugin": "^6.0.1",
|
|
80
80
|
"highlight.js": "^11.11.1",
|
|
81
|
-
"jest": "
|
|
81
|
+
"jest": "30.3.0",
|
|
82
82
|
"jsdoc": "^4.0.5",
|
|
83
83
|
"legal-notes": "^1.0.29",
|
|
84
84
|
"marked": "^18.0.3",
|
|
@@ -100,14 +100,14 @@
|
|
|
100
100
|
"style-loader": "^4.0.0",
|
|
101
101
|
"stylelint": "^17.11.0",
|
|
102
102
|
"stylelint-config-standard": "^40.0.0",
|
|
103
|
-
"typescript-eslint": "^8.59.
|
|
103
|
+
"typescript-eslint": "^8.59.3",
|
|
104
104
|
"ua-parser-js": "^2.0.9",
|
|
105
105
|
"unzipper": "^0.12.3",
|
|
106
|
-
"web-component-wrapper": "^0.0.
|
|
107
|
-
"web-internationalization": "^2.0.
|
|
106
|
+
"web-component-wrapper": "^0.0.591",
|
|
107
|
+
"web-internationalization": "^2.0.22",
|
|
108
108
|
"weboptimizer": "^3.0.22",
|
|
109
|
-
"webpack-dev-server": "^5.2.
|
|
110
|
-
"website-utilities": "^1.0.
|
|
109
|
+
"webpack-dev-server": "^5.2.4",
|
|
110
|
+
"website-utilities": "^1.0.408"
|
|
111
111
|
},
|
|
112
112
|
"engines": {
|
|
113
113
|
"node": ">=24",
|
package/source/index.ts
CHANGED
|
@@ -153,9 +153,10 @@ export class WebDocumentation<
|
|
|
153
153
|
* configured dom content.
|
|
154
154
|
* @param name - Attribute name which was updates.
|
|
155
155
|
* @param newValue - New updated value.
|
|
156
|
+
* @returns A promise resolving when attribute has been updated.
|
|
156
157
|
*/
|
|
157
|
-
onUpdateAttribute(name: string, newValue: string) {
|
|
158
|
-
super.onUpdateAttribute(name, newValue)
|
|
158
|
+
async onUpdateAttribute(name: string, newValue: string): Promise<void> {
|
|
159
|
+
await super.onUpdateAttribute(name, newValue)
|
|
159
160
|
|
|
160
161
|
if (name === 'options')
|
|
161
162
|
this._extendOptions()
|