@webpod/ps 0.0.0-beta.0 → 0.0.0-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webpod/ps",
3
- "version": "0.0.0-beta.0",
3
+ "version": "0.0.0-beta.2",
4
4
  "description": "A process lookup utility",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -24,7 +24,8 @@
24
24
  "test": "concurrently 'npm:test:*'",
25
25
  "test:lint": "eslint -c src/test/lint/.eslintrc.json src",
26
26
  "test:unit": "c8 -r lcov -r text -o target/coverage -x src/scripts -x src/test -x target node --loader ts-node/esm --experimental-specifier-resolution=node src/scripts/test.mjs",
27
- "test:legacy": "node ./node_modules/mocha/bin/mocha -t 0 -R spec src/test/legacy/test.cjs"
27
+ "test:legacy": "node ./node_modules/mocha/bin/mocha -t 0 -R spec src/test/legacy/test.cjs",
28
+ "publish:draft": "npm run build && npm publish --no-git-tag-version"
28
29
  },
29
30
  "files": [
30
31
  "target/cjs",
@@ -38,7 +39,7 @@
38
39
  "pid"
39
40
  ],
40
41
  "dependencies": {
41
- "@webpod/ingrid": "^0.0.0-beta.1",
42
+ "@webpod/ingrid": "^0.0.0-beta.2",
42
43
  "zurk": "^0.0.32"
43
44
  },
44
45
  "devDependencies": {
@@ -1,8 +1,8 @@
1
- export type * from './ps.ts';
2
- export { kill, lookup, tree } from './ps.ts';
1
+ export type * from './ps.js';
2
+ export { kill, lookup, tree } from './ps.js';
3
3
  declare const _default: {
4
- lookup: (query?: import("./ps.ts").TPsLookupQuery, cb?: import("./ps.ts").TPsLookupCallback) => Promise<import("./ps.ts").TPsLookupEntry[]>;
5
- kill: (pid: string | number, opts?: string | number | import("./ps.ts").TPsKillOptions | import("./ps.ts").TPsNext | undefined, next?: import("./ps.ts").TPsNext | undefined) => Promise<void>;
6
- tree: (opts: string | number | import("./ps.ts").TPsTreeOpts, cb?: import("./ps.ts").TPsLookupCallback) => Promise<import("./ps.ts").TPsLookupEntry[]>;
4
+ lookup: (query?: import("./ps.js").TPsLookupQuery, cb?: import("./ps.js").TPsLookupCallback) => Promise<import("./ps.js").TPsLookupEntry[]>;
5
+ kill: (pid: string | number, opts?: string | number | import("./ps.js").TPsKillOptions | import("./ps.js").TPsNext | undefined, next?: import("./ps.js").TPsNext | undefined) => Promise<void>;
6
+ tree: (opts: string | number | import("./ps.js").TPsTreeOpts, cb?: import("./ps.js").TPsLookupCallback) => Promise<import("./ps.js").TPsLookupEntry[]>;
7
7
  };
8
8
  export default _default;