@bundleup/core 0.0.14 → 0.0.16

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/dist/client.js CHANGED
@@ -101,7 +101,7 @@ function authenticateWithPopup(token, options = {}) {
101
101
  cleanup();
102
102
  log("Authentication popup closed by user");
103
103
  reject(error);
104
- }, 1e3);
104
+ }, 3e3);
105
105
  const cleanup = () => {
106
106
  window.removeEventListener("message", handleMessage);
107
107
  clearInterval(checkClosed);
package/dist/client.mjs CHANGED
@@ -67,7 +67,7 @@ function authenticateWithPopup(token, options = {}) {
67
67
  cleanup();
68
68
  log("Authentication popup closed by user");
69
69
  reject(error);
70
- }, 1e3);
70
+ }, 3e3);
71
71
  const cleanup = () => {
72
72
  window.removeEventListener("message", handleMessage);
73
73
  clearInterval(checkClosed);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bundleup/core",
3
- "version": "0.0.14",
3
+ "version": "0.0.16",
4
4
  "description": "Core package for BundleUp",
5
5
  "exports": {
6
6
  "./client": {
@@ -38,6 +38,6 @@
38
38
  "author": "BundleUp",
39
39
  "license": "ISC",
40
40
  "dependencies": {
41
- "@bundleup/sdk": "^0.0.16"
41
+ "@bundleup/sdk": "^0.0.17"
42
42
  }
43
43
  }