Skip to content

Commit 8237d4e

Browse files
committed
chore: fix hidden dependencies
1 parent 251dd54 commit 8237d4e

File tree

3 files changed

+21
-7
lines changed

3 files changed

+21
-7
lines changed

Diff for: Taskfile

+13-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ set -euo pipefail
77
exit 1
88
}
99

10+
paths=(
11+
"$(pwd)/node_modules/.bin"
12+
"$(pwd)/tools/node_modules/.bin"
13+
)
14+
for path in "${paths[@]}"; do
15+
if [[ ":${PATH}:" != *":${path}:"* ]]; then
16+
export PATH="${path}:${PATH}"
17+
fi
18+
done
19+
20+
21+
1022
declare -A config
1123
config['dryrun']=false
1224
config['port']=3000
@@ -249,7 +261,7 @@ vercel() {
249261
[ -z "${_vercel}" ] && echo Please setup env and activate it. && return 1
250262

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

255267
local args=("${@}")

Diff for: package-lock.json

+7-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
"allotment": "^1.18.1",
5151
"classnames": "^2.3.2",
5252
"copy-to-clipboard": "^3.3.3",
53+
"csstype": "^3.1.2",
5354
"emoji-mart": "^5.5.2",
5455
"framer-motion": "^10.12.4",
5556
"idb": "^7.1.1",

0 commit comments

Comments
 (0)