├── .babelrc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── __tests__ ├── netlifyToml.js └── packageJson.js ├── netlify-ts.gif ├── netlify-ts.png ├── package.json ├── src ├── index.ts ├── lib │ ├── dependencies.ts │ ├── questions.ts │ └── utils │ │ ├── command.ts │ │ ├── index.ts │ │ ├── shell.ts │ │ └── write.ts └── templates │ ├── babelrc.ts │ ├── gitignore.ts │ ├── handler.ts │ ├── netlifyToml.ts │ └── packageJson.ts ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | yarn-error.log 4 | test -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/netlifyToml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/__tests__/netlifyToml.js -------------------------------------------------------------------------------- /__tests__/packageJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/__tests__/packageJson.js -------------------------------------------------------------------------------- /netlify-ts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/netlify-ts.gif -------------------------------------------------------------------------------- /netlify-ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/netlify-ts.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/src/lib/dependencies.ts -------------------------------------------------------------------------------- /src/lib/questions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/src/lib/questions.ts -------------------------------------------------------------------------------- /src/lib/utils/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/src/lib/utils/command.ts -------------------------------------------------------------------------------- /src/lib/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/src/lib/utils/index.ts -------------------------------------------------------------------------------- /src/lib/utils/shell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/src/lib/utils/shell.ts -------------------------------------------------------------------------------- /src/lib/utils/write.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/src/lib/utils/write.ts -------------------------------------------------------------------------------- /src/templates/babelrc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/src/templates/babelrc.ts -------------------------------------------------------------------------------- /src/templates/gitignore.ts: -------------------------------------------------------------------------------- 1 | export default ` 2 | node_modules 3 | .netlify 4 | lambda 5 | ` 6 | -------------------------------------------------------------------------------- /src/templates/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/src/templates/handler.ts -------------------------------------------------------------------------------- /src/templates/netlifyToml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/src/templates/netlifyToml.ts -------------------------------------------------------------------------------- /src/templates/packageJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/src/templates/packageJson.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilafassina/create-netlify-ts/HEAD/yarn.lock --------------------------------------------------------------------------------