@travetto/cli 8.0.0-alpha.4 → 8.0.0-alpha.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/cli",
3
- "version": "8.0.0-alpha.4",
3
+ "version": "8.0.0-alpha.5",
4
4
  "type": "module",
5
5
  "description": "CLI infrastructure for Travetto framework",
6
6
  "keywords": [
@@ -129,9 +129,7 @@ export function CliRestartOnChangeFlag(config: CliFlagOptions = {}) {
129
129
  const cls = getClass(instance);
130
130
  SchemaRegistryIndex.getForRegister(cls).registerField(property, {
131
131
  ...CliParseUtil.buildAliases(config),
132
- description: 'Should the invocation automatically restart on source changes',
133
- default: Runtime.localDevelopment,
134
- required: { active: false },
132
+ description: 'Should the invocation automatically restart on source changes'
135
133
  });
136
134
 
137
135
  runBeforeMain(cls, (cmd: typeof instance) => CliUtil.runWithRestartOnChange(cmd[property]), true);
@@ -148,9 +146,7 @@ export function CliDebugIpcFlag(config: CliFlagOptions = {}) {
148
146
  const cls = getClass(instance);
149
147
  SchemaRegistryIndex.getForRegister(cls).registerField(property, {
150
148
  ...CliParseUtil.buildAliases(config, Env.TRV_DEBUG_IPC.key),
151
- description: 'Should the invocation automatically restart on source changes',
152
- default: Runtime.localDevelopment,
153
- required: { active: false },
149
+ description: 'Should the invocation automatically restart on source changes'
154
150
  });
155
151
 
156
152
  runBeforeMain(cls,