├── .eslintignore ├── .eslintrc.js ├── .github ├── assets │ ├── agents.png │ ├── logo.png │ ├── result-1.png │ ├── result-2.png │ ├── rule-example.png │ └── website-to-preview.png └── workflows │ └── nodejs.yml ├── .gitignore ├── README.md ├── bin ├── run └── run.cmd ├── package.json ├── src ├── index.ts └── utils │ ├── debug.ts │ ├── file.ts │ └── slugify.ts ├── templates ├── react-styled-components │ ├── .gitignore.template │ ├── README.md │ ├── components │ │ ├── elements.js │ │ ├── layers.js │ │ └── logo.js │ ├── flyyer.config.js │ ├── package.json │ ├── static │ │ ├── alternative.jpeg │ │ ├── background.jpeg │ │ └── logo.svg │ └── templates │ │ └── main.js ├── react-typescript-styled-components │ ├── .gitignore.template │ ├── README.md │ ├── components │ │ ├── elements.tsx │ │ ├── layers.tsx │ │ └── logo.tsx │ ├── flyyer.config.js │ ├── package.json │ ├── static │ │ ├── alternative.jpeg │ │ ├── background.jpeg │ │ └── logo.svg │ ├── templates │ │ └── main.tsx │ ├── tsconfig.json │ └── types.d.ts ├── react-typescript-tailwind │ ├── .gitignore.template │ ├── README.md │ ├── components │ │ └── layers.tsx │ ├── flyyer.config.js │ ├── package.json │ ├── postcss.config.js │ ├── static │ │ ├── alternative.jpeg │ │ ├── background.jpeg │ │ └── logo.svg │ ├── styles │ │ └── tailwind.css │ ├── tailwind.config.js │ ├── templates │ │ └── main.tsx │ ├── tsconfig.json │ └── types.d.ts ├── react │ ├── .gitignore.template │ ├── README.md │ ├── flyyer.config.js │ ├── package.json │ ├── static │ │ ├── alternative.jpeg │ │ ├── background.jpeg │ │ └── logo.svg │ ├── styles │ │ └── style.css │ └── templates │ │ └── main.js ├── vue-typescript │ ├── .gitignore │ ├── README.md │ ├── flyyer.config.js │ ├── package.json │ ├── static │ │ ├── alternative.jpeg │ │ ├── background.jpeg │ │ └── logo.svg │ ├── templates │ │ └── main.vue │ ├── tsconfig.json │ └── types.d.ts └── vue │ ├── .gitignore.template │ ├── README.md │ ├── flyyer.config.js │ ├── package.json │ ├── static │ ├── alternative.jpeg │ ├── background.jpeg │ └── logo.svg │ └── templates │ └── main.vue ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | !.eslintrc.js 2 | 3 | .vscode 4 | dist 5 | node_modules 6 | lib 7 | templates/* 8 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/assets/agents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/.github/assets/agents.png -------------------------------------------------------------------------------- /.github/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/.github/assets/logo.png -------------------------------------------------------------------------------- /.github/assets/result-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/.github/assets/result-1.png -------------------------------------------------------------------------------- /.github/assets/result-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/.github/assets/result-2.png -------------------------------------------------------------------------------- /.github/assets/rule-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/.github/assets/rule-example.png -------------------------------------------------------------------------------- /.github/assets/website-to-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/.github/assets/website-to-preview.png -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/README.md -------------------------------------------------------------------------------- /bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/bin/run -------------------------------------------------------------------------------- /bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/src/utils/debug.ts -------------------------------------------------------------------------------- /src/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/src/utils/file.ts -------------------------------------------------------------------------------- /src/utils/slugify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/src/utils/slugify.ts -------------------------------------------------------------------------------- /templates/react-styled-components/.gitignore.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-styled-components/.gitignore.template -------------------------------------------------------------------------------- /templates/react-styled-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-styled-components/README.md -------------------------------------------------------------------------------- /templates/react-styled-components/components/elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-styled-components/components/elements.js -------------------------------------------------------------------------------- /templates/react-styled-components/components/layers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-styled-components/components/layers.js -------------------------------------------------------------------------------- /templates/react-styled-components/components/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-styled-components/components/logo.js -------------------------------------------------------------------------------- /templates/react-styled-components/flyyer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-styled-components/flyyer.config.js -------------------------------------------------------------------------------- /templates/react-styled-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-styled-components/package.json -------------------------------------------------------------------------------- /templates/react-styled-components/static/alternative.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-styled-components/static/alternative.jpeg -------------------------------------------------------------------------------- /templates/react-styled-components/static/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-styled-components/static/background.jpeg -------------------------------------------------------------------------------- /templates/react-styled-components/static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-styled-components/static/logo.svg -------------------------------------------------------------------------------- /templates/react-styled-components/templates/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-styled-components/templates/main.js -------------------------------------------------------------------------------- /templates/react-typescript-styled-components/.gitignore.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-styled-components/.gitignore.template -------------------------------------------------------------------------------- /templates/react-typescript-styled-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-styled-components/README.md -------------------------------------------------------------------------------- /templates/react-typescript-styled-components/components/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-styled-components/components/elements.tsx -------------------------------------------------------------------------------- /templates/react-typescript-styled-components/components/layers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-styled-components/components/layers.tsx -------------------------------------------------------------------------------- /templates/react-typescript-styled-components/components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-styled-components/components/logo.tsx -------------------------------------------------------------------------------- /templates/react-typescript-styled-components/flyyer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-styled-components/flyyer.config.js -------------------------------------------------------------------------------- /templates/react-typescript-styled-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-styled-components/package.json -------------------------------------------------------------------------------- /templates/react-typescript-styled-components/static/alternative.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-styled-components/static/alternative.jpeg -------------------------------------------------------------------------------- /templates/react-typescript-styled-components/static/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-styled-components/static/background.jpeg -------------------------------------------------------------------------------- /templates/react-typescript-styled-components/static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-styled-components/static/logo.svg -------------------------------------------------------------------------------- /templates/react-typescript-styled-components/templates/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-styled-components/templates/main.tsx -------------------------------------------------------------------------------- /templates/react-typescript-styled-components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-styled-components/tsconfig.json -------------------------------------------------------------------------------- /templates/react-typescript-styled-components/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-styled-components/types.d.ts -------------------------------------------------------------------------------- /templates/react-typescript-tailwind/.gitignore.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-tailwind/.gitignore.template -------------------------------------------------------------------------------- /templates/react-typescript-tailwind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-tailwind/README.md -------------------------------------------------------------------------------- /templates/react-typescript-tailwind/components/layers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-tailwind/components/layers.tsx -------------------------------------------------------------------------------- /templates/react-typescript-tailwind/flyyer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-tailwind/flyyer.config.js -------------------------------------------------------------------------------- /templates/react-typescript-tailwind/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-tailwind/package.json -------------------------------------------------------------------------------- /templates/react-typescript-tailwind/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-tailwind/postcss.config.js -------------------------------------------------------------------------------- /templates/react-typescript-tailwind/static/alternative.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-tailwind/static/alternative.jpeg -------------------------------------------------------------------------------- /templates/react-typescript-tailwind/static/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-tailwind/static/background.jpeg -------------------------------------------------------------------------------- /templates/react-typescript-tailwind/static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-tailwind/static/logo.svg -------------------------------------------------------------------------------- /templates/react-typescript-tailwind/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-tailwind/styles/tailwind.css -------------------------------------------------------------------------------- /templates/react-typescript-tailwind/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-tailwind/tailwind.config.js -------------------------------------------------------------------------------- /templates/react-typescript-tailwind/templates/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-tailwind/templates/main.tsx -------------------------------------------------------------------------------- /templates/react-typescript-tailwind/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-tailwind/tsconfig.json -------------------------------------------------------------------------------- /templates/react-typescript-tailwind/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react-typescript-tailwind/types.d.ts -------------------------------------------------------------------------------- /templates/react/.gitignore.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react/.gitignore.template -------------------------------------------------------------------------------- /templates/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react/README.md -------------------------------------------------------------------------------- /templates/react/flyyer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react/flyyer.config.js -------------------------------------------------------------------------------- /templates/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react/package.json -------------------------------------------------------------------------------- /templates/react/static/alternative.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react/static/alternative.jpeg -------------------------------------------------------------------------------- /templates/react/static/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react/static/background.jpeg -------------------------------------------------------------------------------- /templates/react/static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react/static/logo.svg -------------------------------------------------------------------------------- /templates/react/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react/styles/style.css -------------------------------------------------------------------------------- /templates/react/templates/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/react/templates/main.js -------------------------------------------------------------------------------- /templates/vue-typescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/vue-typescript/.gitignore -------------------------------------------------------------------------------- /templates/vue-typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/vue-typescript/README.md -------------------------------------------------------------------------------- /templates/vue-typescript/flyyer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/vue-typescript/flyyer.config.js -------------------------------------------------------------------------------- /templates/vue-typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/vue-typescript/package.json -------------------------------------------------------------------------------- /templates/vue-typescript/static/alternative.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/vue-typescript/static/alternative.jpeg -------------------------------------------------------------------------------- /templates/vue-typescript/static/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/vue-typescript/static/background.jpeg -------------------------------------------------------------------------------- /templates/vue-typescript/static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/vue-typescript/static/logo.svg -------------------------------------------------------------------------------- /templates/vue-typescript/templates/main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/vue-typescript/templates/main.vue -------------------------------------------------------------------------------- /templates/vue-typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/vue-typescript/tsconfig.json -------------------------------------------------------------------------------- /templates/vue-typescript/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/vue-typescript/types.d.ts -------------------------------------------------------------------------------- /templates/vue/.gitignore.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/vue/.gitignore.template -------------------------------------------------------------------------------- /templates/vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/vue/README.md -------------------------------------------------------------------------------- /templates/vue/flyyer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/vue/flyyer.config.js -------------------------------------------------------------------------------- /templates/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/vue/package.json -------------------------------------------------------------------------------- /templates/vue/static/alternative.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/vue/static/alternative.jpeg -------------------------------------------------------------------------------- /templates/vue/static/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/vue/static/background.jpeg -------------------------------------------------------------------------------- /templates/vue/static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/vue/static/logo.svg -------------------------------------------------------------------------------- /templates/vue/templates/main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/templates/vue/templates/main.vue -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/create-flyyer-app/HEAD/yarn.lock --------------------------------------------------------------------------------