@openstax/ts-utils 1.30.0 → 1.30.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,15 +1,16 @@
1
1
  {
2
2
  "name": "@openstax/ts-utils",
3
- "version": "1.30.0",
3
+ "version": "1.30.1",
4
4
  "bin": {
5
5
  "ts-utils": "./script/bin-entry.bash"
6
6
  },
7
7
  "dependencies": {
8
8
  "@aws-sdk/client-dynamodb": "^3.171.0",
9
- "@aws-sdk/client-s3": "^3.744.0",
9
+ "@aws-sdk/client-s3": "^3.267.0",
10
10
  "@aws-sdk/client-ssm": "^3.171.0",
11
11
  "@aws-sdk/client-sts": "^3.171.0",
12
- "@aws-sdk/s3-request-presigner": "^3.744.0",
12
+ "@aws-sdk/s3-presigned-post": "^3.267.0",
13
+ "@aws-sdk/s3-request-presigner": "^3.267.0",
13
14
  "aws-sdk": "^2.1145.0",
14
15
  "cookie": "^0.5.0",
15
16
  "date-fns": "^2.29.2",
@@ -54,7 +55,7 @@
54
55
  "postgres": "^3.4.5",
55
56
  "rollup-plugin-commonjs": "^10.1.0",
56
57
  "rollup-plugin-typescript2": "^0.31.2",
57
- "ts-jest": "^29.0.3",
58
+ "ts-jest": "^29.4.1",
58
59
  "typescript": "5.9.2",
59
60
  "yargs": "^17.5.1",
60
61
  "zod": "^4.0.15"
@@ -15,7 +15,12 @@ else
15
15
  cd "$temp_dir"
16
16
  fi
17
17
 
18
- read -d '\n' -r -a sync_ignore <<< "$(awk '{print ":\!*" $0}' "$project_dir/.syncignore")" || true
18
+ # handle mac vs linux differences in read command
19
+ if [[ "$(uname)" == "Linux" ]]; then
20
+ read -d '\n' -a sync_ignore < <(awk '{print ":\!*" $0}' "$project_dir/.syncignore") || true
21
+ else
22
+ read -d '\n' -r -a sync_ignore <<< "$(awk '{print ":\!*" $0}' "$project_dir/.syncignore")" || true
23
+ fi
19
24
 
20
25
  sync_from=$(git hash-object -t tree /dev/null)
21
26
  if [ -f "$project_dir/.lastsync" ]; then