@vnejs/plugins.feature.fastforward 0.0.1 → 0.1.0

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/modules/visits.js CHANGED
@@ -26,7 +26,7 @@ export class FastforwardVisits extends Module {
26
26
  this.emit(this.EVENTS.STORAGE.SET, { prefix: this.name, key, value: 1 });
27
27
 
28
28
  const { label } = this.globalState.scenario;
29
- const meet = speaker ? this.globalState?.meet?.[speaker] : 0;
29
+ const meet = speaker ? this.globalState?.["text.meet"]?.[speaker] : 0;
30
30
 
31
31
  this.setState({ text, label, speaker, meet });
32
32
  };
package/package.json CHANGED
@@ -1,18 +1,17 @@
1
1
  {
2
2
  "name": "@vnejs/plugins.feature.fastforward",
3
- "version": "0.0.1",
3
+ "version": "0.1.0",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
7
+ "publish:major:plugin": "npm run publish:major",
8
+ "publish:minor:plugin": "npm run publish:minor",
9
+ "publish:patch:plugin": "npm run publish:patch",
7
10
  "publish:major": "npm version major && npm publish --access public",
8
11
  "publish:minor": "npm version minor && npm publish --access public",
9
12
  "publish:patch": "npm version patch && npm publish --access public"
10
13
  },
11
14
  "author": "",
12
15
  "license": "ISC",
13
- "description": "",
14
- "peerDependencies": {
15
- "@vnejs/shared": "*",
16
- "@vnejs/module": "*"
17
- }
16
+ "description": ""
18
17
  }