@bitblit/ratchet-node-only 4.0.116-alpha → 4.0.120-alpha

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.
Files changed (43) hide show
  1. package/bin/cli.js +5 -5
  2. package/lib/build/ratchet-node-only-info.d.ts +1 -1
  3. package/lib/cli/abstract-ratchet-cli-handler.d.ts +1 -1
  4. package/lib/cli/ratchet-cli-handler.d.ts +1 -1
  5. package/lib/csv/csv-ratchet.d.ts +1 -1
  6. package/lib/index.d.ts +11 -1
  7. package/lib/index.mjs +3 -0
  8. package/lib/index.mjs.map +1 -0
  9. package/package.json +11 -9
  10. package/lib/build/ratchet-node-only-info.js +0 -15
  11. package/lib/build/ratchet-node-only-info.js.map +0 -1
  12. package/lib/ci/apply-ci-env-variables-to-files.js +0 -81
  13. package/lib/ci/apply-ci-env-variables-to-files.js.map +0 -1
  14. package/lib/ci/apply-ci-env-variables-to-files.spec.js +0 -24
  15. package/lib/ci/apply-ci-env-variables-to-files.spec.js.map +0 -1
  16. package/lib/ci/ci-run-information-util.js +0 -45
  17. package/lib/ci/ci-run-information-util.js.map +0 -1
  18. package/lib/ci/ci-run-information.js +0 -2
  19. package/lib/ci/ci-run-information.js.map +0 -1
  20. package/lib/cli/abstract-ratchet-cli-handler.js +0 -29
  21. package/lib/cli/abstract-ratchet-cli-handler.js.map +0 -1
  22. package/lib/cli/cli-ratchet.js +0 -29
  23. package/lib/cli/cli-ratchet.js.map +0 -1
  24. package/lib/cli/ratchet-cli-handler.js +0 -18
  25. package/lib/cli/ratchet-cli-handler.js.map +0 -1
  26. package/lib/csv/csv-ratchet.js +0 -159
  27. package/lib/csv/csv-ratchet.js.map +0 -1
  28. package/lib/csv/csv-ratchet.spec.js +0 -42
  29. package/lib/csv/csv-ratchet.spec.js.map +0 -1
  30. package/lib/files/files-to-static-class.js +0 -57
  31. package/lib/files/files-to-static-class.js.map +0 -1
  32. package/lib/files/files-to-static-class.spec.js +0 -12
  33. package/lib/files/files-to-static-class.spec.js.map +0 -1
  34. package/lib/index.js +0 -2
  35. package/lib/index.js.map +0 -1
  36. package/lib/third-party/git/git-ratchet.js +0 -72
  37. package/lib/third-party/git/git-ratchet.js.map +0 -1
  38. package/lib/third-party/git/git-ratchet.spec.js +0 -10
  39. package/lib/third-party/git/git-ratchet.spec.js.map +0 -1
  40. package/lib/third-party/slack/publish-ci-release-to-slack.js +0 -61
  41. package/lib/third-party/slack/publish-ci-release-to-slack.js.map +0 -1
  42. package/lib/third-party/slack/publish-ci-release-to-slack.spec.js +0 -25
  43. package/lib/third-party/slack/publish-ci-release-to-slack.spec.js.map +0 -1
package/bin/cli.js CHANGED
@@ -1,10 +1,10 @@
1
1
  #!/usr/bin/env node
2
- import { RatchetCliHandler } from '../lib/cli/ratchet-cli-handler.js';
2
+ import { RatchetCliHandler } from '../lib/index.mjs';
3
3
 
4
4
  try {
5
- //const RatchetCliHandler = await import('../dist/cli-bootstrap/ratchet-cli-handler.js');
6
- await new RatchetCliHandler().findAndExecuteHandler();
5
+ //const RatchetCliHandler = await import('../dist/cli-bootstrap/ratchet-cli-handler.js');
6
+ await new RatchetCliHandler().findAndExecuteHandler();
7
7
  } catch (err) {
8
- console.error('Error : %s', err);
9
- process.exit(-1);
8
+ console.error('Error : %s', err);
9
+ process.exit(-1);
10
10
  }
@@ -1,4 +1,4 @@
1
- import { BuildInformation } from '@bitblit/ratchet-common/lib/build/build-information.js';
1
+ import { BuildInformation } from '@bitblit/ratchet-common';
2
2
  export declare class RatchetNodeOnlyInfo {
3
3
  private constructor();
4
4
  static buildInformation(): BuildInformation;
@@ -1,4 +1,4 @@
1
- import { BuildInformation } from '@bitblit/ratchet-common/lib/build/build-information.js';
1
+ import { BuildInformation } from '@bitblit/ratchet-common';
2
2
  export declare abstract class AbstractRatchetCliHandler {
3
3
  abstract fetchHandlerMap(): Record<string, any>;
4
4
  abstract fetchVersionInfo(): BuildInformation;
@@ -1,4 +1,4 @@
1
- import { BuildInformation } from '@bitblit/ratchet-common/lib/build/build-information.js';
1
+ import { BuildInformation } from '@bitblit/ratchet-common';
2
2
  import { AbstractRatchetCliHandler } from './abstract-ratchet-cli-handler.js';
3
3
  export declare class RatchetCliHandler extends AbstractRatchetCliHandler {
4
4
  fetchHandlerMap(): Record<string, any>;
@@ -1,4 +1,4 @@
1
- /// <reference types="node" resolution-mode="require"/>
1
+ /// <reference types="node" />
2
2
  import { Options as ParseOptions } from 'csv-parse';
3
3
  import { Options } from 'csv-stringify';
4
4
  import { Subject } from 'rxjs';
package/lib/index.d.ts CHANGED
@@ -1 +1,11 @@
1
- export {};
1
+ export * from './build/ratchet-node-only-info.js';
2
+ export * from './ci/apply-ci-env-variables-to-files.js';
3
+ export * from './ci/ci-run-information-util.js';
4
+ export * from './ci/ci-run-information.js';
5
+ export * from './cli/abstract-ratchet-cli-handler.js';
6
+ export * from './cli/cli-ratchet.js';
7
+ export * from './cli/ratchet-cli-handler.js';
8
+ export * from './csv/csv-ratchet.js';
9
+ export * from './files/files-to-static-class.js';
10
+ export * from './third-party/git/git-ratchet.js';
11
+ export * from './third-party/slack/publish-ci-release-to-slack.js';