@h3ravel/arquebus 0.1.6 → 0.2.1

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 (38) hide show
  1. package/bin/.gitkeep +0 -0
  2. package/bin/cli.cjs +4942 -0
  3. package/bin/cli.d.cts +18 -0
  4. package/bin/cli.d.ts +18 -0
  5. package/bin/cli.js +4887 -183
  6. package/bin/index.cjs +1 -0
  7. package/bin/index.d.cts +2 -0
  8. package/bin/index.d.ts +2 -0
  9. package/bin/index.js +1 -0
  10. package/bin/migrations/stubs/migration-js.stub +21 -0
  11. package/bin/migrations/stubs/migration-ts.stub +18 -0
  12. package/bin/migrations/stubs/migration.create-js.stub +24 -0
  13. package/bin/migrations/stubs/migration.create-ts.stub +21 -0
  14. package/bin/migrations/stubs/migration.update-js.stub +25 -0
  15. package/bin/migrations/stubs/migration.update-ts.stub +22 -0
  16. package/bin/stubs/arquebus.config-js.stub +25 -0
  17. package/bin/stubs/arquebus.config-ts.stub +24 -0
  18. package/bin/stubs/model-js.stub +5 -0
  19. package/bin/stubs/model-ts.stub +5 -0
  20. package/dist/browser/index.cjs +1 -1404
  21. package/dist/browser/index.d.cts +1263 -164
  22. package/dist/browser/index.d.ts +1263 -164
  23. package/dist/browser/index.js +1 -1340
  24. package/dist/index.cjs +1 -4584
  25. package/dist/index.d.cts +1337 -345
  26. package/dist/index.d.ts +1337 -345
  27. package/dist/index.js +1 -4512
  28. package/package.json +27 -10
  29. package/src/migrations/stubs/migration-js.stub +21 -0
  30. package/src/migrations/stubs/migration-ts.stub +18 -0
  31. package/src/migrations/stubs/migration.create-js.stub +24 -0
  32. package/src/migrations/stubs/migration.create-ts.stub +21 -0
  33. package/src/migrations/stubs/migration.update-js.stub +25 -0
  34. package/src/migrations/stubs/migration.update-ts.stub +22 -0
  35. package/src/stubs/arquebus.config-js.stub +25 -0
  36. package/src/stubs/arquebus.config-ts.stub +24 -0
  37. package/src/stubs/model-js.stub +5 -0
  38. package/src/stubs/model-ts.stub +5 -0
package/bin/cli.d.cts ADDED
@@ -0,0 +1,18 @@
1
+ #!/usr/bin/env node
2
+ declare class Cli {
3
+ private cwd;
4
+ private output;
5
+ private config;
6
+ private basePath;
7
+ private modulePath;
8
+ private configPath?;
9
+ private modulePackage;
10
+ constructor(basePath?: string);
11
+ private terminateNotFound;
12
+ static init(): void;
13
+ private loadPaths;
14
+ loadConfig(): Promise<this>;
15
+ run(): Promise<void>;
16
+ }
17
+
18
+ export { Cli };
package/bin/cli.d.ts ADDED
@@ -0,0 +1,18 @@
1
+ #!/usr/bin/env node
2
+ declare class Cli {
3
+ private cwd;
4
+ private output;
5
+ private config;
6
+ private basePath;
7
+ private modulePath;
8
+ private configPath?;
9
+ private modulePackage;
10
+ constructor(basePath?: string);
11
+ private terminateNotFound;
12
+ static init(): void;
13
+ private loadPaths;
14
+ loadConfig(): Promise<this>;
15
+ run(): Promise<void>;
16
+ }
17
+
18
+ export { Cli };