@ojas-sta/qalify-plus 1.1.1 → 1.1.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/generic.js +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ojas-sta/qalify-plus",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "An advanced, AI-powered educational vulnerability simulator and overlay.",
5
5
  "main": "src/generic.js",
6
6
  "bin": {
package/src/generic.js CHANGED
@@ -54,6 +54,9 @@ async function main() {
54
54
  console.log(`✅ Saved keys permanently to ${globalEnvPath}\n`);
55
55
  }
56
56
 
57
+ console.log(`[Qalify+] Booting up... please wait 3 seconds.`);
58
+ await new Promise(resolve => setTimeout(resolve, 3000));
59
+
57
60
  console.log(`[Qalify+] Launching browser to navigate to: ${url}`);
58
61
  const browser = await chromium.launch({ headless: false });
59
62
  const context = await browser.newContext({ viewport: null });