@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.
- package/dist/{bin/index.d.ts → bin.d.ts} +0 -0
- package/dist/bin.js +89 -0
- package/dist/commands/build/index.js +62 -6
- package/dist/commands/build/lib/emitTsDeclarations.js +18 -1
- package/dist/commands/convert/index.js +51 -1
- package/dist/commands/create/index.js +51 -1
- package/dist/commands/create/lib/templates.js +51 -1
- package/dist/commands/dev/index.js +66 -3
- package/dist/commands/execute/index.js +10 -1
- package/dist/commands/index.js +66 -1
- package/dist/commands/normalize/index.js +47 -1
- package/dist/commands/normalize/lib/typescriptApi.js +14 -1
- package/dist/constants.js +4 -1
- package/dist/index.js +66 -1
- package/dist/loader/index.js +12 -1
- package/dist/loader/types.js +3 -0
- package/dist/specification/index.js +4 -1
- package/dist/specification/types.js +3 -0
- package/{templates → dist/templates}/default/.eslintrc +0 -0
- package/{templates → dist/templates}/default/.github/workflows/ci.yml +0 -0
- package/{templates → dist/templates}/default/.gitignore +0 -0
- package/{templates → dist/templates}/default/LICENSE +0 -0
- package/{templates → dist/templates}/default/README.md +0 -0
- package/{templates → dist/templates}/default/package.json +0 -0
- package/{templates → dist/templates}/default/src/index.ts +0 -0
- package/{templates → dist/templates}/default/test/example.test.ts +0 -0
- package/{templates → dist/templates}/default/tsconfig.json +0 -0
- package/{templates → dist/templates}/react/.eslintrc +0 -0
- package/{templates → dist/templates}/react/.gitignore +0 -0
- package/{templates → dist/templates}/react/LICENSE +0 -0
- package/{templates → dist/templates}/react/README.md +0 -0
- package/{templates → dist/templates}/react/next-env.d.ts +0 -0
- package/{templates → dist/templates}/react/next.config.js +0 -0
- package/{templates → dist/templates}/react/package.json +0 -0
- package/{templates → dist/templates}/react/postcss.config.js +0 -0
- package/{templates → dist/templates}/react/public/vercel.svg +0 -0
- package/{templates → dist/templates}/react/src/components/Card/index.css +0 -0
- package/{templates → dist/templates}/react/src/components/Card/index.tsx +0 -0
- package/{templates → dist/templates}/react/src/components/CardGrid/index.tsx +0 -0
- package/{templates → dist/templates}/react/src/components/Footer/index.tsx +0 -0
- package/{templates → dist/templates}/react/src/components/GetStarted/index.tsx +0 -0
- package/{templates → dist/templates}/react/src/components/Welcome/index.tsx +0 -0
- package/{templates → dist/templates}/react/src/components/index.css +0 -0
- package/{templates → dist/templates}/react/src/components/index.ts +0 -0
- package/{templates → dist/templates}/react/src/index.css +0 -0
- package/{templates → dist/templates}/react/src/index.ts +0 -0
- package/{templates → dist/templates}/react/src/pages/_app.tsx +0 -0
- package/{templates → dist/templates}/react/src/pages/api/hello.ts +0 -0
- package/{templates → dist/templates}/react/src/pages/index.tsx +0 -0
- package/{templates → dist/templates}/react/tailwind.config.js +0 -0
- package/dist/types/index.js +66 -1
- package/dist/utils/cwd.js +8 -1
- package/dist/utils/packageJson.js +4 -1
- package/dist/utils/programCatch.js +46 -1
- package/dist/utils/require.js +4 -1
- package/dist/utils/resolve.js +4 -1
- package/dist/utils/showProgress.js +12 -1
- package/dist/utils/stdin.js +12 -1
- package/package.json +10 -13
- package/dist/bin/index.js +0 -7
File without changes
|