remix 3.0.0-alpha.5 → 3.0.0-beta.0

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 (116) hide show
  1. package/README.md +41 -0
  2. package/dist/cli-entry.d.ts +3 -0
  3. package/dist/cli-entry.d.ts.map +1 -0
  4. package/dist/cli-entry.js +12 -0
  5. package/dist/cli.d.ts +2 -0
  6. package/dist/cli.d.ts.map +1 -0
  7. package/{src/component.ts → dist/cli.js} +1 -1
  8. package/dist/node-fetch-server/test.d.ts +2 -0
  9. package/dist/node-fetch-server/test.d.ts.map +1 -0
  10. package/dist/{component/jsx-runtime.js → node-fetch-server/test.js} +1 -1
  11. package/dist/node-serve.d.ts +2 -0
  12. package/dist/node-serve.d.ts.map +1 -0
  13. package/dist/node-serve.js +2 -0
  14. package/dist/terminal.d.ts +2 -0
  15. package/dist/terminal.d.ts.map +1 -0
  16. package/dist/{component.js → terminal.js} +1 -1
  17. package/dist/test/cli.d.ts +2 -0
  18. package/dist/test/cli.d.ts.map +1 -0
  19. package/dist/test/cli.js +2 -0
  20. package/dist/ui/accordion.d.ts +2 -0
  21. package/dist/ui/accordion.d.ts.map +1 -0
  22. package/dist/ui/accordion.js +2 -0
  23. package/dist/ui/anchor.d.ts +2 -0
  24. package/dist/ui/anchor.d.ts.map +1 -0
  25. package/dist/ui/anchor.js +2 -0
  26. package/dist/ui/animation.d.ts +2 -0
  27. package/dist/ui/animation.d.ts.map +1 -0
  28. package/dist/ui/animation.js +2 -0
  29. package/dist/ui/breadcrumbs.d.ts +2 -0
  30. package/dist/ui/breadcrumbs.d.ts.map +1 -0
  31. package/dist/ui/breadcrumbs.js +2 -0
  32. package/dist/ui/button.d.ts +2 -0
  33. package/dist/ui/button.d.ts.map +1 -0
  34. package/dist/ui/button.js +2 -0
  35. package/dist/ui/combobox.d.ts +2 -0
  36. package/dist/ui/combobox.d.ts.map +1 -0
  37. package/dist/ui/combobox.js +2 -0
  38. package/dist/ui/glyph.d.ts +2 -0
  39. package/dist/ui/glyph.d.ts.map +1 -0
  40. package/dist/ui/glyph.js +2 -0
  41. package/dist/ui/jsx-dev-runtime.d.ts +2 -0
  42. package/dist/ui/jsx-dev-runtime.d.ts.map +1 -0
  43. package/dist/ui/jsx-dev-runtime.js +2 -0
  44. package/dist/ui/jsx-runtime.d.ts +2 -0
  45. package/dist/ui/jsx-runtime.d.ts.map +1 -0
  46. package/dist/ui/jsx-runtime.js +2 -0
  47. package/dist/ui/listbox.d.ts +2 -0
  48. package/dist/ui/listbox.d.ts.map +1 -0
  49. package/dist/ui/listbox.js +2 -0
  50. package/dist/ui/menu.d.ts +2 -0
  51. package/dist/ui/menu.d.ts.map +1 -0
  52. package/dist/ui/menu.js +2 -0
  53. package/dist/ui/popover.d.ts +2 -0
  54. package/dist/ui/popover.d.ts.map +1 -0
  55. package/dist/ui/popover.js +2 -0
  56. package/dist/ui/scroll-lock.d.ts +2 -0
  57. package/dist/ui/scroll-lock.d.ts.map +1 -0
  58. package/dist/ui/scroll-lock.js +2 -0
  59. package/dist/ui/select.d.ts +2 -0
  60. package/dist/ui/select.d.ts.map +1 -0
  61. package/dist/ui/select.js +2 -0
  62. package/dist/ui/separator.d.ts +2 -0
  63. package/dist/ui/separator.d.ts.map +1 -0
  64. package/dist/ui/separator.js +2 -0
  65. package/dist/ui/server.d.ts +2 -0
  66. package/dist/ui/server.d.ts.map +1 -0
  67. package/dist/{component → ui}/server.js +1 -1
  68. package/dist/ui/test.d.ts +2 -0
  69. package/dist/ui/test.d.ts.map +1 -0
  70. package/dist/ui/test.js +2 -0
  71. package/dist/ui/theme.d.ts +2 -0
  72. package/dist/ui/theme.d.ts.map +1 -0
  73. package/dist/ui/theme.js +2 -0
  74. package/dist/ui.d.ts +2 -0
  75. package/dist/ui.d.ts.map +1 -0
  76. package/dist/ui.js +2 -0
  77. package/package.json +159 -54
  78. package/src/cli-entry.ts +13 -0
  79. package/src/cli.ts +2 -0
  80. package/{dist/remix-test.js → src/node-fetch-server/test.ts} +1 -2
  81. package/src/node-serve.ts +2 -0
  82. package/src/terminal.ts +2 -0
  83. package/src/test/cli.ts +2 -0
  84. package/src/ui/accordion.ts +2 -0
  85. package/src/ui/anchor.ts +2 -0
  86. package/src/ui/animation.ts +2 -0
  87. package/src/ui/breadcrumbs.ts +2 -0
  88. package/src/ui/button.ts +2 -0
  89. package/src/ui/combobox.ts +2 -0
  90. package/src/ui/glyph.ts +2 -0
  91. package/src/ui/jsx-dev-runtime.ts +2 -0
  92. package/src/ui/jsx-runtime.ts +2 -0
  93. package/src/ui/listbox.ts +2 -0
  94. package/src/ui/menu.ts +2 -0
  95. package/src/ui/popover.ts +2 -0
  96. package/src/ui/scroll-lock.ts +2 -0
  97. package/src/ui/select.ts +2 -0
  98. package/src/ui/separator.ts +2 -0
  99. package/src/{component → ui}/server.ts +1 -1
  100. package/src/ui/test.ts +2 -0
  101. package/src/ui/theme.ts +2 -0
  102. package/src/ui.ts +2 -0
  103. package/dist/component/jsx-dev-runtime.d.ts +0 -2
  104. package/dist/component/jsx-dev-runtime.d.ts.map +0 -1
  105. package/dist/component/jsx-dev-runtime.js +0 -2
  106. package/dist/component/jsx-runtime.d.ts +0 -2
  107. package/dist/component/jsx-runtime.d.ts.map +0 -1
  108. package/dist/component/server.d.ts +0 -2
  109. package/dist/component/server.d.ts.map +0 -1
  110. package/dist/component.d.ts +0 -2
  111. package/dist/component.d.ts.map +0 -1
  112. package/dist/remix-test.d.ts +0 -3
  113. package/dist/remix-test.d.ts.map +0 -1
  114. package/src/component/jsx-dev-runtime.ts +0 -2
  115. package/src/component/jsx-runtime.ts +0 -2
  116. package/src/remix-test.ts +0 -3
package/README.md CHANGED
@@ -10,6 +10,47 @@ See [remix.run](https://remix.run) for more information.
10
10
  npm i remix
11
11
  ```
12
12
 
13
+ ## CLI
14
+
15
+ Create a new app with the CLI:
16
+
17
+ ```sh
18
+ npx remix@next new my-remix-app
19
+ ```
20
+
21
+ After installing `remix`, the equivalent local command and the rest of the CLI are available through `remix`:
22
+
23
+ ```sh
24
+ remix new my-remix-app
25
+ remix completion bash >> ~/.bashrc
26
+ remix doctor
27
+ remix doctor --fix
28
+ remix routes
29
+ remix routes --table
30
+ remix routes --table --no-headers
31
+ remix skills install
32
+ remix test
33
+ remix version
34
+ remix --no-color doctor
35
+ ```
36
+
37
+ ## Programmatic CLI
38
+
39
+ ```ts
40
+ import { runRemix } from 'remix/cli'
41
+
42
+ await runRemix(['new', 'my-remix-app'])
43
+ await runRemix(['completion', 'bash'])
44
+ await runRemix(['doctor'])
45
+ await runRemix(['doctor', '--fix'])
46
+ await runRemix(['routes'])
47
+ await runRemix(['routes', '--table'])
48
+ await runRemix(['routes', '--table', '--no-headers'])
49
+ await runRemix(['skills', 'list'])
50
+ await runRemix(['test'])
51
+ await runRemix(['version'])
52
+ ```
53
+
13
54
  ## License
14
55
 
15
56
  See [LICENSE](https://github.com/remix-run/remix/blob/main/LICENSE)
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ export {};
3
+ //# sourceMappingURL=cli-entry.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli-entry.d.ts","sourceRoot":"","sources":["../src/cli-entry.ts"],"names":[],"mappings":""}
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env node
2
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
3
+ import * as process from 'node:process';
4
+ import { runRemix } from "./cli.js";
5
+ try {
6
+ let exitCode = await runRemix(process.argv.slice(2));
7
+ process.exit(exitCode);
8
+ }
9
+ catch (error) {
10
+ console.error(error);
11
+ process.exit(1);
12
+ }
package/dist/cli.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/cli';
2
+ //# sourceMappingURL=cli.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"AACA,cAAc,gBAAgB,CAAA"}
@@ -1,2 +1,2 @@
1
1
  // IMPORTANT: This file is auto-generated, please do not edit manually.
2
- export * from '@remix-run/component'
2
+ export * from '@remix-run/cli';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/node-fetch-server/test';
2
+ //# sourceMappingURL=test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"test.d.ts","sourceRoot":"","sources":["../../src/node-fetch-server/test.ts"],"names":[],"mappings":"AACA,cAAc,mCAAmC,CAAA"}
@@ -1,2 +1,2 @@
1
1
  // IMPORTANT: This file is auto-generated, please do not edit manually.
2
- export * from '@remix-run/component/jsx-runtime';
2
+ export * from '@remix-run/node-fetch-server/test';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/node-serve';
2
+ //# sourceMappingURL=node-serve.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"node-serve.d.ts","sourceRoot":"","sources":["../src/node-serve.ts"],"names":[],"mappings":"AACA,cAAc,uBAAuB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/node-serve';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/terminal';
2
+ //# sourceMappingURL=terminal.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"terminal.d.ts","sourceRoot":"","sources":["../src/terminal.ts"],"names":[],"mappings":"AACA,cAAc,qBAAqB,CAAA"}
@@ -1,2 +1,2 @@
1
1
  // IMPORTANT: This file is auto-generated, please do not edit manually.
2
- export * from '@remix-run/component';
2
+ export * from '@remix-run/terminal';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/test/cli';
2
+ //# sourceMappingURL=cli.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../../src/test/cli.ts"],"names":[],"mappings":"AACA,cAAc,qBAAqB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/test/cli';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/accordion';
2
+ //# sourceMappingURL=accordion.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accordion.d.ts","sourceRoot":"","sources":["../../src/ui/accordion.ts"],"names":[],"mappings":"AACA,cAAc,yBAAyB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/accordion';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/anchor';
2
+ //# sourceMappingURL=anchor.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"anchor.d.ts","sourceRoot":"","sources":["../../src/ui/anchor.ts"],"names":[],"mappings":"AACA,cAAc,sBAAsB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/anchor';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/animation';
2
+ //# sourceMappingURL=animation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"animation.d.ts","sourceRoot":"","sources":["../../src/ui/animation.ts"],"names":[],"mappings":"AACA,cAAc,yBAAyB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/animation';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/breadcrumbs';
2
+ //# sourceMappingURL=breadcrumbs.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"breadcrumbs.d.ts","sourceRoot":"","sources":["../../src/ui/breadcrumbs.ts"],"names":[],"mappings":"AACA,cAAc,2BAA2B,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/breadcrumbs';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/button';
2
+ //# sourceMappingURL=button.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../src/ui/button.ts"],"names":[],"mappings":"AACA,cAAc,sBAAsB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/button';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/combobox';
2
+ //# sourceMappingURL=combobox.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"combobox.d.ts","sourceRoot":"","sources":["../../src/ui/combobox.ts"],"names":[],"mappings":"AACA,cAAc,wBAAwB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/combobox';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/glyph';
2
+ //# sourceMappingURL=glyph.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"glyph.d.ts","sourceRoot":"","sources":["../../src/ui/glyph.ts"],"names":[],"mappings":"AACA,cAAc,qBAAqB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/glyph';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/jsx-dev-runtime';
2
+ //# sourceMappingURL=jsx-dev-runtime.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"jsx-dev-runtime.d.ts","sourceRoot":"","sources":["../../src/ui/jsx-dev-runtime.ts"],"names":[],"mappings":"AACA,cAAc,+BAA+B,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/jsx-dev-runtime';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/jsx-runtime';
2
+ //# sourceMappingURL=jsx-runtime.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"jsx-runtime.d.ts","sourceRoot":"","sources":["../../src/ui/jsx-runtime.ts"],"names":[],"mappings":"AACA,cAAc,2BAA2B,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/jsx-runtime';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/listbox';
2
+ //# sourceMappingURL=listbox.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"listbox.d.ts","sourceRoot":"","sources":["../../src/ui/listbox.ts"],"names":[],"mappings":"AACA,cAAc,uBAAuB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/listbox';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/menu';
2
+ //# sourceMappingURL=menu.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"menu.d.ts","sourceRoot":"","sources":["../../src/ui/menu.ts"],"names":[],"mappings":"AACA,cAAc,oBAAoB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/menu';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/popover';
2
+ //# sourceMappingURL=popover.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"popover.d.ts","sourceRoot":"","sources":["../../src/ui/popover.ts"],"names":[],"mappings":"AACA,cAAc,uBAAuB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/popover';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/scroll-lock';
2
+ //# sourceMappingURL=scroll-lock.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scroll-lock.d.ts","sourceRoot":"","sources":["../../src/ui/scroll-lock.ts"],"names":[],"mappings":"AACA,cAAc,2BAA2B,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/scroll-lock';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/select';
2
+ //# sourceMappingURL=select.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"select.d.ts","sourceRoot":"","sources":["../../src/ui/select.ts"],"names":[],"mappings":"AACA,cAAc,sBAAsB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/select';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/separator';
2
+ //# sourceMappingURL=separator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"separator.d.ts","sourceRoot":"","sources":["../../src/ui/separator.ts"],"names":[],"mappings":"AACA,cAAc,yBAAyB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/separator';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/server';
2
+ //# sourceMappingURL=server.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../src/ui/server.ts"],"names":[],"mappings":"AACA,cAAc,sBAAsB,CAAA"}
@@ -1,2 +1,2 @@
1
1
  // IMPORTANT: This file is auto-generated, please do not edit manually.
2
- export * from '@remix-run/component/server';
2
+ export * from '@remix-run/ui/server';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/test';
2
+ //# sourceMappingURL=test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"test.d.ts","sourceRoot":"","sources":["../../src/ui/test.ts"],"names":[],"mappings":"AACA,cAAc,oBAAoB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/test';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/theme';
2
+ //# sourceMappingURL=theme.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../src/ui/theme.ts"],"names":[],"mappings":"AACA,cAAc,qBAAqB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/theme';
package/dist/ui.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui';
2
+ //# sourceMappingURL=ui.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ui.d.ts","sourceRoot":"","sources":["../src/ui.ts"],"names":[],"mappings":"AACA,cAAc,eAAe,CAAA"}
package/dist/ui.js ADDED
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "remix",
3
- "version": "3.0.0-alpha.5",
4
- "description": "Remix Web Framework",
3
+ "version": "3.0.0-beta.0",
4
+ "description": "The Remix web framework",
5
5
  "author": "Michael Jackson <mjijackson@gmail.com>",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -17,6 +17,9 @@
17
17
  "src"
18
18
  ],
19
19
  "type": "module",
20
+ "engines": {
21
+ "node": ">=24.3.0"
22
+ },
20
23
  "exports": {
21
24
  "./assert": {
22
25
  "types": "./dist/assert.d.ts",
@@ -38,21 +41,9 @@
38
41
  "types": "./dist/auth-middleware.d.ts",
39
42
  "default": "./dist/auth-middleware.js"
40
43
  },
41
- "./component": {
42
- "types": "./dist/component.d.ts",
43
- "default": "./dist/component.js"
44
- },
45
- "./component/jsx-dev-runtime": {
46
- "types": "./dist/component/jsx-dev-runtime.d.ts",
47
- "default": "./dist/component/jsx-dev-runtime.js"
48
- },
49
- "./component/jsx-runtime": {
50
- "types": "./dist/component/jsx-runtime.d.ts",
51
- "default": "./dist/component/jsx-runtime.js"
52
- },
53
- "./component/server": {
54
- "types": "./dist/component/server.d.ts",
55
- "default": "./dist/component/server.js"
44
+ "./cli": {
45
+ "types": "./dist/cli.d.ts",
46
+ "default": "./dist/cli.js"
56
47
  },
57
48
  "./compression-middleware": {
58
49
  "types": "./dist/compression-middleware.d.ts",
@@ -202,6 +193,14 @@
202
193
  "types": "./dist/node-fetch-server.d.ts",
203
194
  "default": "./dist/node-fetch-server.js"
204
195
  },
196
+ "./node-fetch-server/test": {
197
+ "types": "./dist/node-fetch-server/test.d.ts",
198
+ "default": "./dist/node-fetch-server/test.js"
199
+ },
200
+ "./node-serve": {
201
+ "types": "./dist/node-serve.d.ts",
202
+ "default": "./dist/node-serve.js"
203
+ },
205
204
  "./response/compress": {
206
205
  "types": "./dist/response/compress.d.ts",
207
206
  "default": "./dist/response/compress.js"
@@ -262,10 +261,94 @@
262
261
  "types": "./dist/tar-parser.d.ts",
263
262
  "default": "./dist/tar-parser.js"
264
263
  },
264
+ "./terminal": {
265
+ "types": "./dist/terminal.d.ts",
266
+ "default": "./dist/terminal.js"
267
+ },
265
268
  "./test": {
266
269
  "types": "./dist/test.d.ts",
267
270
  "default": "./dist/test.js"
268
271
  },
272
+ "./test/cli": {
273
+ "types": "./dist/test/cli.d.ts",
274
+ "default": "./dist/test/cli.js"
275
+ },
276
+ "./ui": {
277
+ "types": "./dist/ui.d.ts",
278
+ "default": "./dist/ui.js"
279
+ },
280
+ "./ui/accordion": {
281
+ "types": "./dist/ui/accordion.d.ts",
282
+ "default": "./dist/ui/accordion.js"
283
+ },
284
+ "./ui/anchor": {
285
+ "types": "./dist/ui/anchor.d.ts",
286
+ "default": "./dist/ui/anchor.js"
287
+ },
288
+ "./ui/animation": {
289
+ "types": "./dist/ui/animation.d.ts",
290
+ "default": "./dist/ui/animation.js"
291
+ },
292
+ "./ui/breadcrumbs": {
293
+ "types": "./dist/ui/breadcrumbs.d.ts",
294
+ "default": "./dist/ui/breadcrumbs.js"
295
+ },
296
+ "./ui/button": {
297
+ "types": "./dist/ui/button.d.ts",
298
+ "default": "./dist/ui/button.js"
299
+ },
300
+ "./ui/combobox": {
301
+ "types": "./dist/ui/combobox.d.ts",
302
+ "default": "./dist/ui/combobox.js"
303
+ },
304
+ "./ui/glyph": {
305
+ "types": "./dist/ui/glyph.d.ts",
306
+ "default": "./dist/ui/glyph.js"
307
+ },
308
+ "./ui/jsx-dev-runtime": {
309
+ "types": "./dist/ui/jsx-dev-runtime.d.ts",
310
+ "default": "./dist/ui/jsx-dev-runtime.js"
311
+ },
312
+ "./ui/jsx-runtime": {
313
+ "types": "./dist/ui/jsx-runtime.d.ts",
314
+ "default": "./dist/ui/jsx-runtime.js"
315
+ },
316
+ "./ui/listbox": {
317
+ "types": "./dist/ui/listbox.d.ts",
318
+ "default": "./dist/ui/listbox.js"
319
+ },
320
+ "./ui/menu": {
321
+ "types": "./dist/ui/menu.d.ts",
322
+ "default": "./dist/ui/menu.js"
323
+ },
324
+ "./ui/popover": {
325
+ "types": "./dist/ui/popover.d.ts",
326
+ "default": "./dist/ui/popover.js"
327
+ },
328
+ "./ui/scroll-lock": {
329
+ "types": "./dist/ui/scroll-lock.d.ts",
330
+ "default": "./dist/ui/scroll-lock.js"
331
+ },
332
+ "./ui/select": {
333
+ "types": "./dist/ui/select.d.ts",
334
+ "default": "./dist/ui/select.js"
335
+ },
336
+ "./ui/separator": {
337
+ "types": "./dist/ui/separator.d.ts",
338
+ "default": "./dist/ui/separator.js"
339
+ },
340
+ "./ui/server": {
341
+ "types": "./dist/ui/server.d.ts",
342
+ "default": "./dist/ui/server.js"
343
+ },
344
+ "./ui/test": {
345
+ "types": "./dist/ui/test.d.ts",
346
+ "default": "./dist/ui/test.js"
347
+ },
348
+ "./ui/theme": {
349
+ "types": "./dist/ui/theme.d.ts",
350
+ "default": "./dist/ui/theme.js"
351
+ },
269
352
  "./package.json": "./package.json"
270
353
  },
271
354
  "devDependencies": {
@@ -274,54 +357,76 @@
274
357
  "typescript": "^5.9.3"
275
358
  },
276
359
  "dependencies": {
277
- "@remix-run/assets": "^0.1.0",
278
- "@remix-run/auth": "^0.1.1",
279
- "@remix-run/auth-middleware": "^0.1.1",
280
- "@remix-run/component": "^0.7.0",
281
- "@remix-run/async-context-middleware": "^0.2.1",
282
- "@remix-run/compression-middleware": "^0.1.5",
283
- "@remix-run/cop-middleware": "^0.1.1",
284
- "@remix-run/cors-middleware": "^0.1.1",
285
- "@remix-run/csrf-middleware": "^0.1.1",
360
+ "@remix-run/assets": "^0.3.0",
361
+ "@remix-run/auth": "^0.2.1",
362
+ "@remix-run/async-context-middleware": "^0.2.2",
363
+ "@remix-run/auth-middleware": "^0.1.2",
364
+ "@remix-run/cop-middleware": "^0.1.2",
365
+ "@remix-run/csrf-middleware": "^0.1.2",
366
+ "@remix-run/ui": "^0.1.1",
367
+ "@remix-run/data-schema": "^0.3.0",
368
+ "@remix-run/cors-middleware": "^0.1.2",
369
+ "@remix-run/data-table": "^0.2.1",
370
+ "@remix-run/compression-middleware": "^0.1.7",
371
+ "@remix-run/data-table-mysql": "^0.3.1",
372
+ "@remix-run/data-table-postgres": "^0.3.1",
373
+ "@remix-run/fetch-proxy": "^0.8.0",
374
+ "@remix-run/fetch-router": "^0.18.2",
375
+ "@remix-run/file-storage": "^0.13.4",
376
+ "@remix-run/data-table-sqlite": "^0.4.1",
377
+ "@remix-run/file-storage-s3": "^0.1.1",
286
378
  "@remix-run/cookie": "^0.5.1",
287
- "@remix-run/data-table": "^0.2.0",
288
- "@remix-run/data-table-mysql": "^0.3.0",
289
- "@remix-run/data-table-postgres": "^0.3.0",
290
- "@remix-run/data-table-sqlite": "^0.3.0",
291
- "@remix-run/fetch-proxy": "^0.7.1",
292
- "@remix-run/file-storage-s3": "^0.1.0",
293
- "@remix-run/data-schema": "^0.2.0",
294
- "@remix-run/form-data-parser": "^0.16.0",
295
- "@remix-run/fs": "^0.4.2",
296
- "@remix-run/form-data-middleware": "^0.2.1",
297
- "@remix-run/headers": "^0.19.0",
379
+ "@remix-run/form-data-middleware": "^0.2.3",
380
+ "@remix-run/form-data-parser": "^0.17.0",
381
+ "@remix-run/fs": "^0.4.3",
382
+ "@remix-run/lazy-file": "^5.0.3",
298
383
  "@remix-run/html-template": "^0.3.0",
299
- "@remix-run/lazy-file": "^5.0.2",
300
- "@remix-run/logger-middleware": "^0.1.5",
301
- "@remix-run/fetch-router": "^0.18.1",
302
- "@remix-run/file-storage": "^0.13.3",
303
- "@remix-run/multipart-parser": "^0.15.0",
304
- "@remix-run/node-fetch-server": "^0.13.0",
305
- "@remix-run/response": "^0.3.2",
306
- "@remix-run/route-pattern": "^0.20.1",
384
+ "@remix-run/headers": "^0.19.0",
385
+ "@remix-run/logger-middleware": "^0.2.1",
386
+ "@remix-run/mime": "^0.4.1",
387
+ "@remix-run/method-override-middleware": "^0.1.7",
388
+ "@remix-run/multipart-parser": "^0.16.0",
389
+ "@remix-run/node-fetch-server": "^0.13.1",
307
390
  "@remix-run/session": "^0.4.1",
308
- "@remix-run/session-middleware": "^0.2.1",
391
+ "@remix-run/session-middleware": "^0.2.2",
392
+ "@remix-run/response": "^0.3.3",
309
393
  "@remix-run/session-storage-memcache": "^0.1.0",
310
- "@remix-run/mime": "^0.4.0",
311
- "@remix-run/method-override-middleware": "^0.1.6",
394
+ "@remix-run/static-middleware": "^0.4.8",
312
395
  "@remix-run/session-storage-redis": "^0.1.0",
313
- "@remix-run/static-middleware": "^0.4.6",
314
- "@remix-run/tar-parser": "^0.7.0",
315
- "@remix-run/test": "^0.1.0",
316
- "@remix-run/assert": "^0.1.0"
396
+ "@remix-run/tar-parser": "^0.7.1",
397
+ "@remix-run/route-pattern": "^0.20.1",
398
+ "@remix-run/assert": "^0.2.0",
399
+ "@remix-run/cli": "^0.2.0",
400
+ "@remix-run/terminal": "^0.1.0",
401
+ "@remix-run/node-serve": "^0.1.0",
402
+ "@remix-run/test": "^0.3.0"
317
403
  },
318
404
  "bin": {
319
- "remix-test": "./dist/remix-test.js"
405
+ "remix": "./dist/cli-entry.js"
406
+ },
407
+ "peerDependencies": {
408
+ "mysql2": "^3.15.3",
409
+ "pg": "^8.16.3",
410
+ "redis": "^5.10.0",
411
+ "playwright": "^1.59.0"
412
+ },
413
+ "peerDependenciesMeta": {
414
+ "mysql2": {
415
+ "optional": true
416
+ },
417
+ "pg": {
418
+ "optional": true
419
+ },
420
+ "redis": {
421
+ "optional": true
422
+ },
423
+ "playwright": {
424
+ "optional": true
425
+ }
320
426
  },
321
427
  "scripts": {
322
428
  "build": "tsc -p tsconfig.build.json",
323
429
  "clean": "git clean -fdX",
324
- "test": "node --test './src/**/*.test.ts'",
325
430
  "typecheck": "tsc --noEmit"
326
431
  }
327
432
  }
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env node
2
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
3
+ import * as process from 'node:process'
4
+
5
+ import { runRemix } from './cli.ts'
6
+
7
+ try {
8
+ let exitCode = await runRemix(process.argv.slice(2))
9
+ process.exit(exitCode)
10
+ } catch (error) {
11
+ console.error(error)
12
+ process.exit(1)
13
+ }
package/src/cli.ts ADDED
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/cli'
@@ -1,3 +1,2 @@
1
- #!/usr/bin/env node
2
1
  // IMPORTANT: This file is auto-generated, please do not edit manually.
3
- import '@remix-run/test/cli';
2
+ export * from '@remix-run/node-fetch-server/test'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/node-serve'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/terminal'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/test/cli'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/accordion'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/anchor'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/animation'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/breadcrumbs'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/button'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/combobox'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/glyph'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/jsx-dev-runtime'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/jsx-runtime'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/listbox'
package/src/ui/menu.ts ADDED
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/menu'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/popover'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/scroll-lock'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/select'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/separator'
@@ -1,2 +1,2 @@
1
1
  // IMPORTANT: This file is auto-generated, please do not edit manually.
2
- export * from '@remix-run/component/server'
2
+ export * from '@remix-run/ui/server'
package/src/ui/test.ts ADDED
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/test'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/theme'
package/src/ui.ts ADDED
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui'
@@ -1,2 +0,0 @@
1
- export * from '@remix-run/component/jsx-dev-runtime';
2
- //# sourceMappingURL=jsx-dev-runtime.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"jsx-dev-runtime.d.ts","sourceRoot":"","sources":["../../src/component/jsx-dev-runtime.ts"],"names":[],"mappings":"AACA,cAAc,sCAAsC,CAAA"}
@@ -1,2 +0,0 @@
1
- // IMPORTANT: This file is auto-generated, please do not edit manually.
2
- export * from '@remix-run/component/jsx-dev-runtime';
@@ -1,2 +0,0 @@
1
- export * from '@remix-run/component/jsx-runtime';
2
- //# sourceMappingURL=jsx-runtime.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"jsx-runtime.d.ts","sourceRoot":"","sources":["../../src/component/jsx-runtime.ts"],"names":[],"mappings":"AACA,cAAc,kCAAkC,CAAA"}
@@ -1,2 +0,0 @@
1
- export * from '@remix-run/component/server';
2
- //# sourceMappingURL=server.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../src/component/server.ts"],"names":[],"mappings":"AACA,cAAc,6BAA6B,CAAA"}
@@ -1,2 +0,0 @@
1
- export * from '@remix-run/component';
2
- //# sourceMappingURL=component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"component.d.ts","sourceRoot":"","sources":["../src/component.ts"],"names":[],"mappings":"AACA,cAAc,sBAAsB,CAAA"}
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env node
2
- import '@remix-run/test/cli';
3
- //# sourceMappingURL=remix-test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"remix-test.d.ts","sourceRoot":"","sources":["../src/remix-test.ts"],"names":[],"mappings":";AAEA,OAAO,qBAAqB,CAAA"}
@@ -1,2 +0,0 @@
1
- // IMPORTANT: This file is auto-generated, please do not edit manually.
2
- export * from '@remix-run/component/jsx-dev-runtime'
@@ -1,2 +0,0 @@
1
- // IMPORTANT: This file is auto-generated, please do not edit manually.
2
- export * from '@remix-run/component/jsx-runtime'
package/src/remix-test.ts DELETED
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env node
2
- // IMPORTANT: This file is auto-generated, please do not edit manually.
3
- import '@remix-run/test/cli'