228982a0a8
- giant refactoring - add aliases and functions to ease work - apply linters / fixers / fmt to most files
12 lines
312 B
Bash
12 lines
312 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Install pa11y tool for local webpage accessibility analysis
|
|
echo "Installing pa11y tool for local webpage accessibility analysis"
|
|
npm install -g pa11y
|
|
echo "Installing moro, a productivity CLI tool"
|
|
npm install -g moro
|
|
echo "Install wiki CLI tool"
|
|
npm install -g wikit
|
|
|
|
cd "$HOME" || exit
|