Skip to content

Commit

Permalink
chore: fix hidden dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilsk committed Apr 26, 2023
1 parent 251dd54 commit 8237d4e
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 7 deletions.
14 changes: 13 additions & 1 deletion Taskfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ set -euo pipefail
exit 1
}

paths=(
"$(pwd)/node_modules/.bin"
"$(pwd)/tools/node_modules/.bin"
)
for path in "${paths[@]}"; do
if [[ ":${PATH}:" != *":${path}:"* ]]; then
export PATH="${path}:${PATH}"
fi
done



declare -A config
config['dryrun']=false
config['port']=3000
Expand Down Expand Up @@ -249,7 +261,7 @@ vercel() {
[ -z "${_vercel}" ] && echo Please setup env and activate it. && return 1

if [ ! -f .vercel/project.json ]; then
$_vercel link
$_vercel -t "$(git config vercel.token)" link
fi

local args=("${@}")
Expand Down
13 changes: 7 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"allotment": "^1.18.1",
"classnames": "^2.3.2",
"copy-to-clipboard": "^3.3.3",
"csstype": "^3.1.2",
"emoji-mart": "^5.5.2",
"framer-motion": "^10.12.4",
"idb": "^7.1.1",
Expand Down

0 comments on commit 8237d4e

Please sign in to comment.