ntpclient 1.5.3 → 1.5.5
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/cjs/cli.js +1 -1
- package/dist/esm/cli.js +1 -1
- package/package.json +2 -2
- package/src/cli.ts +1 -1
package/dist/cjs/cli.js
CHANGED
|
@@ -9,7 +9,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
9
9
|
});
|
|
10
10
|
};
|
|
11
11
|
import { program as commander } from 'commander';
|
|
12
|
-
import { createRequire } from '
|
|
12
|
+
import { createRequire } from 'module';
|
|
13
13
|
const require = createRequire(import.meta.url);
|
|
14
14
|
import { NTPClient } from './index.js';
|
|
15
15
|
const { bin, description, version } = require('../package.json');
|
package/dist/esm/cli.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { program as commander } from 'commander';
|
|
3
|
-
import { createRequire } from '
|
|
3
|
+
import { createRequire } from 'module';
|
|
4
4
|
const require = createRequire(import.meta.url);
|
|
5
5
|
import { NTPClient } from './index.js';
|
|
6
6
|
const { bin, description, version } = require('../package.json');
|
package/package.json
CHANGED
package/src/cli.ts
CHANGED