goblin-malin 0.1.11 → 0.1.13

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/README.md CHANGED
@@ -36,6 +36,19 @@ A keyboard-driven terminal UI for downloading and tagging music tracks with meta
36
36
  yarn global add goblin-malin
37
37
  ```
38
38
 
39
+ <details>
40
+ <summary>Don't forget to add your `yarn` directory to your PATH to have the command `goblin-malin` available in any terminal.</summary>
41
+
42
+ On windows:
43
+
44
+ ```ps1
45
+ $yarBin = "C:\Users\YOUR_USERNAME\AppData\Local\Yarn\bin"
46
+ $current = [System.Environment]::GetEnvironmentVariable("PATH", "User")
47
+ [System.Environment]::SetEnvironmentVariable("PATH", "$current;$yarBin", "User")
48
+ ```
49
+
50
+ </details>
51
+
39
52
  ### Installation with `pnpm`
40
53
 
41
54
  ```bash
@@ -9,6 +9,7 @@
9
9
  "purple": "#d2a8ff",
10
10
  "pink": "#f778ba",
11
11
  "white": "#e6edf3",
12
+ "grayLight": "#b1bac4",
12
13
  "gray": "#8b949e",
13
14
  "grayDark": "#484f58"
14
15
  },
@@ -9,6 +9,7 @@
9
9
  "purple": "#8250df",
10
10
  "pink": "#bf3989",
11
11
  "white": "#ffffff",
12
+ "grayLight": "#8b949e",
12
13
  "gray": "#57606a",
13
14
  "grayDark": "#24292f"
14
15
  },
@@ -109,7 +109,7 @@ dotenv.config({
109
109
  });
110
110
  function resolveAppVersion() {
111
111
  try {
112
- return "0.1.11";
112
+ return "0.1.13";
113
113
  } catch {
114
114
  const _req = createRequire(import.meta.url);
115
115
  return _req("../package.json").version;
@@ -318,6 +318,7 @@ var Logger = class _Logger {
318
318
  // Combined log file
319
319
  new winston.transports.File({
320
320
  filename: logsPath,
321
+ level: "debug",
321
322
  format: winston.format.combine(winston.format.timestamp(), winston.format.json())
322
323
  })
323
324
  ]
@@ -474,7 +475,6 @@ export {
474
475
  DEFAULT_APP_DATA_DIR,
475
476
  APP_VERSION,
476
477
  deepMerge,
477
- SETTINGS_PATH,
478
478
  SettingsStore,
479
479
  inkTransport,
480
480
  getAssetPath,