three-blocks-login 0.0.2 → 0.0.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 -2
  2. package/package.json +1 -1
package/bin/login.js CHANGED
@@ -39,7 +39,7 @@ const LICENSE =
39
39
 
40
40
  if (!LICENSE || String(LICENSE).trim() === "") {
41
41
  fail(
42
- "Missing license key. Provide --license <key> or set THREE_BLOCKS_SECRET_KEY/THREE_BLOCKS_LICENSE_KEY (env or .env)."
42
+ "Missing license key. Provide --license <key> or set THREE_BLOCKS_SECRET_KEY in your .env file."
43
43
  );
44
44
  }
45
45
 
@@ -47,7 +47,7 @@ if (!LICENSE || String(LICENSE).trim() === "") {
47
47
  const LICENSE_CLEAN = sanitizeLicense(LICENSE);
48
48
  if (!LICENSE_CLEAN) {
49
49
  fail(
50
- "Missing license key. Provide --license <key> or set THREE_BLOCKS_SECRET_KEY/THREE_BLOCKS_LICENSE_KEY (env or .env)."
50
+ "Missing license key. Provide --license <key> or set THREE_BLOCKS_SECRET_KEY in your .env file."
51
51
  );
52
52
  }
53
53
  const invalidIdx = findFirstNonByteChar(LICENSE_CLEAN);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "three-blocks-login",
3
- "version": "0.0.2",
3
+ "version": "0.0.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": {