create-lik-app 1.2.3 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -1
- package/dist/index.mjs +50 -50
- package/package.json +1 -1
- package/templates/template-react/eslint.config.mjs +35 -16
- package/templates/template-react/package.json +1 -1
- package/templates/template-react-tanstack-jotai/eslint.config.mjs +35 -16
- package/templates/template-react-tanstack-jotai/package.json +1 -1
- package/templates/template-react-tanstack-jotai-tailwindcss/.husky/commit-msg +6 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/.husky/lintstagedrc.cjs +8 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/.husky/pre-commit +10 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/.prettierignore +13 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/.vscode/extensions.json +5 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/README.md +40 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/_gitignore +27 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/commitlint.config.mjs +28 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/config/build/_base.ts +36 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/config/build/development.ts +7 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/config/build/production.ts +1 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/config/build/test.ts +1 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/env/.env +0 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/env/.env.development +2 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/env/.env.production +1 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/eslint.config.mjs +63 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/index.html +13 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/package.json +50 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/postcss.config.js +6 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/prettier.config.mjs +11 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/public/lic.svg +1263 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/public/react.svg +1 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/public/vite.svg +1 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/assets/react.svg +1 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/components/Lic/index.tsx +12 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/main.tsx +21 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/routeTree.gen.ts +145 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/routes/__root.tsx +11 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/routes/_layout/about.tsx +6 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/routes/_layout/index.tsx +6 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/routes/_layout.tsx +23 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/store/index.ts +1 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/store/module/favorite.ts +5 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/styles/animation.css +8 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/styles/main.css +11 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/styles/tailwind.css +30 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/styles/variable.css +21 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/types/auto-imports.d.ts +33 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/types/color.d.ts +1 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/utils/rainbow-print.ts +10 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/views/404/index.tsx +18 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/views/About/index.tsx +7 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/views/Index/Button/index.tsx +24 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/views/Index/React/index.tsx +18 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/views/Index/Vite/index.tsx +20 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/src/views/Index/index.tsx +50 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/tailwind.config.js +8 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/tsconfig.app.json +36 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/tsconfig.json +7 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/tsconfig.node.json +24 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/types/vite-env.d.ts +10 -0
- package/templates/template-react-tanstack-jotai-tailwindcss/vite.config.ts +15 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/.husky/commit-msg +6 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/.husky/lintstagedrc.cjs +8 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/.husky/pre-commit +10 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/.prettierignore +13 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/.vscode/extensions.json +5 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/README.md +40 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/_gitignore +27 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/commitlint.config.mjs +28 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/config/build/_base.ts +36 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/config/build/development.ts +7 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/config/build/production.ts +1 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/config/build/test.ts +1 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/env/.env +0 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/env/.env.development +2 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/env/.env.production +1 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/eslint.config.mjs +63 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/index.html +13 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/package.json +50 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/postcss.config.js +6 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/prettier.config.mjs +11 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/public/lic.svg +1263 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/public/react.svg +1 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/public/vite.svg +1 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/assets/react.svg +1 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/components/Lic/index.tsx +12 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/main.tsx +21 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/routeTree.gen.ts +145 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/routes/__root.tsx +11 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/routes/_layout/about.tsx +6 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/routes/_layout/index.tsx +6 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/routes/_layout.tsx +23 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/store/index.ts +1 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/store/module/favorite.ts +5 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/styles/animation.css +8 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/styles/main.css +11 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/styles/tailwind.css +30 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/styles/variable.css +21 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/types/auto-imports.d.ts +33 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/types/color.d.ts +1 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/utils/rainbow-print.ts +10 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/views/404/index.tsx +18 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/views/About/index.tsx +7 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/views/Index/Button/index.tsx +24 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/views/Index/React/index.tsx +18 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/views/Index/Vite/index.tsx +20 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/src/views/Index/index.tsx +50 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/tailwind.config.js +8 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/tsconfig.app.json +36 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/tsconfig.json +7 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/tsconfig.node.json +24 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/types/vite-env.d.ts +10 -0
- package/templates/template-react18-tanstack-jotai-tailwindcss/vite.config.ts +15 -0
- package/templates/template-vue/eslint.config.js +20 -1
- package/templates/template-vue/package.json +2 -2