@sitecore-jss/sitecore-jss-rendering-host 22.0.0-canary.38 → 22.0.0-canary.42
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 +5 -2
- package/package.json +5 -6
package/README.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
This module is provided as a part of Sitecore JavaScript Rendering SDK (JSS). It contains the rendering host implementation.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
<!---
|
|
6
|
+
@TODO: Update to next version docs before release
|
|
7
|
+
-->
|
|
8
|
+
[Documentation (Experience Platform)](https://doc.sitecore.com/xp/en/developers/hd/22/sitecore-headless-development/sitecore-javascript-rendering-sdks--jss-.html)
|
|
6
9
|
|
|
7
|
-
|
|
10
|
+
[API reference documentation](/ref-docs/sitecore-jss-rendering-host/)
|
package/package.json
CHANGED
|
@@ -1,21 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sitecore-jss/sitecore-jss-rendering-host",
|
|
3
|
-
"version": "22.0.0-canary.
|
|
3
|
+
"version": "22.0.0-canary.42",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"scripts": {
|
|
8
8
|
"build": "npm run clean && tsc -p tsconfig.json && tsc -p tsconfig-esm.json",
|
|
9
9
|
"clean": "del-cli dist types",
|
|
10
|
-
"lint": "eslint ./src/**/*.ts",
|
|
10
|
+
"lint": "eslint \"./src/**/*.ts\"",
|
|
11
11
|
"test": "mocha --require ts-node/register/transpile-only \"./src/**/*.test.ts\"",
|
|
12
12
|
"prepublishOnly": "npm run build",
|
|
13
13
|
"coverage": "nyc npm test",
|
|
14
14
|
"generate-docs": "npx typedoc --plugin typedoc-plugin-markdown --readme none --out ../../ref-docs/sitecore-jss-rendering-host src/index.ts --githubPages false"
|
|
15
15
|
},
|
|
16
16
|
"engines": {
|
|
17
|
-
"node": ">=
|
|
18
|
-
"npm": ">=6"
|
|
17
|
+
"node": ">=18"
|
|
19
18
|
},
|
|
20
19
|
"author": {
|
|
21
20
|
"name": "Sitecore Corporation",
|
|
@@ -42,7 +41,7 @@
|
|
|
42
41
|
"@types/glob": "^8.0.1",
|
|
43
42
|
"@types/mocha": "^10.0.1",
|
|
44
43
|
"@types/node": "^18.11.18",
|
|
45
|
-
"@types/webpack": "5.28.
|
|
44
|
+
"@types/webpack": "5.28.5",
|
|
46
45
|
"@types/webpack-dev-middleware": "2.0.5",
|
|
47
46
|
"@types/webpack-dev-server": "3.1.7",
|
|
48
47
|
"chai": "^4.3.0",
|
|
@@ -67,5 +66,5 @@
|
|
|
67
66
|
"types",
|
|
68
67
|
"/global.d.ts"
|
|
69
68
|
],
|
|
70
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "5832a186100a80805113d68cde0f8e578ef9193c"
|
|
71
70
|
}
|