@adobe/helix-html-pipeline 6.26.6 → 6.26.7
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/CHANGELOG.md +7 -0
- package/package.json +4 -4
- package/src/robots-pipe.js +6 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [6.26.7](https://github.com/adobe/helix-html-pipeline/compare/v6.26.6...v6.26.7) (2025-08-20)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* faq on default robots.txt ([#927](https://github.com/adobe/helix-html-pipeline/issues/927)) ([5c935fe](https://github.com/adobe/helix-html-pipeline/commit/5c935fe24e78490278057edfb1b762f1e6870b5b))
|
|
7
|
+
|
|
1
8
|
## [6.26.6](https://github.com/adobe/helix-html-pipeline/compare/v6.26.5...v6.26.6) (2025-07-21)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-html-pipeline",
|
|
3
|
-
"version": "6.26.
|
|
3
|
+
"version": "6.26.7",
|
|
4
4
|
"description": "Helix HTML Pipeline",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
@@ -70,8 +70,8 @@
|
|
|
70
70
|
"unist-util-visit-parents": "6.0.1"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
|
-
"@adobe/eslint-config-helix": "3.0.
|
|
74
|
-
"@eslint/config-helpers": "0.3.
|
|
73
|
+
"@adobe/eslint-config-helix": "3.0.9",
|
|
74
|
+
"@eslint/config-helpers": "0.3.1",
|
|
75
75
|
"@markedjs/html-differ": "5.0.2",
|
|
76
76
|
"@semantic-release/changelog": "6.0.3",
|
|
77
77
|
"@semantic-release/git": "10.0.1",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"js-yaml": "4.1.0",
|
|
87
87
|
"jsdom": "26.1.0",
|
|
88
88
|
"junit-report-builder": "5.1.1",
|
|
89
|
-
"lint-staged": "16.1.
|
|
89
|
+
"lint-staged": "16.1.5",
|
|
90
90
|
"mocha": "11.7.1",
|
|
91
91
|
"mocha-multi-reporters": "1.5.1",
|
|
92
92
|
"mocha-suppress-logs": "0.6.0",
|
package/src/robots-pipe.js
CHANGED
|
@@ -19,13 +19,13 @@ import initConfig from './steps/init-config.js';
|
|
|
19
19
|
/**
|
|
20
20
|
* Default robots.txt contents returned on inner/outer CDN.
|
|
21
21
|
*/
|
|
22
|
-
const DEFAULT_ROBOTS = `#
|
|
22
|
+
const DEFAULT_ROBOTS = `# AEM robots.txt FAQ
|
|
23
23
|
#
|
|
24
24
|
# Q: This looks like a default robots.txt, how can I provide my own?
|
|
25
|
-
# A:
|
|
26
|
-
#
|
|
25
|
+
# A: Add the contents of your robots.txt to your site configuration:
|
|
26
|
+
# https://labs.aem.live/tools/robots-edit/index.html
|
|
27
27
|
#
|
|
28
|
-
# Q: Why am I
|
|
28
|
+
# Q: Why am I seeing this robots.txt instead of the one I
|
|
29
29
|
# configured?
|
|
30
30
|
# A: You are visiting from *.aem.page or *.aem.live - in order
|
|
31
31
|
# to prevent these sites from showing up in search engines and
|
|
@@ -39,9 +39,8 @@ const DEFAULT_ROBOTS = `# Franklin robots.txt FAQ
|
|
|
39
39
|
# example.com
|
|
40
40
|
#
|
|
41
41
|
# Q: This does not answer my questions at all. What can I do?
|
|
42
|
-
# A:
|
|
43
|
-
#
|
|
44
|
-
# there.
|
|
42
|
+
# A: Head to your Teams or Slack channel, or ask us on Discord:
|
|
43
|
+
# https://discord.gg/aem-live
|
|
45
44
|
User-agent: *
|
|
46
45
|
Disallow: /
|
|
47
46
|
`;
|