three-blocks-login 0.1.2 → 0.1.3

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/bin/login.js +2 -1
  2. package/package.json +1 -1
package/bin/login.js CHANGED
@@ -244,8 +244,9 @@ loadEnvFromDotfile(process.cwd());
244
244
  const BROKER_URL =
245
245
  args.endpoint ||
246
246
  process.env.THREE_BLOCKS_BROKER_URL ||
247
- "http://localhost:3000/api/npm/token"; // your Astro broker endpoint
247
+ "https://www.threejs-blocks.com/api/npm/token"; // your Astro broker endpoint
248
248
 
249
+ console.log(BROKER_URL)
249
250
  const promptHidden = async (label) => {
250
251
  return await new Promise((resolve) => {
251
252
  const stdin = process.stdin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "three-blocks-login",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Fetch a short-lived token from the three-blocks broker and configure npm for the current context.",
5
5
  "type": "module",
6
6
  "bin": {