sst 2.3.4 → 2.3.5

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.
@@ -193,7 +193,8 @@ export const dev = (program) => program.command(["dev", "start"], "Work on your
193
193
  const cdCmd = path.resolve(props.path) === process.cwd()
194
194
  ? ""
195
195
  : `cd ${props.path} && `;
196
- Colors.line(Colors.danger(`➜ `), Colors.bold(`Start ${framework}:`), `${cdCmd}npm run dev`);
196
+ Colors.line(Colors.primary(`➜ `), Colors.bold(`Start ${framework}:`), `${cdCmd}npm run dev`);
197
+ Colors.gap();
197
198
  }
198
199
  });
199
200
  }
@@ -42,7 +42,7 @@ export const set = (program) => program.command("set <name> <value>", "Set the v
42
42
  : `Reloaded ${functionCount} functions`);
43
43
  }
44
44
  edgeSites.forEach(({ id, type }) => {
45
- Colors.line(Colors.danger(`➜ `), `Redeploy the "${id}" ${type} to use the new secret`);
45
+ Colors.line(Colors.primary(`➜ `), `Redeploy the "${id}" ${type} to use the new secret`);
46
46
  });
47
47
  process.exit(0);
48
48
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sst",
3
- "version": "2.3.4",
3
+ "version": "2.3.5",
4
4
  "bin": {
5
5
  "sst": "cli/sst.js"
6
6
  },
package/sst.mjs CHANGED
@@ -6952,10 +6952,11 @@ var dev = (program2) => program2.command(
6952
6952
  if (framework) {
6953
6953
  const cdCmd = path20.resolve(props.path) === process.cwd() ? "" : `cd ${props.path} && `;
6954
6954
  Colors2.line(
6955
- Colors2.danger(`\u279C `),
6955
+ Colors2.primary(`\u279C `),
6956
6956
  Colors2.bold(`Start ${framework}:`),
6957
6957
  `${cdCmd}npm run dev`
6958
6958
  );
6959
+ Colors2.gap();
6959
6960
  }
6960
6961
  });
6961
6962
  }
@@ -7696,7 +7697,7 @@ var set = (program2) => program2.command(
7696
7697
  }
7697
7698
  edgeSites.forEach(({ id, type }) => {
7698
7699
  Colors2.line(
7699
- Colors2.danger(`\u279C `),
7700
+ Colors2.primary(`\u279C `),
7700
7701
  `Redeploy the "${id}" ${type} to use the new secret`
7701
7702
  );
7702
7703
  });