@bundleup/core 0.0.6 → 0.0.7

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
@@ -60,7 +60,7 @@ function authenticateWithPopup(token, options = {}) {
60
60
  }
61
61
  log("Starting authentication with popup");
62
62
  const popup = window.open(
63
- `https://auth.bundleup.io/${token}`,
63
+ `https://auth.bundleup.io/authorize?token=${token}`,
64
64
  "bundleup-auth",
65
65
  `width=${width},height=${height},left=${left},top=${top},scrollbars=yes,resizable=yes`
66
66
  );
package/dist/client.mjs CHANGED
@@ -26,7 +26,7 @@ function authenticateWithPopup(token, options = {}) {
26
26
  }
27
27
  log("Starting authentication with popup");
28
28
  const popup = window.open(
29
- `https://auth.bundleup.io/${token}`,
29
+ `https://auth.bundleup.io/authorize?token=${token}`,
30
30
  "bundleup-auth",
31
31
  `width=${width},height=${height},left=${left},top=${top},scrollbars=yes,resizable=yes`
32
32
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bundleup/core",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "Core package for BundleUp",
5
5
  "exports": {
6
6
  "./client": {