@originator/playflow 1.0.0 → 1.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.
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ "use strict";
3
+
4
+ require("../dist/playflow.js");
package/dist/playflow.js CHANGED
@@ -613,7 +613,7 @@ async function main() {
613
613
  ? args.slowMo
614
614
  : typeof flow.slowMo === "number"
615
615
  ? flow.slowMo
616
- : undefined;
616
+ : 100;
617
617
  let browser = null;
618
618
  let page = null;
619
619
  let currentStepIndex = -1;
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@originator/playflow",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "main": "./dist/playflow.js",
5
5
  "bin": {
6
- "playflow": "./dist/playflow.js"
6
+ "playflow": "./bin/playflow.js"
7
7
  },
8
8
  "scripts": {
9
9
  "build": "tsc",
@@ -24,6 +24,7 @@
24
24
  "author": "Hamza Lhioui",
25
25
  "license": "ISC",
26
26
  "files": [
27
+ "bin",
27
28
  "dist",
28
29
  "README.md"
29
30
  ],