@tsmodule/tsmodule 40.0.13 → 40.0.16

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 (60) hide show
  1. package/dist/{bin/index.d.ts → bin.d.ts} +0 -0
  2. package/dist/bin.js +89 -0
  3. package/dist/commands/build/index.js +62 -6
  4. package/dist/commands/build/lib/emitTsDeclarations.js +18 -1
  5. package/dist/commands/convert/index.js +51 -1
  6. package/dist/commands/create/index.js +51 -1
  7. package/dist/commands/create/lib/templates.js +51 -1
  8. package/dist/commands/dev/index.js +66 -3
  9. package/dist/commands/execute/index.js +10 -1
  10. package/dist/commands/index.js +66 -1
  11. package/dist/commands/normalize/index.js +47 -1
  12. package/dist/commands/normalize/lib/typescriptApi.js +14 -1
  13. package/dist/constants.js +4 -1
  14. package/dist/index.js +66 -1
  15. package/dist/loader/index.js +12 -1
  16. package/dist/loader/types.js +3 -0
  17. package/dist/specification/index.js +4 -1
  18. package/dist/specification/types.js +3 -0
  19. package/{templates → dist/templates}/default/.eslintrc +0 -0
  20. package/{templates → dist/templates}/default/.github/workflows/ci.yml +0 -0
  21. package/{templates → dist/templates}/default/.gitignore +0 -0
  22. package/{templates → dist/templates}/default/LICENSE +0 -0
  23. package/{templates → dist/templates}/default/README.md +0 -0
  24. package/{templates → dist/templates}/default/package.json +0 -0
  25. package/{templates → dist/templates}/default/src/index.ts +0 -0
  26. package/{templates → dist/templates}/default/test/example.test.ts +0 -0
  27. package/{templates → dist/templates}/default/tsconfig.json +0 -0
  28. package/{templates → dist/templates}/react/.eslintrc +0 -0
  29. package/{templates → dist/templates}/react/.gitignore +0 -0
  30. package/{templates → dist/templates}/react/LICENSE +0 -0
  31. package/{templates → dist/templates}/react/README.md +0 -0
  32. package/{templates → dist/templates}/react/next-env.d.ts +0 -0
  33. package/{templates → dist/templates}/react/next.config.js +0 -0
  34. package/{templates → dist/templates}/react/package.json +0 -0
  35. package/{templates → dist/templates}/react/postcss.config.js +0 -0
  36. package/{templates → dist/templates}/react/public/vercel.svg +0 -0
  37. package/{templates → dist/templates}/react/src/components/Card/index.css +0 -0
  38. package/{templates → dist/templates}/react/src/components/Card/index.tsx +0 -0
  39. package/{templates → dist/templates}/react/src/components/CardGrid/index.tsx +0 -0
  40. package/{templates → dist/templates}/react/src/components/Footer/index.tsx +0 -0
  41. package/{templates → dist/templates}/react/src/components/GetStarted/index.tsx +0 -0
  42. package/{templates → dist/templates}/react/src/components/Welcome/index.tsx +0 -0
  43. package/{templates → dist/templates}/react/src/components/index.css +0 -0
  44. package/{templates → dist/templates}/react/src/components/index.ts +0 -0
  45. package/{templates → dist/templates}/react/src/index.css +0 -0
  46. package/{templates → dist/templates}/react/src/index.ts +0 -0
  47. package/{templates → dist/templates}/react/src/pages/_app.tsx +0 -0
  48. package/{templates → dist/templates}/react/src/pages/api/hello.ts +0 -0
  49. package/{templates → dist/templates}/react/src/pages/index.tsx +0 -0
  50. package/{templates → dist/templates}/react/tailwind.config.js +0 -0
  51. package/dist/types/index.js +66 -1
  52. package/dist/utils/cwd.js +8 -1
  53. package/dist/utils/packageJson.js +4 -1
  54. package/dist/utils/programCatch.js +46 -1
  55. package/dist/utils/require.js +4 -1
  56. package/dist/utils/resolve.js +4 -1
  57. package/dist/utils/showProgress.js +12 -1
  58. package/dist/utils/stdin.js +12 -1
  59. package/package.json +10 -13
  60. package/dist/bin/index.js +0 -7
File without changes