@transitive-sdk/utils-caps 0.2.10 → 0.2.12

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.
Files changed (3) hide show
  1. package/package.json +3 -3
  2. package/rundev.sh +2 -0
  3. package/subScript +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transitive-sdk/utils-caps",
3
- "version": "0.2.10",
3
+ "version": "0.2.12",
4
4
  "description": "Utilities to build and run Transitive capabilities in dev",
5
5
  "homepage": "https://transitiverobotics.com",
6
6
  "repository": {
@@ -28,7 +28,7 @@
28
28
  "access": "public"
29
29
  },
30
30
  "dependencies": {
31
- "@transitive-sdk/utils": ">=0.9.5",
32
- "esbuild": "^0.18.15"
31
+ "@transitive-sdk/utils": "^0.17.2",
32
+ "esbuild": "^0.28.0"
33
33
  }
34
34
  }
package/rundev.sh CHANGED
@@ -42,6 +42,8 @@ tryToSourceROS foxy
42
42
  tryToSourceROS galactic
43
43
  tryToSourceROS humble
44
44
  tryToSourceROS iron
45
+ tryToSourceROS jazzy
46
+ tryToSourceROS kilted
45
47
 
46
48
  # Make sure a config file exists
47
49
  if [[ ! -e ~/.transitive/config.json ]]; then
package/subScript CHANGED
@@ -39,7 +39,7 @@ if [[ $SUBSCRIPT == "start" ]]; then
39
39
  if [[ $SUBPROJECT ]]; then
40
40
  rm -rf $SUBPROJECT/node_modules/.*-* $SUBPROJECT/node_modules/@*/.*-*
41
41
  fi;
42
- npm $PREFIX ls || npm $PREFIX update
42
+ npm $PREFIX ls || FORCE_COLOR=0 npm $PREFIX update
43
43
  fi;
44
44
 
45
45
  if [[ $SUBPROJECT ]]; then
@@ -51,7 +51,7 @@ if [[ $SUBPROJECT ]]; then
51
51
  rm -rf $SUBPROJECT/node_modules
52
52
  fi;
53
53
 
54
- npm $PREFIX $npm_lifecycle_event
54
+ FORCE_COLOR=0 npm $PREFIX $npm_lifecycle_event
55
55
  else
56
56
  echo "Invoking $SUBSCRIPT in $SUBPROJECT"
57
57
  npm $PREFIX run --if-present $SUBSCRIPT