@lorekit/cli 1.17.0 → 1.17.1
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/package.json +1 -1
- package/src/doctor.mjs +2 -1
- package/src/telemetry.mjs +1 -1
package/package.json
CHANGED
package/src/doctor.mjs
CHANGED
|
@@ -82,8 +82,9 @@ export async function doctor(args) {
|
|
|
82
82
|
// 5. Scope.
|
|
83
83
|
const scope = deriveScope(root);
|
|
84
84
|
if (scope.hasRemote) {
|
|
85
|
+
log('');
|
|
85
86
|
record('info', 'read scope', scope.readOrder.join(' → '));
|
|
86
|
-
record('info', 'write scope', `${scope.repoScope} (default
|
|
87
|
+
record('info', 'write scope', `${scope.repoScope} (default write target)`);
|
|
87
88
|
} else {
|
|
88
89
|
record('warn', 'scope', 'no git remote here — memories fall back to global');
|
|
89
90
|
}
|
package/src/telemetry.mjs
CHANGED
|
@@ -32,7 +32,7 @@ import { readLorekitJson } from './config.mjs';
|
|
|
32
32
|
// (empty in the source tree, so default export stays off until built/injected).
|
|
33
33
|
const DEFAULT_ENDPOINT = 'https://ingress.europe-west4.gcp.dash0-dev.com';
|
|
34
34
|
const DEFAULT_TOKEN = TELEMETRY_TOKEN; // injected from LOREKIT_TELEMETRY_TOKEN at publish
|
|
35
|
-
const DEFAULT_DATASET = '
|
|
35
|
+
const DEFAULT_DATASET = '';
|
|
36
36
|
|
|
37
37
|
// Flags worth counting (e.g. how many installs are --global). Bounded on
|
|
38
38
|
// purpose: only these booleans are ever attached, never free-form values.
|