@orion-js/core 3.11.14 → 4.0.0-next.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 (73) hide show
  1. package/dist/build/compile.d.ts +3 -0
  2. package/dist/build/getOptions.d.ts +7 -0
  3. package/dist/build/index.d.ts +3 -0
  4. package/dist/create/index.d.ts +4 -0
  5. package/dist/fsevents-hj42pnne.node +0 -0
  6. package/dist/handleErrors.d.ts +1 -0
  7. package/dist/helpers/ensureDirectory.d.ts +2 -0
  8. package/dist/helpers/execute.d.ts +1 -0
  9. package/dist/helpers/getFileContents.d.ts +1 -0
  10. package/dist/helpers/getModulesToWatch.d.ts +1 -0
  11. package/dist/helpers/isPortInUse.d.ts +1 -0
  12. package/dist/helpers/runOnce.d.ts +1 -0
  13. package/dist/helpers/sleep.d.ts +2 -0
  14. package/dist/helpers/writeFile.d.ts +1 -0
  15. package/dist/index.cjs +196340 -0
  16. package/dist/index.d.ts +4 -0
  17. package/dist/index.js +196332 -0
  18. package/dist/start/copyCursorRule/index.d.ts +1 -0
  19. package/dist/start/copyMCP/consts.d.ts +2 -0
  20. package/dist/start/copyMCP/index.d.ts +1 -0
  21. package/dist/start/copyMCP/isValidMCPRepo.d.ts +5 -0
  22. package/dist/start/index.d.ts +2 -0
  23. package/dist/start/runner/getArgs.d.ts +5 -0
  24. package/dist/start/runner/index.d.ts +12 -0
  25. package/dist/start/runner/startProcess.d.ts +1 -0
  26. package/dist/start/watchAndCompile/cleanDirectory.d.ts +1 -0
  27. package/dist/start/watchAndCompile/ensureConfigComplies.d.ts +1 -0
  28. package/dist/start/watchAndCompile/getConfigPath.d.ts +1 -0
  29. package/dist/start/watchAndCompile/getHost.d.ts +3 -0
  30. package/dist/start/watchAndCompile/index.d.ts +2 -0
  31. package/dist/start/watchAndCompile/reports.d.ts +2 -0
  32. package/dist/start/watchAndCompile/watchDeletes.d.ts +1 -0
  33. package/dist/start/watchAndCompile/writeEnvFile.d.ts +2 -0
  34. package/dist/start/watchAndCompile/writeIndex/index.d.ts +3 -0
  35. package/dist/test/index.d.ts +1 -0
  36. package/dist/version.d.ts +2 -0
  37. package/package.json +22 -10
  38. package/LICENSE +0 -21
  39. package/lib/build/compile.js +0 -28
  40. package/lib/build/getOptions.js +0 -36
  41. package/lib/build/index.js +0 -21
  42. package/lib/create/index.js +0 -20
  43. package/lib/handleErrors.js +0 -20
  44. package/lib/helpers/ensureDirectory.js +0 -15
  45. package/lib/helpers/execute.js +0 -16
  46. package/lib/helpers/getFileContents.js +0 -12
  47. package/lib/helpers/getModulesToWatch.js +0 -39
  48. package/lib/helpers/isPortInUse.js +0 -26
  49. package/lib/helpers/runOnce.js +0 -14
  50. package/lib/helpers/sleep.js +0 -3
  51. package/lib/helpers/writeFile.js +0 -12
  52. package/lib/index.js +0 -52
  53. package/lib/start/copyCursorRule/index.js +0 -66
  54. package/lib/start/copyMCP/consts.js +0 -6
  55. package/lib/start/copyMCP/index.js +0 -87
  56. package/lib/start/copyMCP/isValidMCPRepo.js +0 -56
  57. package/lib/start/index.js +0 -25
  58. package/lib/start/runner/getArgs.js +0 -19
  59. package/lib/start/runner/index.js +0 -42
  60. package/lib/start/runner/startProcess.js +0 -18
  61. package/lib/start/watchAndCompile/cleanDirectory.js +0 -34
  62. package/lib/start/watchAndCompile/ensureConfigComplies.js +0 -31
  63. package/lib/start/watchAndCompile/getConfigPath.js +0 -19
  64. package/lib/start/watchAndCompile/getHost.js +0 -38
  65. package/lib/start/watchAndCompile/index.js +0 -18
  66. package/lib/start/watchAndCompile/reports.js +0 -16
  67. package/lib/start/watchAndCompile/watchDeletes.js +0 -29
  68. package/lib/start/watchAndCompile/writeEnvFile.js +0 -22
  69. package/lib/start/watchAndCompile/writeIndex/index.js +0 -28
  70. package/lib/test/index.js +0 -12
  71. package/lib/version.js +0 -3
  72. package/moduleAlias.js.txt +0 -224
  73. package/tsconfig.json +0 -15
@@ -0,0 +1,3 @@
1
+ export declare function compile({ output }: {
2
+ output: any;
3
+ }): void;
@@ -0,0 +1,7 @@
1
+ import ts from 'typescript';
2
+ export declare function getCompilerOptionsJSONFollowExtends(filename: string): {
3
+ [key: string]: any;
4
+ };
5
+ export declare function getOptions({ output }: {
6
+ output: any;
7
+ }): ts.CompilerOptions;
@@ -0,0 +1,3 @@
1
+ export default function ({ output }: {
2
+ output: any;
3
+ }): Promise<void>;
@@ -0,0 +1,4 @@
1
+ export default function ({ name, kit }: {
2
+ name: any;
3
+ kit: any;
4
+ }): Promise<void>;
Binary file
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ declare const ensureDirectory: (filePath: any) => boolean;
2
+ export default ensureDirectory;
@@ -0,0 +1 @@
1
+ export default function (command: any): Promise<unknown>;
@@ -0,0 +1 @@
1
+ export default function readFile(filePath: string): string;
@@ -0,0 +1 @@
1
+ export default function (): any[];
@@ -0,0 +1 @@
1
+ export default function (port: any): Promise<unknown>;
@@ -0,0 +1 @@
1
+ export default function (func: any): (...args: any[]) => Promise<any>;
@@ -0,0 +1,2 @@
1
+ declare const _default: (time: any) => Promise<unknown>;
2
+ export default _default;
@@ -0,0 +1 @@
1
+ export default function (path: string, content: string): Promise<void>;