├── .gitignore ├── .template ├── config.json ├── tsx-next-page │ ├── __ROOT_UP__.hooks.ts │ ├── __ROOT_UP__.styles.ts │ ├── __ROOT_UP__.types.ts │ └── index.page.tsx ├── tsx-styled-hooks │ ├── __ROOT_UP__.hooks.ts │ ├── __ROOT_UP__.styles.ts │ ├── __ROOT_UP__.types.ts │ └── index.tsx └── tsx-styled │ ├── __ROOT_UP__.styles.ts │ ├── __ROOT_UP__.types.ts │ └── index.tsx ├── CHANGELOG.md ├── LICENSE ├── README.ko.md ├── README.md ├── package.json ├── src ├── @types │ └── index.d.ts ├── assets │ └── images │ │ ├── banner.png │ │ └── example │ │ ├── example-results-folder-structure.png │ │ └── example-results.png ├── constants │ ├── common.ts │ └── questions.ts ├── index.ts ├── lib │ ├── doc.ts │ ├── generate.ts │ └── readTemplates.ts └── scripts │ └── build.js ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | build 4 | yarn-error.log 5 | 6 | # for test 7 | .yarn -------------------------------------------------------------------------------- /.template/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/.template/config.json -------------------------------------------------------------------------------- /.template/tsx-next-page/__ROOT_UP__.hooks.ts: -------------------------------------------------------------------------------- 1 | export const use__ROOT_UP__hooks = () => { 2 | return null; 3 | }; 4 | -------------------------------------------------------------------------------- /.template/tsx-next-page/__ROOT_UP__.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/.template/tsx-next-page/__ROOT_UP__.styles.ts -------------------------------------------------------------------------------- /.template/tsx-next-page/__ROOT_UP__.types.ts: -------------------------------------------------------------------------------- 1 | export interface __ROOT_UP__Props { 2 | dummy?: any; 3 | } 4 | -------------------------------------------------------------------------------- /.template/tsx-next-page/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/.template/tsx-next-page/index.page.tsx -------------------------------------------------------------------------------- /.template/tsx-styled-hooks/__ROOT_UP__.hooks.ts: -------------------------------------------------------------------------------- 1 | export const use__ROOT_UP__hooks = () => { 2 | return null; 3 | }; 4 | -------------------------------------------------------------------------------- /.template/tsx-styled-hooks/__ROOT_UP__.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/.template/tsx-styled-hooks/__ROOT_UP__.styles.ts -------------------------------------------------------------------------------- /.template/tsx-styled-hooks/__ROOT_UP__.types.ts: -------------------------------------------------------------------------------- 1 | export interface __ROOT_UP__Props { 2 | dummy?: any; 3 | } 4 | -------------------------------------------------------------------------------- /.template/tsx-styled-hooks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/.template/tsx-styled-hooks/index.tsx -------------------------------------------------------------------------------- /.template/tsx-styled/__ROOT_UP__.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/.template/tsx-styled/__ROOT_UP__.styles.ts -------------------------------------------------------------------------------- /.template/tsx-styled/__ROOT_UP__.types.ts: -------------------------------------------------------------------------------- 1 | export interface __ROOT_UP__Props { 2 | dummy?: any; 3 | } 4 | -------------------------------------------------------------------------------- /.template/tsx-styled/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/.template/tsx-styled/index.tsx -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/README.ko.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/package.json -------------------------------------------------------------------------------- /src/@types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/src/@types/index.d.ts -------------------------------------------------------------------------------- /src/assets/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/src/assets/images/banner.png -------------------------------------------------------------------------------- /src/assets/images/example/example-results-folder-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/src/assets/images/example/example-results-folder-structure.png -------------------------------------------------------------------------------- /src/assets/images/example/example-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/src/assets/images/example/example-results.png -------------------------------------------------------------------------------- /src/constants/common.ts: -------------------------------------------------------------------------------- 1 | export const TEMPLATE_PATH = "./.template"; 2 | -------------------------------------------------------------------------------- /src/constants/questions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/src/constants/questions.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/src/lib/doc.ts -------------------------------------------------------------------------------- /src/lib/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/src/lib/generate.ts -------------------------------------------------------------------------------- /src/lib/readTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/src/lib/readTemplates.ts -------------------------------------------------------------------------------- /src/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/src/scripts/build.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsoo-web/root-up/HEAD/yarn.lock --------------------------------------------------------------------------------