@camera.ui/cli 0.0.24 → 0.0.25

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": "@camera.ui/cli",
3
- "version": "0.0.24",
3
+ "version": "0.0.25",
4
4
  "description": "camera.ui cli",
5
5
  "type": "module",
6
6
  "bin": {
@@ -31,10 +31,10 @@ export default class SamplePlugin {
31
31
  async onFormSubmit(actionId, payload) {}
32
32
 
33
33
  async start() {
34
- this.logger.log('Plugin started');
34
+ this.logger.log('Finished launching plugin');
35
35
  }
36
36
 
37
37
  stop() {
38
- this.logger.log('Plugin stopped');
38
+ this.logger.log('Shutting down plugin');
39
39
  }
40
40
  }
@@ -40,6 +40,6 @@ export default class SamplePlugin implements BasePlugin {
40
40
  }
41
41
 
42
42
  private stop(): void {
43
- this.logger.log('Plugin stopped');
43
+ this.logger.log('Shutting down plugin');
44
44
  }
45
45
  }