skillwatch 0.1.1 → 0.1.2
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/checker.js +1 -0
- package/dist/cli.js +2 -1
- package/package.json +1 -1
package/dist/checker.js
CHANGED
package/dist/cli.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
1
2
|
import { execFileSync } from "node:child_process";
|
|
2
3
|
import { existsSync } from "node:fs";
|
|
3
4
|
import { copyFile, mkdir, rm, writeFile } from "node:fs/promises";
|
|
@@ -6,7 +7,7 @@ import { dirname, join, resolve } from "node:path";
|
|
|
6
7
|
import { fileURLToPath } from "node:url";
|
|
7
8
|
//#region src/cli.ts
|
|
8
9
|
const PACKAGE_NAME = "skillwatch";
|
|
9
|
-
const PACKAGE_VERSION = "0.1.
|
|
10
|
+
const PACKAGE_VERSION = "0.1.2";
|
|
10
11
|
const ENTRYPOINT_PATH = fileURLToPath(import.meta.url);
|
|
11
12
|
const CHECKER_SOURCE_PATH = join(dirname(ENTRYPOINT_PATH), "checker.js");
|
|
12
13
|
const COMMAND_NAME = PACKAGE_NAME.split("/").at(-1) ?? "skillwatch";
|