File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ source package-order.sh
6
6
# Loop over the directories and run the build command
7
7
for dir in " ${DIRS[@]} " ; do
8
8
# Change to the directory
9
- if ! cd " packages/ $dir " ; then
9
+ if ! cd " $dir " ; then
10
10
echo " Error: Unable to change to directory: packages/$dir "
11
11
exit 1
12
12
fi
Original file line number Diff line number Diff line change 2
2
3
3
# Define the order of the directories to process
4
4
DIRS=(
5
- " utils"
6
- " providers"
7
- " attributes"
8
- " drops"
9
- " moments"
5
+ " packages/ utils"
6
+ " packages/ providers"
7
+ " packages/ attributes"
8
+ " packages/ drops"
9
+ " packages/ moments"
10
10
)
Original file line number Diff line number Diff line change 2
2
source package-order.sh
3
3
4
4
# Loop through each package directory
5
- for dir in " ${DIRS[@]} " ; do
5
+ for pkg in " ${DIRS[@]} " ; do
6
6
pkg_name=$( jq -r ' .name' $pkg /package.json)
7
7
current_version=$( jq -r ' .version' $pkg /package.json)
8
8
remote_version=$( npm view $pkg_name version 2> /dev/null)
You can’t perform that action at this time.
0 commit comments