which-os 1.17.1 → 1.17.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.
- package/dist/cli.js +2 -2
- package/dist/which-os.js +0 -1
- package/package.json +4 -3
package/dist/cli.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import {
|
|
2
|
+
import { program as commander } from 'commander';
|
|
3
3
|
import fs from 'node:fs/promises';
|
|
4
4
|
import path from 'node:path';
|
|
5
|
-
import {
|
|
5
|
+
import { inspect } from 'node:util';
|
|
6
6
|
import * as whichOS from './which-os.js';
|
|
7
7
|
const __dirname = import.meta.dirname;
|
|
8
8
|
const packageJsonPath = path.join(__dirname, '../package.json');
|
package/dist/which-os.js
CHANGED
package/package.json
CHANGED
|
@@ -2,10 +2,11 @@
|
|
|
2
2
|
"author": "Florian Imdahl <git@ffflorian.de>",
|
|
3
3
|
"bin": "dist/cli.js",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"commander": "14.0.
|
|
5
|
+
"commander": "14.0.3"
|
|
6
6
|
},
|
|
7
7
|
"description": "Get informations about your OS",
|
|
8
8
|
"devDependencies": {
|
|
9
|
+
"@types/node": "~24",
|
|
9
10
|
"rimraf": "6.1.2",
|
|
10
11
|
"tsx": "4.21.0",
|
|
11
12
|
"typescript": "5.9.3"
|
|
@@ -35,6 +36,6 @@
|
|
|
35
36
|
"start": "tsx src/cli.ts"
|
|
36
37
|
},
|
|
37
38
|
"type": "module",
|
|
38
|
-
"version": "1.17.
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"version": "1.17.3",
|
|
40
|
+
"gitHead": "7a18174f4c706e506e8b3aed50a49d54b795206b"
|
|
40
41
|
}
|