-
Notifications
You must be signed in to change notification settings - Fork 309
Expand file tree
/
Copy pathpackage.json
More file actions
13 lines (13 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
13 lines (13 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
{
"name": "shopware/docs",
"version": "6.7.0-dev",
"scripts": {
"check:links": "sh -c 'PATTERN=\"${DIR:+$DIR/**/*.md}\"; PATTERN=\"${PATTERN:-**/*.md}\"; docker run --init --rm -w /input -v \"$(pwd):/input\" lycheeverse/lychee:0.24.2 --retry-wait-time 10 --max-retries 3 --timeout 30 --accept=200,403,429,408 -s https --exclude \"https://github.com/\\[your*\" --exclude https://localhost:9200 --root-dir /var/empty --no-progress \"$PATTERN\"'",
"check:markdown": "pnpm dlx rumdl@0.2.67 check .",
"check:spelling": "docker run --rm -u \"$(id -u):$(id -g)\" -v \"$(pwd):/docs\" -w /docs -e INPUT_IGNORE='/docs/resources/references/adr/* /docs/assets/adr/* /docs/resources/guidelines/code/core/* /docs/snippets/guide/* /docs/resources/references/app-reference/*' ghcr.io/rojopolis/spellcheck-github-actions:0.49.0 --config /docs/.spellcheck.yml /docs",
"docs:env": "[ -d \"../developer-portal\" ] && ../developer-portal/docs-cli.cjs pull || (git clone git@github.com:shopware/developer-portal.git ../developer-portal && pnpm i -C ../developer-portal)",
"docs:link": "../developer-portal/docs-cli.cjs link --src . --dst docs --symlink",
"docs:preview": "../developer-portal/docs-cli.cjs preview",
"fix:markdown": "pnpm dlx rumdl@0.2.67 check --fix ."
}
}