@inditextech/docouture-cli 0.1.0-SNAPSHOT.64.1 → 0.1.0-SNAPSHOT.68.1
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/commands/new.js
CHANGED
|
@@ -450,8 +450,8 @@ function printNextSteps(args) {
|
|
|
450
450
|
console.log(theme.bold('Docs-authoring skills:'));
|
|
451
451
|
console.log(' npx skills@latest add InditexTech/docouture --all');
|
|
452
452
|
console.log(' (or --skill <name> for one at a time — installs docouture-getting-started,');
|
|
453
|
-
console.log(' docouture-documenting-changes, docouture-
|
|
454
|
-
console.log(' and, for a versioned-mode site, docouture-docs-versioning)');
|
|
453
|
+
console.log(' docouture-documenting-changes, docouture-authoring-guides, docouture-writing-docs-pages,');
|
|
454
|
+
console.log(' docouture-docs-internals and, for a versioned-mode site, docouture-docs-versioning)');
|
|
455
455
|
console.log('');
|
|
456
456
|
if (mode === 'versioned') {
|
|
457
457
|
console.log(theme.bold('Versioning: Versioned (Full History)'));
|
|
@@ -62,11 +62,14 @@ npx skills@latest add InditexTech/docouture --all
|
|
|
62
62
|
|
|
63
63
|
- **`docouture-getting-started`** — start here on a brand-new site: scaffolding (if not done
|
|
64
64
|
yet), planning what to document, sourcing content from wherever it actually lives
|
|
65
|
-
(existing docs, README, or the code itself). Hands off to the
|
|
66
|
-
|
|
65
|
+
(existing docs, README, or the code itself). Hands off to the skills below for mechanics
|
|
66
|
+
and content once a decision is made.
|
|
67
67
|
- **`docouture-documenting-changes`** — the re-entry point once the site exists: a feature,
|
|
68
68
|
change, deprecation or fix landed in the repo, and the docs need to catch up. This is
|
|
69
69
|
the one to reach for day to day, not `docouture-getting-started`.
|
|
70
|
+
- **`docouture-authoring-guides`** — what to actually write on each page: purpose, section
|
|
71
|
+
skeleton, per-section instructions, a copyable AsciiDoc starting point and a quality
|
|
72
|
+
checklist, for every page in the standard structure plus the home page.
|
|
70
73
|
- **`docouture-writing-docs-pages`** — authoring AsciiDoc content: the language itself,
|
|
71
74
|
`xref:` references, `nav.adoc`, admonitions, code blocks, and this site's own custom
|
|
72
75
|
blocks (`[tabs]`, `[cards]`, `[accordion]`, …).
|
|
@@ -56,7 +56,6 @@ on:
|
|
|
56
56
|
|
|
57
57
|
permissions:
|
|
58
58
|
contents: write
|
|
59
|
-
pull-requests: write
|
|
60
59
|
|
|
61
60
|
concurrency:
|
|
62
61
|
group: docouture-release
|
|
@@ -371,23 +370,23 @@ jobs:
|
|
|
371
370
|
git tag -f "$TAG" "$SHA"
|
|
372
371
|
git push origin "refs/tags/${TAG}" --force
|
|
373
372
|
|
|
374
|
-
#
|
|
375
|
-
#
|
|
376
|
-
#
|
|
377
|
-
#
|
|
378
|
-
#
|
|
379
|
-
#
|
|
380
|
-
#
|
|
381
|
-
#
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
373
|
+
# Neither mode creates a GitHub Release object — `Push release tag` above
|
|
374
|
+
# is the last step of this dance for both. Versioned mode used to
|
|
375
|
+
# (`gh release create --generate-notes` here, deleting-then-recreating
|
|
376
|
+
# on a republish), but that Release was functionally inert: nothing
|
|
377
|
+
# reads it back — no workflow, no Antora extension, no CLI command; the
|
|
378
|
+
# version dropdown and `duplicate_latest_version` are driven purely by
|
|
379
|
+
# the tag itself plus Antora's own ref aggregation (see
|
|
380
|
+
# versioning-modes.md) — and it polluted the same Releases page/RSS/
|
|
381
|
+
# watch feed as this repo's real npm semver releases
|
|
382
|
+
# (code-npm_node-publish-release-and-snapshot.yml), which #166's `docs/`
|
|
383
|
+
# tag prefix alone didn't fully solve: a Release object still shows in
|
|
384
|
+
# that list regardless of what its tag is named. `--generate-notes`'s
|
|
385
|
+
# auto PR-list was dropped outright rather than relocated when this was
|
|
386
|
+
# removed — its value is already covered by the hand-authored
|
|
387
|
+
# `release-notes/<version>.adoc` page and the auto-generated
|
|
388
|
+
# `changelog/index.adoc` (built from CHANGELOG.md at build time). See
|
|
389
|
+
# GH #172.
|
|
391
390
|
|
|
392
391
|
# Versioned only, and only on a genuine forward release (not a
|
|
393
392
|
# republish of an already-released version — see "Check for existing
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inditextech/docouture-cli",
|
|
3
|
-
"version": "0.1.0-SNAPSHOT.
|
|
3
|
+
"version": "0.1.0-SNAPSHOT.68.1",
|
|
4
4
|
"description": "Command-line tool for docouture documentation sites: scaffold a new site and set its Antora version outside the monorepo",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|