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.
Files changed (113) hide show
  1. package/README.md +1 -1
  2. package/dist/index.mjs +50 -50
  3. package/package.json +1 -1
  4. package/templates/template-react/eslint.config.mjs +35 -16
  5. package/templates/template-react/package.json +1 -1
  6. package/templates/template-react-tanstack-jotai/eslint.config.mjs +35 -16
  7. package/templates/template-react-tanstack-jotai/package.json +1 -1
  8. package/templates/template-react-tanstack-jotai-tailwindcss/.husky/commit-msg +6 -0
  9. package/templates/template-react-tanstack-jotai-tailwindcss/.husky/lintstagedrc.cjs +8 -0
  10. package/templates/template-react-tanstack-jotai-tailwindcss/.husky/pre-commit +10 -0
  11. package/templates/template-react-tanstack-jotai-tailwindcss/.prettierignore +13 -0
  12. package/templates/template-react-tanstack-jotai-tailwindcss/.vscode/extensions.json +5 -0
  13. package/templates/template-react-tanstack-jotai-tailwindcss/README.md +40 -0
  14. package/templates/template-react-tanstack-jotai-tailwindcss/_gitignore +27 -0
  15. package/templates/template-react-tanstack-jotai-tailwindcss/commitlint.config.mjs +28 -0
  16. package/templates/template-react-tanstack-jotai-tailwindcss/config/build/_base.ts +36 -0
  17. package/templates/template-react-tanstack-jotai-tailwindcss/config/build/development.ts +7 -0
  18. package/templates/template-react-tanstack-jotai-tailwindcss/config/build/production.ts +1 -0
  19. package/templates/template-react-tanstack-jotai-tailwindcss/config/build/test.ts +1 -0
  20. package/templates/template-react-tanstack-jotai-tailwindcss/env/.env +0 -0
  21. package/templates/template-react-tanstack-jotai-tailwindcss/env/.env.development +2 -0
  22. package/templates/template-react-tanstack-jotai-tailwindcss/env/.env.production +1 -0
  23. package/templates/template-react-tanstack-jotai-tailwindcss/eslint.config.mjs +63 -0
  24. package/templates/template-react-tanstack-jotai-tailwindcss/index.html +13 -0
  25. package/templates/template-react-tanstack-jotai-tailwindcss/package.json +50 -0
  26. package/templates/template-react-tanstack-jotai-tailwindcss/postcss.config.js +6 -0
  27. package/templates/template-react-tanstack-jotai-tailwindcss/prettier.config.mjs +11 -0
  28. package/templates/template-react-tanstack-jotai-tailwindcss/public/lic.svg +1263 -0
  29. package/templates/template-react-tanstack-jotai-tailwindcss/public/react.svg +1 -0
  30. package/templates/template-react-tanstack-jotai-tailwindcss/public/vite.svg +1 -0
  31. package/templates/template-react-tanstack-jotai-tailwindcss/src/assets/react.svg +1 -0
  32. package/templates/template-react-tanstack-jotai-tailwindcss/src/components/Lic/index.tsx +12 -0
  33. package/templates/template-react-tanstack-jotai-tailwindcss/src/main.tsx +21 -0
  34. package/templates/template-react-tanstack-jotai-tailwindcss/src/routeTree.gen.ts +145 -0
  35. package/templates/template-react-tanstack-jotai-tailwindcss/src/routes/__root.tsx +11 -0
  36. package/templates/template-react-tanstack-jotai-tailwindcss/src/routes/_layout/about.tsx +6 -0
  37. package/templates/template-react-tanstack-jotai-tailwindcss/src/routes/_layout/index.tsx +6 -0
  38. package/templates/template-react-tanstack-jotai-tailwindcss/src/routes/_layout.tsx +23 -0
  39. package/templates/template-react-tanstack-jotai-tailwindcss/src/store/index.ts +1 -0
  40. package/templates/template-react-tanstack-jotai-tailwindcss/src/store/module/favorite.ts +5 -0
  41. package/templates/template-react-tanstack-jotai-tailwindcss/src/styles/animation.css +8 -0
  42. package/templates/template-react-tanstack-jotai-tailwindcss/src/styles/main.css +11 -0
  43. package/templates/template-react-tanstack-jotai-tailwindcss/src/styles/tailwind.css +30 -0
  44. package/templates/template-react-tanstack-jotai-tailwindcss/src/styles/variable.css +21 -0
  45. package/templates/template-react-tanstack-jotai-tailwindcss/src/types/auto-imports.d.ts +33 -0
  46. package/templates/template-react-tanstack-jotai-tailwindcss/src/types/color.d.ts +1 -0
  47. package/templates/template-react-tanstack-jotai-tailwindcss/src/utils/rainbow-print.ts +10 -0
  48. package/templates/template-react-tanstack-jotai-tailwindcss/src/views/404/index.tsx +18 -0
  49. package/templates/template-react-tanstack-jotai-tailwindcss/src/views/About/index.tsx +7 -0
  50. package/templates/template-react-tanstack-jotai-tailwindcss/src/views/Index/Button/index.tsx +24 -0
  51. package/templates/template-react-tanstack-jotai-tailwindcss/src/views/Index/React/index.tsx +18 -0
  52. package/templates/template-react-tanstack-jotai-tailwindcss/src/views/Index/Vite/index.tsx +20 -0
  53. package/templates/template-react-tanstack-jotai-tailwindcss/src/views/Index/index.tsx +50 -0
  54. package/templates/template-react-tanstack-jotai-tailwindcss/tailwind.config.js +8 -0
  55. package/templates/template-react-tanstack-jotai-tailwindcss/tsconfig.app.json +36 -0
  56. package/templates/template-react-tanstack-jotai-tailwindcss/tsconfig.json +7 -0
  57. package/templates/template-react-tanstack-jotai-tailwindcss/tsconfig.node.json +24 -0
  58. package/templates/template-react-tanstack-jotai-tailwindcss/types/vite-env.d.ts +10 -0
  59. package/templates/template-react-tanstack-jotai-tailwindcss/vite.config.ts +15 -0
  60. package/templates/template-react18-tanstack-jotai-tailwindcss/.husky/commit-msg +6 -0
  61. package/templates/template-react18-tanstack-jotai-tailwindcss/.husky/lintstagedrc.cjs +8 -0
  62. package/templates/template-react18-tanstack-jotai-tailwindcss/.husky/pre-commit +10 -0
  63. package/templates/template-react18-tanstack-jotai-tailwindcss/.prettierignore +13 -0
  64. package/templates/template-react18-tanstack-jotai-tailwindcss/.vscode/extensions.json +5 -0
  65. package/templates/template-react18-tanstack-jotai-tailwindcss/README.md +40 -0
  66. package/templates/template-react18-tanstack-jotai-tailwindcss/_gitignore +27 -0
  67. package/templates/template-react18-tanstack-jotai-tailwindcss/commitlint.config.mjs +28 -0
  68. package/templates/template-react18-tanstack-jotai-tailwindcss/config/build/_base.ts +36 -0
  69. package/templates/template-react18-tanstack-jotai-tailwindcss/config/build/development.ts +7 -0
  70. package/templates/template-react18-tanstack-jotai-tailwindcss/config/build/production.ts +1 -0
  71. package/templates/template-react18-tanstack-jotai-tailwindcss/config/build/test.ts +1 -0
  72. package/templates/template-react18-tanstack-jotai-tailwindcss/env/.env +0 -0
  73. package/templates/template-react18-tanstack-jotai-tailwindcss/env/.env.development +2 -0
  74. package/templates/template-react18-tanstack-jotai-tailwindcss/env/.env.production +1 -0
  75. package/templates/template-react18-tanstack-jotai-tailwindcss/eslint.config.mjs +63 -0
  76. package/templates/template-react18-tanstack-jotai-tailwindcss/index.html +13 -0
  77. package/templates/template-react18-tanstack-jotai-tailwindcss/package.json +50 -0
  78. package/templates/template-react18-tanstack-jotai-tailwindcss/postcss.config.js +6 -0
  79. package/templates/template-react18-tanstack-jotai-tailwindcss/prettier.config.mjs +11 -0
  80. package/templates/template-react18-tanstack-jotai-tailwindcss/public/lic.svg +1263 -0
  81. package/templates/template-react18-tanstack-jotai-tailwindcss/public/react.svg +1 -0
  82. package/templates/template-react18-tanstack-jotai-tailwindcss/public/vite.svg +1 -0
  83. package/templates/template-react18-tanstack-jotai-tailwindcss/src/assets/react.svg +1 -0
  84. package/templates/template-react18-tanstack-jotai-tailwindcss/src/components/Lic/index.tsx +12 -0
  85. package/templates/template-react18-tanstack-jotai-tailwindcss/src/main.tsx +21 -0
  86. package/templates/template-react18-tanstack-jotai-tailwindcss/src/routeTree.gen.ts +145 -0
  87. package/templates/template-react18-tanstack-jotai-tailwindcss/src/routes/__root.tsx +11 -0
  88. package/templates/template-react18-tanstack-jotai-tailwindcss/src/routes/_layout/about.tsx +6 -0
  89. package/templates/template-react18-tanstack-jotai-tailwindcss/src/routes/_layout/index.tsx +6 -0
  90. package/templates/template-react18-tanstack-jotai-tailwindcss/src/routes/_layout.tsx +23 -0
  91. package/templates/template-react18-tanstack-jotai-tailwindcss/src/store/index.ts +1 -0
  92. package/templates/template-react18-tanstack-jotai-tailwindcss/src/store/module/favorite.ts +5 -0
  93. package/templates/template-react18-tanstack-jotai-tailwindcss/src/styles/animation.css +8 -0
  94. package/templates/template-react18-tanstack-jotai-tailwindcss/src/styles/main.css +11 -0
  95. package/templates/template-react18-tanstack-jotai-tailwindcss/src/styles/tailwind.css +30 -0
  96. package/templates/template-react18-tanstack-jotai-tailwindcss/src/styles/variable.css +21 -0
  97. package/templates/template-react18-tanstack-jotai-tailwindcss/src/types/auto-imports.d.ts +33 -0
  98. package/templates/template-react18-tanstack-jotai-tailwindcss/src/types/color.d.ts +1 -0
  99. package/templates/template-react18-tanstack-jotai-tailwindcss/src/utils/rainbow-print.ts +10 -0
  100. package/templates/template-react18-tanstack-jotai-tailwindcss/src/views/404/index.tsx +18 -0
  101. package/templates/template-react18-tanstack-jotai-tailwindcss/src/views/About/index.tsx +7 -0
  102. package/templates/template-react18-tanstack-jotai-tailwindcss/src/views/Index/Button/index.tsx +24 -0
  103. package/templates/template-react18-tanstack-jotai-tailwindcss/src/views/Index/React/index.tsx +18 -0
  104. package/templates/template-react18-tanstack-jotai-tailwindcss/src/views/Index/Vite/index.tsx +20 -0
  105. package/templates/template-react18-tanstack-jotai-tailwindcss/src/views/Index/index.tsx +50 -0
  106. package/templates/template-react18-tanstack-jotai-tailwindcss/tailwind.config.js +8 -0
  107. package/templates/template-react18-tanstack-jotai-tailwindcss/tsconfig.app.json +36 -0
  108. package/templates/template-react18-tanstack-jotai-tailwindcss/tsconfig.json +7 -0
  109. package/templates/template-react18-tanstack-jotai-tailwindcss/tsconfig.node.json +24 -0
  110. package/templates/template-react18-tanstack-jotai-tailwindcss/types/vite-env.d.ts +10 -0
  111. package/templates/template-react18-tanstack-jotai-tailwindcss/vite.config.ts +15 -0
  112. package/templates/template-vue/eslint.config.js +20 -1
  113. package/templates/template-vue/package.json +2 -2
package/README.md CHANGED
@@ -4,7 +4,7 @@ Create project with likcheung habbits
4
4
 
5
5
  <a href="https://www.licuii.xyz">
6
6
  <img
7
- src="http://cdn.licuii.xyz/self/lic-icon.png"
7
+ src="http://cdn.licuii.fun/self/lic-icon.png"
8
8
  alt="lic-logo"
9
9
  width="50"
10
10
  />