@inditextech/docouture-cli 0.1.0-SNAPSHOT.74.1 → 0.1.0-SNAPSHOT.82.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/bin.js +3 -0
- package/build/commands/branch-model.js +3 -0
- package/build/commands/build.js +3 -0
- package/build/commands/completion.js +3 -0
- package/build/commands/dev.js +3 -0
- package/build/commands/doctor.js +3 -0
- package/build/commands/eject.js +3 -0
- package/build/commands/new.js +3 -0
- package/build/commands/publish.js +3 -0
- package/build/commands/teardown.js +3 -0
- package/build/commands/upgrade.js +3 -0
- package/build/commands/version.js +3 -0
- package/build/lib/agents-md.js +3 -0
- package/build/lib/antora-log.js +3 -0
- package/build/lib/antora-yml.js +3 -0
- package/build/lib/args.js +3 -0
- package/build/lib/branch-detect.js +3 -0
- package/build/lib/cli-context.js +3 -0
- package/build/lib/cli-info.js +3 -0
- package/build/lib/config-resolver.js +3 -0
- package/build/lib/copy-template.js +3 -0
- package/build/lib/debug-log.js +3 -0
- package/build/lib/detect-package-manager.js +3 -0
- package/build/lib/dev-server.js +3 -0
- package/build/lib/doctor-checks.js +3 -0
- package/build/lib/global-flags.js +3 -0
- package/build/lib/kroki-compose.js +3 -0
- package/build/lib/playbook-yml.js +3 -0
- package/build/lib/repo-root.js +3 -0
- package/build/lib/run-script.js +3 -0
- package/build/lib/theme.js +3 -0
- package/build/templates/starter/scripts/check-links.mjs +5 -0
- package/build/templates/workflows/docouture-release-preview.yml +3 -0
- package/package.json +1 -1
package/build/bin.js
CHANGED
package/build/commands/build.js
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
// SPDX-FileCopyrightText: 2026 INDUSTRIA DE DISEÑO TEXTIL S.A. (INDITEX S.A.)
|
|
2
|
+
//
|
|
3
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
1
4
|
'use strict';
|
|
2
5
|
// `docouture completion <bash|zsh>` — prints a completion script to stdout (so
|
|
3
6
|
// `docouture completion bash > file` and `eval "$(docouture completion bash)"` both
|
package/build/commands/dev.js
CHANGED
package/build/commands/doctor.js
CHANGED
package/build/commands/eject.js
CHANGED
package/build/commands/new.js
CHANGED
package/build/lib/agents-md.js
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
// SPDX-FileCopyrightText: 2026 INDUSTRIA DE DISEÑO TEXTIL S.A. (INDITEX S.A.)
|
|
2
|
+
//
|
|
3
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
1
4
|
'use strict';
|
|
2
5
|
// AGENTS.md is the one scaffolded file `docouture new`/`docouture upgrade` never
|
|
3
6
|
// treat as all-or-nothing: unlike a workflow file or a skill directory, a
|
package/build/lib/antora-log.js
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
// SPDX-FileCopyrightText: 2026 INDUSTRIA DE DISEÑO TEXTIL S.A. (INDITEX S.A.)
|
|
2
|
+
//
|
|
3
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
1
4
|
'use strict';
|
|
2
5
|
// Antora's own default log level is `warn` — set explicitly by @antora/
|
|
3
6
|
// playbook-builder's convict schema, not the `info` @antora/logger falls
|
package/build/lib/antora-yml.js
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
// SPDX-FileCopyrightText: 2026 INDUSTRIA DE DISEÑO TEXTIL S.A. (INDITEX S.A.)
|
|
2
|
+
//
|
|
3
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
1
4
|
'use strict';
|
|
2
5
|
// Patches the two fields `docouture version` cares about — `version:` and
|
|
3
6
|
// `prerelease:` — by line, rather than parsing the file into a YAML document
|
package/build/lib/args.js
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
// SPDX-FileCopyrightText: 2026 INDUSTRIA DE DISEÑO TEXTIL S.A. (INDITEX S.A.)
|
|
2
|
+
//
|
|
3
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
1
4
|
'use strict';
|
|
2
5
|
// Branch-name derivation for git-flow support (GH #175) — deliberately not
|
|
3
6
|
// persisted anywhere as its own config, the same way `docouture-release.yml`'s
|
package/build/lib/cli-context.js
CHANGED
package/build/lib/cli-info.js
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
// SPDX-FileCopyrightText: 2026 INDUSTRIA DE DISEÑO TEXTIL S.A. (INDITEX S.A.)
|
|
2
|
+
//
|
|
3
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
1
4
|
'use strict';
|
|
2
5
|
// The one config-precedence rule this CLI applies in more than one place —
|
|
3
6
|
// CLI flags win over a persisted/configured value, which wins over a
|
package/build/lib/debug-log.js
CHANGED
package/build/lib/dev-server.js
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
// SPDX-FileCopyrightText: 2026 INDUSTRIA DE DISEÑO TEXTIL S.A. (INDITEX S.A.)
|
|
2
|
+
//
|
|
3
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
1
4
|
'use strict';
|
|
2
5
|
// Development server for a scaffolded Antora site — ported from the
|
|
3
6
|
// monorepo's code/scripts/dev.mjs, trimmed to what a standalone site (no
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
// SPDX-FileCopyrightText: 2026 INDUSTRIA DE DISEÑO TEXTIL S.A. (INDITEX S.A.)
|
|
2
|
+
//
|
|
3
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
1
4
|
'use strict';
|
|
2
5
|
// Regex-based reader for the handful of `antora-playbook.yml` fields `docouture
|
|
3
6
|
// dev` and `docouture doctor` need — deliberately not a YAML parser, matching
|
package/build/lib/repo-root.js
CHANGED
package/build/lib/run-script.js
CHANGED
package/build/lib/theme.js
CHANGED
|
@@ -31,6 +31,9 @@ jobs:
|
|
|
31
31
|
check-changes-in-paths:
|
|
32
32
|
name: Check for changes in corresponding paths
|
|
33
33
|
runs-on: ubuntu-latest
|
|
34
|
+
permissions:
|
|
35
|
+
contents: read
|
|
36
|
+
pull-requests: read
|
|
34
37
|
if: ${{ github.event.pull_request.draft == false || contains(github.event.pull_request.labels.*.name, 'docs/release') }}
|
|
35
38
|
outputs:
|
|
36
39
|
detected: ${{ steps.changes.outputs.paths }}
|
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.82.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",
|