forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackages.sh
More file actions
95 lines (73 loc) · 3.26 KB
/
Copy pathpackages.sh
File metadata and controls
95 lines (73 loc) · 3.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/bin/bash
get_latest_versions() {
local result="" # Initialize an empty string to hold the results
for pkg in "$@"; do
# Encode the package name for use in a URL
encoded_pkg=$(echo "$pkg" | sed 's|/|%2F|g')
# Fetch the latest version of the package
latest_version=$(curl -s "https://registry.npmjs.org/$encoded_pkg" | jq -r '.["dist-tags"].latest')
# Check if the latest version was found
if [[ $latest_version != "null" && ! -z $latest_version ]]; then
# Append the package and version to the result string, separated by '@' and spaces between packages
result+="${pkg}@${latest_version} "
else
echo "Latest version for package ${pkg} could not be found." >&2
return 1 # Optionally return an error code if a package's latest version can't be found
fi
done
# Trim the trailing space and print the result
echo "${result% }"
}
get_latest_copilotkit_versions() {
get_latest_versions "@copilotkit/backend" "@copilotkit/react-core" "@copilotkit/react-textarea" "@copilotkit/react-ui" "@copilotkit/shared"
}
get_latest_prerelease_versions() {
local result="" # Initialize an empty string to hold the results
local tag_part="$1" # The specific part of the tag to match
# Shift the arguments so $@ contains the packages
shift
for pkg in "$@"; do
# Encode the package name for use in a URL
encoded_pkg=$(echo "$pkg" | sed 's|/|%2F|g')
# Fetch the list of all versions
versions=$(curl -s "https://registry.npmjs.org/$encoded_pkg" | jq -r '.versions | keys[]')
# Filter versions that match the tag part and get the last one
latest_prerelease_version=$(echo "$versions" | grep "$tag_part" | tail -n 1)
# Check if a version was found
if [[ ! -z $latest_prerelease_version ]]; then
# Append the package and version to the result string, separated by '@' and spaces between packages
result+="${pkg}@${latest_prerelease_version} "
else
echo "Latest pre-release version matching '$tag_part' for package ${pkg} could not be found." >&2
fi
done
# Trim the trailing space and print the result
echo "${result% }"
}
get_latest_copilotkit_prerelase_versions() {
get_latest_prerelease_versions $1 "@copilotkit/runtime" "@copilotkit/react-core" "@copilotkit/react-textarea" "@copilotkit/react-ui" "@copilotkit/shared"
}
use_local_packages() {
echo "Building local packages..."
pnpm -w freshbuild
echo "Done building local packages."
packages="file:$(pwd)/packages/runtime file:$(pwd)/packages/react-core file:$(pwd)/packages/react-textarea file:$(pwd)/packages/react-ui file:$(pwd)/packages/shared"
}
yarn_install_packages() {
local app_path="$1"
if [ -z "$packages" ]; then
use_local_packages;
fi
(cd "$app_path" && yarn add $packages)
info "Package manager: yarn"
info "Using CopilotKit packages: $packages"
}
npm_install_packages() {
local app_path="$1"
if [ -z "$packages" ]; then
use_local_packages;
fi
(cd "$app_path" && npm install $packages --save)
info "Package manager: npm"
info "Using CopilotKit packages: $packages"
}