@transitive-sdk/utils-caps 0.2.11 → 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 (2) hide show
  1. package/package.json +1 -1
  2. 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.11",
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": {
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