Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refs #167: add support to link check
Browse files Browse the repository at this point in the history
jenkin committed Jun 22, 2023
1 parent fd0bea1 commit 1ff25aa
Showing 3 changed files with 396 additions and 5 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -11,6 +11,9 @@ cli:
logs:
docker-compose logs -f

check:
docker-compose run --rm documentation npm run check

# Sparkkit based themes specific commands.
theme-watch:
chmod +x bin/npm
386 changes: 386 additions & 0 deletions custom/package-lock.json
12 changes: 7 additions & 5 deletions custom/package.json
Original file line number Diff line number Diff line change
@@ -5,12 +5,14 @@
"author": "Paolo Pustorino <paolo.pustorino@sparkfabrik.com>",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
"start": "node server.js",
"check": "markdown-link-validator -q -e -o -i ^/downloads/ -i drupal.org -i udemy.com -i sparkfabrik.loc -i acme.sparkfabrik.com ./content",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "https://creativecommons.org/licenses/by-sa/4.0/",
"dependencies": {
"raneto": "0.17.3",
"gulp": "4.0.2"
"gulp": "4.0.2",
"markdown-link-validator": "github:jenkin/markdown-link-validator#feature/sparkfabrik-enhancements",
"raneto": "0.17.3"
}
}
}

0 comments on commit 1ff25aa

Please sign in to comment.