Skip to content

Commit

Permalink
Update build.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Anduin2017 authored Mar 11, 2022
1 parent 0c19f51 commit 90406ba
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,26 @@ set -e

# Requires: Ruby, node, python

tput setaf 2; echo "Cleaning up..."; tput setaf 0
tput setaf 2; echo "Cleaning up..."; tput sgr0
rm ./node_modules -rf

tput setaf 2; echo "Installing markdown lint"; tput setaf 0
tput setaf 2; echo "Installing markdown lint"; tput sgr0
gem install mdl

tput setaf 2; echo "Generating new readme and mkdocs"; tput setaf 0
tput setaf 2; echo "Generating new readme and mkdocs"; tput sgr0
node ./.github/readme-generate.js

tput setaf 2; echo "Running markdown lint to check issues."; tput setaf 0
tput setaf 2; echo "Running markdown lint to check issues."; tput sgr0
mdl ./dishes ./tips -r ~MD036,~MD024,~MD004,~MD029

tput setaf 2; echo "Installing python requirements..."; tput setaf 0
tput setaf 2; echo "Installing python requirements..."; tput sgr0
pip install -r requirements.txt

tput setaf 2; echo "Builidng mkdocs and checking links..."; tput setaf 0
tput setaf 2; echo "Builidng mkdocs and checking links..."; tput sgr0
mkdocs build --strict

tput setaf 2; echo "Installing textlint"; tput setaf 0
tput setaf 2; echo "Installing textlint"; tput sgr0
npm install

tput setaf 2; echo "Running textlint..."; tput setaf 0
./node_modules/.bin/textlint . --fix
tput setaf 2; echo "Running textlint..."; tput sgr0
./node_modules/.bin/textlint . --fix

0 comments on commit 90406ba

Please sign in to comment.