create-packer 1.34.4 → 1.34.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (458) hide show
  1. package/.gitignore +30 -30
  2. package/LICENSE +21 -21
  3. package/README.md +22 -22
  4. package/package.json +1 -1
  5. package/template/cli/.eslintrc +35 -35
  6. package/template/cli/.gitignore +29 -29
  7. package/template/cli/.prettierignore +6 -6
  8. package/template/cli/.prettierrc.js +20 -20
  9. package/template/cli/LICENSE +21 -21
  10. package/template/cli/README.md +13 -13
  11. package/template/cli/commitlint.config.cjs +1 -1
  12. package/template/cli/package.json +50 -50
  13. package/template/cli/pnpm-workspace.yaml +2 -2
  14. package/template/cli/src/createTemp.ts +63 -63
  15. package/template/cli/src/index.ts +5 -5
  16. package/template/cli/src/utils/index.ts +49 -49
  17. package/template/cli/template/template-1/index.ts +1 -1
  18. package/template/cli/tsconfig.json +20 -20
  19. package/template/cli/utils/pub.js +43 -43
  20. package/template/docusaurus/.gitignore +35 -35
  21. package/template/docusaurus/README.md +41 -41
  22. package/template/docusaurus/babel.config.js +3 -3
  23. package/template/docusaurus/blog/2019-05-28-first-blog-post.md +12 -12
  24. package/template/docusaurus/blog/2019-05-29-long-blog-post.md +44 -44
  25. package/template/docusaurus/blog/2021-08-01-mdx-blog-post.mdx +20 -20
  26. package/template/docusaurus/blog/2021-08-26-welcome/index.md +25 -25
  27. package/template/docusaurus/blog/authors.yml +17 -17
  28. package/template/docusaurus/docs/intro.mdx +47 -47
  29. package/template/docusaurus/docs/tutorial-basics/_category_.json +8 -8
  30. package/template/docusaurus/docs/tutorial-basics/congratulations.md +23 -23
  31. package/template/docusaurus/docs/tutorial-basics/create-a-blog-post.md +34 -34
  32. package/template/docusaurus/docs/tutorial-basics/create-a-document.md +57 -57
  33. package/template/docusaurus/docs/tutorial-basics/create-a-page.md +43 -43
  34. package/template/docusaurus/docs/tutorial-basics/deploy-your-site.md +31 -31
  35. package/template/docusaurus/docs/tutorial-basics/markdown-features.mdx +150 -150
  36. package/template/docusaurus/docs/tutorial-extras/_category_.json +7 -7
  37. package/template/docusaurus/docs/tutorial-extras/manage-docs-versions.md +55 -55
  38. package/template/docusaurus/docs/tutorial-extras/translate-your-site.md +88 -88
  39. package/template/docusaurus/docusaurus.config.js +116 -116
  40. package/template/docusaurus/package.json +52 -52
  41. package/template/docusaurus/sidebars.js +19 -19
  42. package/template/docusaurus/src/components/HomepageFeatures/index.tsx +70 -70
  43. package/template/docusaurus/src/components/HomepageFeatures/styles.module.css +11 -11
  44. package/template/docusaurus/src/css/custom.css +30 -30
  45. package/template/docusaurus/src/pages/index.module.css +23 -23
  46. package/template/docusaurus/src/pages/index.tsx +40 -40
  47. package/template/docusaurus/src/pages/markdown-page.md +7 -7
  48. package/template/docusaurus/static/img/undraw_docusaurus_mountain.svg +171 -171
  49. package/template/docusaurus/static/img/undraw_docusaurus_react.svg +170 -170
  50. package/template/docusaurus/static/img/undraw_docusaurus_tree.svg +40 -40
  51. package/template/docusaurus/tsconfig.json +7 -7
  52. package/template/lib/react/node_modules/.bin/acorn +17 -0
  53. package/template/lib/react/node_modules/.bin/acorn.CMD +12 -0
  54. package/template/lib/react/node_modules/.bin/acorn.ps1 +41 -0
  55. package/template/lib/react/node_modules/.bin/browserslist +17 -0
  56. package/template/lib/react/node_modules/.bin/browserslist.CMD +12 -0
  57. package/template/lib/react/node_modules/.bin/browserslist.ps1 +41 -0
  58. package/template/lib/react/node_modules/.bin/esbuild +17 -0
  59. package/template/lib/react/node_modules/.bin/esbuild.CMD +12 -0
  60. package/template/lib/react/node_modules/.bin/esbuild.ps1 +41 -0
  61. package/template/lib/react/node_modules/.bin/eslint +17 -0
  62. package/template/lib/react/node_modules/.bin/eslint.CMD +12 -0
  63. package/template/lib/react/node_modules/.bin/eslint.ps1 +41 -0
  64. package/template/lib/react/node_modules/.bin/prettier +17 -0
  65. package/template/lib/react/node_modules/.bin/prettier.CMD +12 -0
  66. package/template/lib/react/node_modules/.bin/prettier.ps1 +41 -0
  67. package/template/lib/react/node_modules/.bin/sb +17 -0
  68. package/template/lib/react/node_modules/.bin/sb.CMD +12 -0
  69. package/template/lib/react/node_modules/.bin/sb.ps1 +41 -0
  70. package/template/lib/react/node_modules/.bin/storybook +17 -0
  71. package/template/lib/react/node_modules/.bin/storybook.CMD +12 -0
  72. package/template/lib/react/node_modules/.bin/storybook.ps1 +41 -0
  73. package/template/lib/react/node_modules/.bin/stylelint +17 -0
  74. package/template/lib/react/node_modules/.bin/stylelint.CMD +12 -0
  75. package/template/lib/react/node_modules/.bin/stylelint.ps1 +41 -0
  76. package/template/lib/react/node_modules/.bin/tsc +17 -0
  77. package/template/lib/react/node_modules/.bin/tsc.CMD +12 -0
  78. package/template/lib/react/node_modules/.bin/tsc.ps1 +41 -0
  79. package/template/lib/react/node_modules/.bin/tsserver +17 -0
  80. package/template/lib/react/node_modules/.bin/tsserver.CMD +12 -0
  81. package/template/lib/react/node_modules/.bin/tsserver.ps1 +41 -0
  82. package/template/lib/react/node_modules/.bin/vite +17 -0
  83. package/template/lib/react/node_modules/.bin/vite.CMD +12 -0
  84. package/template/lib/react/node_modules/.bin/vite.ps1 +41 -0
  85. package/template/lib/ts/node_modules/.bin/acorn +17 -0
  86. package/template/lib/ts/node_modules/.bin/acorn.CMD +12 -0
  87. package/template/lib/ts/node_modules/.bin/acorn.ps1 +41 -0
  88. package/template/lib/ts/node_modules/.bin/eslint +17 -0
  89. package/template/lib/ts/node_modules/.bin/eslint.CMD +12 -0
  90. package/template/lib/ts/node_modules/.bin/eslint.ps1 +41 -0
  91. package/template/lib/ts/node_modules/.bin/prettier +17 -0
  92. package/template/lib/ts/node_modules/.bin/prettier.CMD +12 -0
  93. package/template/lib/ts/node_modules/.bin/prettier.ps1 +41 -0
  94. package/template/lib/ts/node_modules/.bin/stylelint +17 -0
  95. package/template/lib/ts/node_modules/.bin/stylelint.CMD +12 -0
  96. package/template/lib/ts/node_modules/.bin/stylelint.ps1 +41 -0
  97. package/template/lib/ts/node_modules/.bin/tsc +17 -0
  98. package/template/lib/ts/node_modules/.bin/tsc.CMD +12 -0
  99. package/template/lib/ts/node_modules/.bin/tsc.ps1 +41 -0
  100. package/template/lib/ts/node_modules/.bin/tsserver +17 -0
  101. package/template/lib/ts/node_modules/.bin/tsserver.CMD +12 -0
  102. package/template/lib/ts/node_modules/.bin/tsserver.ps1 +41 -0
  103. package/template/lib/ts/node_modules/.bin/vitest +17 -0
  104. package/template/lib/ts/node_modules/.bin/vitest.CMD +12 -0
  105. package/template/lib/ts/node_modules/.bin/vitest.ps1 +41 -0
  106. package/template/lib/workspace/.changeset/README.md +8 -8
  107. package/template/lib/workspace/.changeset/config.json +11 -11
  108. package/template/lib/workspace/.editorconfig +13 -13
  109. package/template/lib/workspace/.eslintrc +118 -118
  110. package/template/lib/workspace/.gitignore +36 -36
  111. package/template/lib/workspace/.prettierignore +4 -4
  112. package/template/lib/workspace/.prettierrc +18 -18
  113. package/template/lib/workspace/.storybook/main.ts +32 -32
  114. package/template/lib/workspace/.storybook/preview.tsx +17 -17
  115. package/template/lib/workspace/.stylelintrc +29 -29
  116. package/template/lib/workspace/commitlint.config.cjs +1 -1
  117. package/template/lib/workspace/package.json +73 -73
  118. package/template/lib/workspace/packages/react/.editorconfig +13 -13
  119. package/template/lib/workspace/packages/react/.eslintrc +118 -118
  120. package/template/lib/workspace/packages/react/.gitignore +26 -26
  121. package/template/lib/workspace/packages/react/.prettierignore +4 -4
  122. package/template/lib/workspace/packages/react/.prettierrc +18 -18
  123. package/template/lib/workspace/packages/react/.stylelintrc +29 -29
  124. package/template/lib/workspace/packages/react/global.d.ts +18 -18
  125. package/template/lib/workspace/packages/react/package.json +42 -42
  126. package/template/lib/workspace/packages/react/src/Introduction.mdx +3 -3
  127. package/template/lib/workspace/packages/react/src/button/button.css +30 -30
  128. package/template/lib/workspace/packages/react/src/button/button.stories.ts +43 -43
  129. package/template/lib/workspace/packages/react/src/button/button.tsx +50 -50
  130. package/template/lib/workspace/packages/react/src/button/index.ts +1 -1
  131. package/template/lib/workspace/packages/react/src/index.ts +1 -1
  132. package/template/lib/workspace/packages/react/tsconfig.json +29 -29
  133. package/template/lib/workspace/packages/ts/.eslintrc +79 -79
  134. package/template/lib/workspace/packages/ts/.gitignore +25 -25
  135. package/template/lib/workspace/packages/ts/.prettierrc +12 -12
  136. package/template/lib/workspace/packages/ts/package.json +30 -30
  137. package/template/lib/workspace/packages/ts/src/index.ts +1 -1
  138. package/template/lib/workspace/packages/ts/src/sum.test.ts +6 -6
  139. package/template/lib/workspace/packages/ts/src/sum.ts +3 -3
  140. package/template/lib/workspace/packages/ts/tsconfig.json +24 -24
  141. package/template/lib/workspace/packages/ts/vite.config.ts +5 -5
  142. package/template/lib/workspace/pnpm-workspace.yaml +2 -2
  143. package/template/lib/workspace/postcss.config.cjs +7 -7
  144. package/template/lib/workspace/scripts/build.ts +22 -22
  145. package/template/lib/workspace/tsconfig.json +34 -34
  146. package/template/lib/workspace/tsconfig.node.json +22 -22
  147. package/template/nest/.eslintrc.js +25 -25
  148. package/template/nest/.gitignore +34 -34
  149. package/template/nest/.husky/pre-commit +4 -4
  150. package/template/nest/.prettierrc +6 -6
  151. package/template/nest/README.md +73 -73
  152. package/template/nest/nest-cli.json +5 -5
  153. package/template/nest/package.json +84 -84
  154. package/template/nest/src/app.controller.spec.ts +22 -22
  155. package/template/nest/src/app.controller.ts +12 -12
  156. package/template/nest/src/app.module.ts +10 -10
  157. package/template/nest/src/app.service.ts +8 -8
  158. package/template/nest/src/main.ts +10 -10
  159. package/template/nest/src/utils/transform.interceptor.ts +26 -26
  160. package/template/nest/test/app.e2e-spec.ts +24 -24
  161. package/template/nest/test/jest-e2e.json +9 -9
  162. package/template/nest/tsconfig.build.json +5 -5
  163. package/template/nest/tsconfig.json +21 -21
  164. package/template/web-app/next/.eslintrc.json +8 -8
  165. package/template/web-app/next/.gitignore +36 -36
  166. package/template/web-app/next/.husky/commit-msg +4 -4
  167. package/template/web-app/next/.husky/pre-commit +4 -4
  168. package/template/web-app/next/.stylelintrc +29 -29
  169. package/template/web-app/next/README.md +34 -34
  170. package/template/web-app/next/app/globals.css +22 -22
  171. package/template/web-app/next/app/layout.tsx +18 -18
  172. package/template/web-app/next/app/page.tsx +113 -113
  173. package/template/web-app/next/commitlint.config.cjs +1 -1
  174. package/template/web-app/next/next-env.d.ts +5 -5
  175. package/template/web-app/next/next.config.js +5 -5
  176. package/template/web-app/next/package.json +47 -47
  177. package/template/web-app/next/postcss.config.js +6 -6
  178. package/template/web-app/next/tailwind.config.js +20 -20
  179. package/template/web-app/next/tsconfig.json +21 -21
  180. package/template/web-app/react/.env +2 -2
  181. package/template/web-app/react/.env.development +2 -2
  182. package/template/web-app/react/.eslintignore +4 -4
  183. package/template/web-app/react/.eslintrc +118 -118
  184. package/template/web-app/react/.gitignore +28 -28
  185. package/template/web-app/react/.husky/commit-msg +4 -4
  186. package/template/web-app/react/.husky/pre-commit +4 -4
  187. package/template/web-app/react/.prettierignore +6 -6
  188. package/template/web-app/react/.stylelintignore +4 -4
  189. package/template/web-app/react/.stylelintrc +25 -25
  190. package/template/web-app/react/.vscode/settings.json +17 -17
  191. package/template/web-app/react/README.md +14 -14
  192. package/template/web-app/react/commitlint.config.cjs +1 -1
  193. package/template/web-app/react/domain/app/app.model.ts +7 -7
  194. package/template/web-app/react/domain/app/app.styled.ts +3 -3
  195. package/template/web-app/react/domain/app/components/app-context.tsx +17 -17
  196. package/template/web-app/react/domain/app/components/app.tsx +24 -24
  197. package/template/web-app/react/domain/app/components/index.ts +1 -1
  198. package/template/web-app/react/domain/app/index.ts +2 -2
  199. package/template/web-app/react/domain/router/home/ids.ts +3 -3
  200. package/template/web-app/react/domain/router/home/index.ts +2 -2
  201. package/template/web-app/react/domain/router/home/routes.tsx +13 -13
  202. package/template/web-app/react/domain/router/ids.ts +6 -6
  203. package/template/web-app/react/domain/router/index.ts +3 -3
  204. package/template/web-app/react/domain/router/router.tsx +28 -28
  205. package/template/web-app/react/domain/router/router.types.ts +3 -3
  206. package/template/web-app/react/index.html +13 -13
  207. package/template/web-app/react/main.tsx +4 -4
  208. package/template/web-app/react/mockUtils.ts +6 -6
  209. package/template/web-app/react/package.json +81 -81
  210. package/template/web-app/react/pages/home/home.mock.ts +19 -19
  211. package/template/web-app/react/pages/home/home.styled.ts +7 -7
  212. package/template/web-app/react/pages/home/home.tsx +10 -10
  213. package/template/web-app/react/pages/home/index.ts +1 -1
  214. package/template/web-app/react/pages/index.tsx +18 -18
  215. package/template/web-app/react/pages/not-found.tsx +3 -3
  216. package/template/web-app/react/postcss.config.cjs +7 -7
  217. package/template/web-app/react/scripts/createChunks.ts +26 -26
  218. package/template/web-app/react/scripts/index.ts +1 -1
  219. package/template/web-app/react/shared/hooks/defineRouter/defineRouter.types.ts +33 -33
  220. package/template/web-app/react/shared/hooks/defineRouter/index.ts +2 -2
  221. package/template/web-app/react/shared/hooks/index.ts +6 -6
  222. package/template/web-app/react/shared/hooks/useInterval.ts +26 -26
  223. package/template/web-app/react/shared/hooks/useLoadingAction.ts +27 -27
  224. package/template/web-app/react/shared/hooks/useLowPriorityState.ts +26 -26
  225. package/template/web-app/react/shared/hooks/useSyncState.ts +15 -15
  226. package/template/web-app/react/shared/hooks/useVisible.ts +27 -27
  227. package/template/web-app/react/shared/service/api.ts +1 -1
  228. package/template/web-app/react/shared/service/home.ts +10 -10
  229. package/template/web-app/react/shared/service/index.ts +3 -3
  230. package/template/web-app/react/shared/service/request.ts +5 -5
  231. package/template/web-app/react/shared/theme/index.ts +1 -1
  232. package/template/web-app/react/shared/theme/theme.styled.ts +56 -56
  233. package/template/web-app/react/shared/tools/componentInstance.tsx +80 -80
  234. package/template/web-app/react/shared/tools/index.ts +1 -1
  235. package/template/web-app/react/shared/types/index.ts +1 -1
  236. package/template/web-app/react/shared/types/utils.ts +2 -2
  237. package/template/web-app/react/tsconfig.json +43 -43
  238. package/template/web-app/react/tsconfig.node.json +10 -10
  239. package/template/web-app/react/vite-env.d.ts +18 -18
  240. package/template/web-app/react/vite.config.ts +76 -76
  241. package/template/web-app/react-webpack/.editorconfig +13 -13
  242. package/template/web-app/react-webpack/.env +2 -2
  243. package/template/web-app/react-webpack/.env.dev +2 -2
  244. package/template/web-app/react-webpack/.eslintignore +4 -4
  245. package/template/web-app/react-webpack/.eslintrc +118 -118
  246. package/template/web-app/react-webpack/.gitignore +27 -27
  247. package/template/web-app/react-webpack/.husky/commit-msg +4 -4
  248. package/template/web-app/react-webpack/.husky/pre-commit +4 -4
  249. package/template/web-app/react-webpack/.prettierignore +6 -6
  250. package/template/web-app/react-webpack/.stylelintignore +4 -4
  251. package/template/web-app/react-webpack/.stylelintrc +25 -25
  252. package/template/web-app/react-webpack/.vscode/settings.json +17 -17
  253. package/template/web-app/react-webpack/README.md +13 -13
  254. package/template/web-app/react-webpack/commitlint.config.js +1 -1
  255. package/template/web-app/react-webpack/domain/app/app.model.ts +7 -7
  256. package/template/web-app/react-webpack/domain/app/app.styled.ts +3 -3
  257. package/template/web-app/react-webpack/domain/app/components/app-context.tsx +17 -17
  258. package/template/web-app/react-webpack/domain/app/components/app.tsx +24 -24
  259. package/template/web-app/react-webpack/domain/app/components/index.ts +1 -1
  260. package/template/web-app/react-webpack/domain/app/index.ts +2 -2
  261. package/template/web-app/react-webpack/domain/router/home/ids.ts +3 -3
  262. package/template/web-app/react-webpack/domain/router/home/index.ts +2 -2
  263. package/template/web-app/react-webpack/domain/router/home/routes.tsx +13 -13
  264. package/template/web-app/react-webpack/domain/router/ids.ts +6 -6
  265. package/template/web-app/react-webpack/domain/router/index.ts +3 -3
  266. package/template/web-app/react-webpack/domain/router/router.tsx +28 -28
  267. package/template/web-app/react-webpack/domain/router/router.types.ts +3 -3
  268. package/template/web-app/react-webpack/global.d.ts +26 -26
  269. package/template/web-app/react-webpack/index.css +3 -3
  270. package/template/web-app/react-webpack/index.html +12 -12
  271. package/template/web-app/react-webpack/main.tsx +4 -4
  272. package/template/web-app/react-webpack/package.json +88 -88
  273. package/template/web-app/react-webpack/pages/home/home.styled.ts +7 -7
  274. package/template/web-app/react-webpack/pages/home/home.tsx +10 -10
  275. package/template/web-app/react-webpack/pages/home/index.ts +1 -1
  276. package/template/web-app/react-webpack/pages/index.tsx +18 -18
  277. package/template/web-app/react-webpack/pages/not-found.tsx +3 -3
  278. package/template/web-app/react-webpack/postcss.config.js +7 -7
  279. package/template/web-app/react-webpack/shared/hooks/defineRouter/defineRouter.types.ts +33 -33
  280. package/template/web-app/react-webpack/shared/hooks/defineRouter/index.ts +2 -2
  281. package/template/web-app/react-webpack/shared/hooks/index.ts +6 -6
  282. package/template/web-app/react-webpack/shared/hooks/useInterval.ts +26 -26
  283. package/template/web-app/react-webpack/shared/hooks/useLoadingAction.ts +27 -27
  284. package/template/web-app/react-webpack/shared/hooks/useLowPriorityState.ts +26 -26
  285. package/template/web-app/react-webpack/shared/hooks/useSyncState.ts +15 -15
  286. package/template/web-app/react-webpack/shared/hooks/useVisible.ts +27 -27
  287. package/template/web-app/react-webpack/shared/service/home.ts +8 -8
  288. package/template/web-app/react-webpack/shared/service/index.ts +2 -2
  289. package/template/web-app/react-webpack/shared/service/request.ts +5 -5
  290. package/template/web-app/react-webpack/shared/theme/index.ts +1 -1
  291. package/template/web-app/react-webpack/shared/theme/theme.styled.ts +56 -56
  292. package/template/web-app/react-webpack/shared/tools/componentInstance.tsx +78 -78
  293. package/template/web-app/react-webpack/shared/tools/index.ts +1 -1
  294. package/template/web-app/react-webpack/shared/types/index.ts +1 -1
  295. package/template/web-app/react-webpack/shared/types/utils.ts +2 -2
  296. package/template/web-app/react-webpack/tsconfig.json +37 -37
  297. package/template/web-app/react-webpack/tsconfig.node.json +9 -9
  298. package/template/web-app/react-webpack/webpack.config.mjs +162 -162
  299. package/template/web-app/react-webpack/webpack_config/constant.mjs +5 -5
  300. package/template/web-app/solid/.gitignore +1 -1
  301. package/template/web-app/solid/.stylelintrc +29 -29
  302. package/template/web-app/solid/README.md +34 -34
  303. package/template/web-app/solid/index.html +16 -16
  304. package/template/web-app/solid/package.json +51 -51
  305. package/template/web-app/solid/src/app.container.tsx +12 -12
  306. package/template/web-app/solid/src/index.css +15 -15
  307. package/template/web-app/solid/src/index.tsx +15 -15
  308. package/template/web-app/solid/src/layout/index.ts +1 -1
  309. package/template/web-app/solid/src/layout/layout.container.tsx +5 -5
  310. package/template/web-app/solid/src/pages/home/home.container.tsx +5 -5
  311. package/template/web-app/solid/src/pages/home/index.ts +1 -1
  312. package/template/web-app/solid/src/pages/notFound/index.ts +1 -1
  313. package/template/web-app/solid/src/pages/notFound/notFound.container.tsx +3 -3
  314. package/template/web-app/solid/src/router/home/index.ts +2 -2
  315. package/template/web-app/solid/src/router/home/paths.ts +3 -3
  316. package/template/web-app/solid/src/router/home/routes.tsx +12 -12
  317. package/template/web-app/solid/src/router/index.ts +2 -2
  318. package/template/web-app/solid/src/router/paths.ts +5 -5
  319. package/template/web-app/solid/src/router/routes.ts +16 -16
  320. package/template/web-app/solid/tsconfig.json +20 -20
  321. package/template/web-app/solid/vite.config.ts +23 -23
  322. package/template/web-app/svelte/.env +2 -2
  323. package/template/web-app/svelte/.env.development +2 -2
  324. package/template/web-app/svelte/.eslintignore +13 -13
  325. package/template/web-app/svelte/.eslintrc +76 -76
  326. package/template/web-app/svelte/.gitignore +27 -27
  327. package/template/web-app/svelte/.husky/commit-msg +4 -4
  328. package/template/web-app/svelte/.husky/pre-commit +4 -4
  329. package/template/web-app/svelte/.prettierignore +6 -6
  330. package/template/web-app/svelte/.prettierrc +14 -14
  331. package/template/web-app/svelte/.svelte-kit/ambient.d.ts +153 -153
  332. package/template/web-app/svelte/.svelte-kit/generated/client/app.js +18 -18
  333. package/template/web-app/svelte/.svelte-kit/generated/root.svelte +55 -55
  334. package/template/web-app/svelte/.svelte-kit/generated/server/internal.js +30 -30
  335. package/template/web-app/svelte/.svelte-kit/tsconfig.json +38 -38
  336. package/template/web-app/svelte/.svelte-kit/types/route_meta_data.json +2 -2
  337. package/template/web-app/svelte/.svelte-kit/types/src/routes/$types.d.ts +19 -19
  338. package/template/web-app/svelte/README.md +38 -38
  339. package/template/web-app/svelte/commitlint.config.cjs +1 -1
  340. package/template/web-app/svelte/package.json +55 -55
  341. package/template/web-app/svelte/scripts/createChunks.ts +26 -26
  342. package/template/web-app/svelte/scripts/index.ts +1 -1
  343. package/template/web-app/svelte/src/app.d.ts +12 -12
  344. package/template/web-app/svelte/src/app.html +12 -12
  345. package/template/web-app/svelte/src/routes/+page.svelte +2 -2
  346. package/template/web-app/svelte/svelte.config.js +17 -17
  347. package/template/web-app/svelte/tsconfig.json +21 -21
  348. package/template/web-app/svelte/vite-env.d.ts +11 -11
  349. package/template/web-app/svelte/vite.config.ts +55 -55
  350. package/template/web-app/vue/.env +2 -2
  351. package/template/web-app/vue/.env.development +2 -2
  352. package/template/web-app/vue/.eslintignore +4 -4
  353. package/template/web-app/vue/.eslintrc +104 -104
  354. package/template/web-app/vue/.gitignore +27 -27
  355. package/template/web-app/vue/.prettierignore +6 -6
  356. package/template/web-app/vue/.stylelintignore +4 -4
  357. package/template/web-app/vue/.stylelintrc +29 -29
  358. package/template/web-app/vue/README.md +14 -14
  359. package/template/web-app/vue/domain/app/app.ts +4 -4
  360. package/template/web-app/vue/domain/app/components/app.vue +18 -18
  361. package/template/web-app/vue/domain/app/components/index.ts +1 -1
  362. package/template/web-app/vue/domain/app/createComponentInstance.ts +44 -44
  363. package/template/web-app/vue/main.ts +7 -7
  364. package/template/web-app/vue/mockUtils.ts +6 -6
  365. package/template/web-app/vue/pages/home/home.mock.ts +19 -19
  366. package/template/web-app/vue/pages/home/home.vue +16 -16
  367. package/template/web-app/vue/pages/home/index.ts +1 -1
  368. package/template/web-app/vue/pages/index.ts +1 -1
  369. package/template/web-app/vue/pages/index.vue +3 -3
  370. package/template/web-app/vue/pages/not-found.vue +3 -3
  371. package/template/web-app/vue/router/home/index.ts +2 -2
  372. package/template/web-app/vue/router/home/names.ts +3 -3
  373. package/template/web-app/vue/router/home/routes.ts +8 -8
  374. package/template/web-app/vue/router/index.ts +26 -26
  375. package/template/web-app/vue/router/names.ts +5 -5
  376. package/template/web-app/vue/scripts/createChunks.ts +26 -26
  377. package/template/web-app/vue/scripts/index.ts +1 -1
  378. package/template/web-app/vue/shared/hooks/index.ts +2 -2
  379. package/template/web-app/vue/shared/hooks/useList.ts +104 -104
  380. package/template/web-app/vue/shared/hooks/useVisible.ts +27 -27
  381. package/template/web-app/vue/shared/service/api.ts +1 -1
  382. package/template/web-app/vue/shared/service/home.ts +10 -10
  383. package/template/web-app/vue/shared/service/index.ts +3 -3
  384. package/template/web-app/vue/shared/service/request.ts +5 -5
  385. package/template/web-app/vue/style.css +3 -3
  386. package/template/web-app/vue/tailwind.config.cjs +18 -18
  387. package/template/web-app/vue/tsconfig.json +24 -24
  388. package/template/web-app/vue/vite-env.d.ts +18 -18
  389. package/template/web-app/vue/vite.config.ts +65 -65
  390. package/template/web-extension/.env +2 -2
  391. package/template/web-extension/.env.development +1 -1
  392. package/template/web-extension/.eslintignore +4 -4
  393. package/template/web-extension/.eslintrc +119 -119
  394. package/template/web-extension/.gitignore +27 -27
  395. package/template/web-extension/.husky/commit-msg +4 -4
  396. package/template/web-extension/.husky/pre-commit +4 -4
  397. package/template/web-extension/.prettierignore +6 -6
  398. package/template/web-extension/.stylelintignore +4 -4
  399. package/template/web-extension/.stylelintrc +25 -25
  400. package/template/web-extension/.vscode/extensions.json +7 -7
  401. package/template/web-extension/.vscode/settings.json +17 -17
  402. package/template/web-extension/README.md +13 -13
  403. package/template/web-extension/commitlint.config.cjs +1 -1
  404. package/template/web-extension/content_script/constants/base.ts +1 -1
  405. package/template/web-extension/content_script/constants/index.ts +1 -1
  406. package/template/web-extension/content_script/domain/app/index.ts +1 -1
  407. package/template/web-extension/content_script/domain/app/tools/index.ts +1 -1
  408. package/template/web-extension/content_script/domain/app/tools/insertApp.tsx +55 -55
  409. package/template/web-extension/content_script/index.tsx +3 -3
  410. package/template/web-extension/content_script/modules/common/common.tsx +10 -10
  411. package/template/web-extension/content_script/modules/common/index.ts +2 -2
  412. package/template/web-extension/content_script/modules/common/insert.tsx +9 -9
  413. package/template/web-extension/content_script/modules/index.ts +1 -1
  414. package/template/web-extension/defineManifest.ts +32 -32
  415. package/template/web-extension/package.json +79 -79
  416. package/template/web-extension/pnpm-lock.yaml +6220 -6220
  417. package/template/web-extension/popup/index.tsx +14 -14
  418. package/template/web-extension/popup/popup.container.tsx +3 -3
  419. package/template/web-extension/popup/popup.html +13 -13
  420. package/template/web-extension/postcss.config.cjs +7 -7
  421. package/template/web-extension/shared/background/index.ts +1 -1
  422. package/template/web-extension/shared/background/message.ts +11 -11
  423. package/template/web-extension/shared/components/app-context.tsx +14 -14
  424. package/template/web-extension/shared/components/index.ts +1 -1
  425. package/template/web-extension/shared/content/index.ts +1 -1
  426. package/template/web-extension/shared/content/message.ts +15 -15
  427. package/template/web-extension/shared/hooks/index.ts +2 -2
  428. package/template/web-extension/shared/hooks/useSyncState.ts +15 -15
  429. package/template/web-extension/shared/hooks/useVisible.ts +27 -27
  430. package/template/web-extension/shared/popup/index.ts +1 -1
  431. package/template/web-extension/shared/popup/message.ts +12 -12
  432. package/template/web-extension/shared/service/index.ts +1 -1
  433. package/template/web-extension/shared/service/request.ts +5 -5
  434. package/template/web-extension/shared/styles/global.styled.ts +8 -8
  435. package/template/web-extension/shared/styles/index.ts +2 -2
  436. package/template/web-extension/shared/styles/theme.styled.ts +56 -56
  437. package/template/web-extension/shared/tools/index.ts +1 -1
  438. package/template/web-extension/shared/tools/message.ts +80 -80
  439. package/template/web-extension/shared/types/index.ts +1 -1
  440. package/template/web-extension/shared/types/utils.ts +3 -3
  441. package/template/web-extension/tsconfig.json +44 -44
  442. package/template/web-extension/tsconfig.node.json +10 -10
  443. package/template/web-extension/vite-env.d.ts +17 -17
  444. package/template/web-extension/vite.config.ts +46 -46
  445. package/template/lib/workspace/node_modules/.pnpm/node_modules/react-lib/.gitignore +0 -26
  446. package/template/lib/workspace/node_modules/.pnpm/node_modules/ts-lib/.gitignore +0 -25
  447. package/template/lib/workspace/packages/ts/coverage/base.css +0 -224
  448. package/template/lib/workspace/packages/ts/coverage/block-navigation.js +0 -87
  449. package/template/lib/workspace/packages/ts/coverage/clover.xml +0 -16
  450. package/template/lib/workspace/packages/ts/coverage/coverage-final.json +0 -3
  451. package/template/lib/workspace/packages/ts/coverage/favicon.png +0 -0
  452. package/template/lib/workspace/packages/ts/coverage/index.html +0 -131
  453. package/template/lib/workspace/packages/ts/coverage/index.ts.html +0 -88
  454. package/template/lib/workspace/packages/ts/coverage/prettify.css +0 -1
  455. package/template/lib/workspace/packages/ts/coverage/prettify.js +0 -2
  456. package/template/lib/workspace/packages/ts/coverage/sort-arrow-sprite.png +0 -0
  457. package/template/lib/workspace/packages/ts/coverage/sorter.js +0 -196
  458. package/template/lib/workspace/packages/ts/coverage/sum.ts.html +0 -94
@@ -1,22 +1,22 @@
1
- import { Test, TestingModule } from '@nestjs/testing'
2
- import { AppController } from './app.controller'
3
- import { AppService } from './app.service'
4
-
5
- describe('AppController', () => {
6
- let appController: AppController
7
-
8
- beforeEach(async () => {
9
- const app: TestingModule = await Test.createTestingModule({
10
- controllers: [AppController],
11
- providers: [AppService],
12
- }).compile()
13
-
14
- appController = app.get<AppController>(AppController)
15
- })
16
-
17
- describe('root', () => {
18
- it('should return "Hello World!"', () => {
19
- expect(appController.getHello()).toBe('Hello World!')
20
- })
21
- })
22
- })
1
+ import { Test, TestingModule } from '@nestjs/testing'
2
+ import { AppController } from './app.controller'
3
+ import { AppService } from './app.service'
4
+
5
+ describe('AppController', () => {
6
+ let appController: AppController
7
+
8
+ beforeEach(async () => {
9
+ const app: TestingModule = await Test.createTestingModule({
10
+ controllers: [AppController],
11
+ providers: [AppService],
12
+ }).compile()
13
+
14
+ appController = app.get<AppController>(AppController)
15
+ })
16
+
17
+ describe('root', () => {
18
+ it('should return "Hello World!"', () => {
19
+ expect(appController.getHello()).toBe('Hello World!')
20
+ })
21
+ })
22
+ })
@@ -1,12 +1,12 @@
1
- import { Controller, Get } from '@nestjs/common'
2
- import { AppService } from './app.service'
3
-
4
- @Controller()
5
- export class AppController {
6
- constructor(private readonly appService: AppService) {}
7
-
8
- @Get()
9
- getHello(): string {
10
- return this.appService.getHello()
11
- }
12
- }
1
+ import { Controller, Get } from '@nestjs/common'
2
+ import { AppService } from './app.service'
3
+
4
+ @Controller()
5
+ export class AppController {
6
+ constructor(private readonly appService: AppService) {}
7
+
8
+ @Get()
9
+ getHello(): string {
10
+ return this.appService.getHello()
11
+ }
12
+ }
@@ -1,10 +1,10 @@
1
- import { Module } from '@nestjs/common'
2
- import { AppController } from './app.controller'
3
- import { AppService } from './app.service'
4
-
5
- @Module({
6
- imports: [],
7
- controllers: [AppController],
8
- providers: [AppService],
9
- })
10
- export class AppModule {}
1
+ import { Module } from '@nestjs/common'
2
+ import { AppController } from './app.controller'
3
+ import { AppService } from './app.service'
4
+
5
+ @Module({
6
+ imports: [],
7
+ controllers: [AppController],
8
+ providers: [AppService],
9
+ })
10
+ export class AppModule {}
@@ -1,8 +1,8 @@
1
- import { Injectable } from '@nestjs/common'
2
-
3
- @Injectable()
4
- export class AppService {
5
- getHello(): string {
6
- return 'Hello World!'
7
- }
8
- }
1
+ import { Injectable } from '@nestjs/common'
2
+
3
+ @Injectable()
4
+ export class AppService {
5
+ getHello(): string {
6
+ return 'Hello World!'
7
+ }
8
+ }
@@ -1,10 +1,10 @@
1
- import { NestFactory } from '@nestjs/core'
2
- import { AppModule } from './app.module'
3
- import { TransformInterceptor } from 'src/utils/transform.interceptor'
4
-
5
- async function bootstrap() {
6
- const app = await NestFactory.create(AppModule)
7
- app.useGlobalInterceptors(new TransformInterceptor())
8
- await app.listen(3000)
9
- }
10
- bootstrap()
1
+ import { NestFactory } from '@nestjs/core'
2
+ import { AppModule } from './app.module'
3
+ import { TransformInterceptor } from 'src/utils/transform.interceptor'
4
+
5
+ async function bootstrap() {
6
+ const app = await NestFactory.create(AppModule)
7
+ app.useGlobalInterceptors(new TransformInterceptor())
8
+ await app.listen(3000)
9
+ }
10
+ bootstrap()
@@ -1,26 +1,26 @@
1
- import {
2
- Injectable,
3
- NestInterceptor,
4
- ExecutionContext,
5
- CallHandler,
6
- } from '@nestjs/common'
7
- import { Observable } from 'rxjs'
8
- import { map } from 'rxjs/operators'
9
-
10
- export interface Response<T> {
11
- data: T
12
- }
13
-
14
- @Injectable()
15
- export class TransformInterceptor<T>
16
- implements NestInterceptor<T, Response<T>>
17
- {
18
- intercept(
19
- context: ExecutionContext,
20
- next: CallHandler,
21
- ): Observable<Response<T>> {
22
- return next
23
- .handle()
24
- .pipe(map((data) => ({ code: 200, message: '', data })))
25
- }
26
- }
1
+ import {
2
+ Injectable,
3
+ NestInterceptor,
4
+ ExecutionContext,
5
+ CallHandler,
6
+ } from '@nestjs/common'
7
+ import { Observable } from 'rxjs'
8
+ import { map } from 'rxjs/operators'
9
+
10
+ export interface Response<T> {
11
+ data: T
12
+ }
13
+
14
+ @Injectable()
15
+ export class TransformInterceptor<T>
16
+ implements NestInterceptor<T, Response<T>>
17
+ {
18
+ intercept(
19
+ context: ExecutionContext,
20
+ next: CallHandler,
21
+ ): Observable<Response<T>> {
22
+ return next
23
+ .handle()
24
+ .pipe(map((data) => ({ code: 200, message: '', data })))
25
+ }
26
+ }
@@ -1,24 +1,24 @@
1
- import { Test, TestingModule } from '@nestjs/testing'
2
- import { INestApplication } from '@nestjs/common'
3
- import * as request from 'supertest'
4
- import { AppModule } from '../src/app.module'
5
-
6
- describe('AppController (e2e)', () => {
7
- let app: INestApplication
8
-
9
- beforeEach(async () => {
10
- const moduleFixture: TestingModule = await Test.createTestingModule({
11
- imports: [AppModule],
12
- }).compile()
13
-
14
- app = moduleFixture.createNestApplication()
15
- await app.init()
16
- })
17
-
18
- it('/ (GET)', () => {
19
- return request(app.getHttpServer())
20
- .get('/')
21
- .expect(200)
22
- .expect('Hello World!')
23
- })
24
- })
1
+ import { Test, TestingModule } from '@nestjs/testing'
2
+ import { INestApplication } from '@nestjs/common'
3
+ import * as request from 'supertest'
4
+ import { AppModule } from '../src/app.module'
5
+
6
+ describe('AppController (e2e)', () => {
7
+ let app: INestApplication
8
+
9
+ beforeEach(async () => {
10
+ const moduleFixture: TestingModule = await Test.createTestingModule({
11
+ imports: [AppModule],
12
+ }).compile()
13
+
14
+ app = moduleFixture.createNestApplication()
15
+ await app.init()
16
+ })
17
+
18
+ it('/ (GET)', () => {
19
+ return request(app.getHttpServer())
20
+ .get('/')
21
+ .expect(200)
22
+ .expect('Hello World!')
23
+ })
24
+ })
@@ -1,9 +1,9 @@
1
- {
2
- "moduleFileExtensions": ["js", "json", "ts"],
3
- "rootDir": ".",
4
- "testEnvironment": "node",
5
- "testRegex": ".e2e-spec.ts$",
6
- "transform": {
7
- "^.+\\.(t|j)s$": "ts-jest"
8
- }
9
- }
1
+ {
2
+ "moduleFileExtensions": ["js", "json", "ts"],
3
+ "rootDir": ".",
4
+ "testEnvironment": "node",
5
+ "testRegex": ".e2e-spec.ts$",
6
+ "transform": {
7
+ "^.+\\.(t|j)s$": "ts-jest"
8
+ }
9
+ }
@@ -1,5 +1,5 @@
1
- {
2
- "extends": "./tsconfig.json",
3
- "exclude": ["node_modules",
4
- "test", "dist", "**/*spec.ts"]
5
- }
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "exclude": ["node_modules",
4
+ "test", "dist", "**/*spec.ts"]
5
+ }
@@ -1,21 +1,21 @@
1
- {
2
- "compilerOptions": {
3
- "module": "commonjs",
4
- "declaration": true,
5
- "removeComments": true,
6
- "emitDecoratorMetadata": true,
7
- "experimentalDecorators": true,
8
- "allowSyntheticDefaultImports": true,
9
- "target": "es2017",
10
- "sourceMap": true,
11
- "outDir": "./dist",
12
- "baseUrl": "./",
13
- "incremental": true,
14
- "skipLibCheck": true,
15
- "strictNullChecks": false,
16
- "noImplicitAny": false,
17
- "strictBindCallApply": false,
18
- "forceConsistentCasingInFileNames": false,
19
- "noFallthroughCasesInSwitch": false
20
- }
21
- }
1
+ {
2
+ "compilerOptions": {
3
+ "module": "commonjs",
4
+ "declaration": true,
5
+ "removeComments": true,
6
+ "emitDecoratorMetadata": true,
7
+ "experimentalDecorators": true,
8
+ "allowSyntheticDefaultImports": true,
9
+ "target": "es2017",
10
+ "sourceMap": true,
11
+ "outDir": "./dist",
12
+ "baseUrl": "./",
13
+ "incremental": true,
14
+ "skipLibCheck": true,
15
+ "strictNullChecks": false,
16
+ "noImplicitAny": false,
17
+ "strictBindCallApply": false,
18
+ "forceConsistentCasingInFileNames": false,
19
+ "noFallthroughCasesInSwitch": false
20
+ }
21
+ }
@@ -1,8 +1,8 @@
1
- {
2
- "plugins": ["prettier"],
3
- "extends": [
4
- "next/core-web-vitals",
5
- "plugin:import/recommended",
6
- "plugin:import/typescript"
7
- ]
8
- }
1
+ {
2
+ "plugins": ["prettier"],
3
+ "extends": [
4
+ "next/core-web-vitals",
5
+ "plugin:import/recommended",
6
+ "plugin:import/typescript"
7
+ ]
8
+ }
@@ -1,36 +1,36 @@
1
- # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2
-
3
- # dependencies
4
- /node_modules
5
- /.pnp
6
- .pnp.js
7
- .history
8
-
9
- # testing
10
- /coverage
11
-
12
- # next.js
13
- /.next/
14
- /out/
15
-
16
- # production
17
- /build
18
-
19
- # misc
20
- .DS_Store
21
- *.pem
22
-
23
- # debug
24
- npm-debug.log*
25
- yarn-debug.log*
26
- yarn-error.log*
27
- pnpm-lock.yaml
28
-
29
- # local env files
30
- .env*.local
31
-
32
- # vercel
33
- .vercel
34
-
35
- # typescript
36
- *.tsbuildinfo
1
+ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2
+
3
+ # dependencies
4
+ /node_modules
5
+ /.pnp
6
+ .pnp.js
7
+ .history
8
+
9
+ # testing
10
+ /coverage
11
+
12
+ # next.js
13
+ /.next/
14
+ /out/
15
+
16
+ # production
17
+ /build
18
+
19
+ # misc
20
+ .DS_Store
21
+ *.pem
22
+
23
+ # debug
24
+ npm-debug.log*
25
+ yarn-debug.log*
26
+ yarn-error.log*
27
+ pnpm-lock.yaml
28
+
29
+ # local env files
30
+ .env*.local
31
+
32
+ # vercel
33
+ .vercel
34
+
35
+ # typescript
36
+ *.tsbuildinfo
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env sh
2
- . "$(dirname -- "$0")/_/husky.sh"
3
-
4
- npx --no -- commitlint --edit
1
+ #!/usr/bin/env sh
2
+ . "$(dirname -- "$0")/_/husky.sh"
3
+
4
+ npx --no -- commitlint --edit
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env sh
2
- . "$(dirname -- "$0")/_/husky.sh"
3
-
4
- npm run lint
1
+ #!/usr/bin/env sh
2
+ . "$(dirname -- "$0")/_/husky.sh"
3
+
4
+ npm run lint
@@ -1,29 +1,29 @@
1
- {
2
- "extends": "stylelint-config-standard-scss",
3
- "rules": {
4
- "comment-empty-line-before": "never",
5
- "no-empty-source": null,
6
- "alpha-value-notation": null,
7
- "color-function-notation": null,
8
- "at-rule-no-unknown": [
9
- true,
10
- {
11
- "ignoreAtRules": ["tailwind", "apply", "use"]
12
- }
13
- ],
14
- "declaration-block-no-redundant-longhand-properties": null,
15
- "selector-pseudo-class-no-unknown": [
16
- true,
17
- {
18
- "ignorePseudoClasses": ["global"]
19
- }
20
- ],
21
- "selector-class-pattern": null,
22
- "scss/at-rule-no-unknown": [
23
- true,
24
- {
25
- "ignoreAtRules": ["tailwind", "a pply"]
26
- }
27
- ]
28
- }
29
- }
1
+ {
2
+ "extends": "stylelint-config-standard-scss",
3
+ "rules": {
4
+ "comment-empty-line-before": "never",
5
+ "no-empty-source": null,
6
+ "alpha-value-notation": null,
7
+ "color-function-notation": null,
8
+ "at-rule-no-unknown": [
9
+ true,
10
+ {
11
+ "ignoreAtRules": ["tailwind", "apply", "use"]
12
+ }
13
+ ],
14
+ "declaration-block-no-redundant-longhand-properties": null,
15
+ "selector-pseudo-class-no-unknown": [
16
+ true,
17
+ {
18
+ "ignorePseudoClasses": ["global"]
19
+ }
20
+ ],
21
+ "selector-class-pattern": null,
22
+ "scss/at-rule-no-unknown": [
23
+ true,
24
+ {
25
+ "ignoreAtRules": ["tailwind", "a pply"]
26
+ }
27
+ ]
28
+ }
29
+ }
@@ -1,34 +1,34 @@
1
- This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
2
-
3
- ## Getting Started
4
-
5
- First, run the development server:
6
-
7
- ```bash
8
- npm run dev
9
- # or
10
- yarn dev
11
- # or
12
- pnpm dev
13
- ```
14
-
15
- Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
16
-
17
- You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
18
-
19
- This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
20
-
21
- ## Learn More
22
-
23
- To learn more about Next.js, take a look at the following resources:
24
-
25
- - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
26
- - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
27
-
28
- You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
29
-
30
- ## Deploy on Vercel
31
-
32
- The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
33
-
34
- Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
1
+ This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
2
+
3
+ ## Getting Started
4
+
5
+ First, run the development server:
6
+
7
+ ```bash
8
+ npm run dev
9
+ # or
10
+ yarn dev
11
+ # or
12
+ pnpm dev
13
+ ```
14
+
15
+ Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
16
+
17
+ You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
18
+
19
+ This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
20
+
21
+ ## Learn More
22
+
23
+ To learn more about Next.js, take a look at the following resources:
24
+
25
+ - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
26
+ - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
27
+
28
+ You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
29
+
30
+ ## Deploy on Vercel
31
+
32
+ The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
33
+
34
+ Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
@@ -1,22 +1,22 @@
1
- @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities;
4
-
5
- :root {
6
- --foreground-rgb: 0, 0, 0;
7
- --background-start-rgb: 214, 219, 220;
8
- --background-end-rgb: 255, 255, 255;
9
- }
10
-
11
- @media (prefers-color-scheme: dark) {
12
- :root {
13
- --foreground-rgb: 255, 255, 255;
14
- --background-start-rgb: 0, 0, 0;
15
- --background-end-rgb: 0, 0, 0;
16
- }
17
- }
18
- body {
19
- color: rgb(var(--foreground-rgb));
20
- background: linear-gradient(to bottom, transparent, rgb(var(--background-end-rgb)))
21
- rgb(var(--background-start-rgb));
22
- }
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ :root {
6
+ --foreground-rgb: 0, 0, 0;
7
+ --background-start-rgb: 214, 219, 220;
8
+ --background-end-rgb: 255, 255, 255;
9
+ }
10
+
11
+ @media (prefers-color-scheme: dark) {
12
+ :root {
13
+ --foreground-rgb: 255, 255, 255;
14
+ --background-start-rgb: 0, 0, 0;
15
+ --background-end-rgb: 0, 0, 0;
16
+ }
17
+ }
18
+ body {
19
+ color: rgb(var(--foreground-rgb));
20
+ background: linear-gradient(to bottom, transparent, rgb(var(--background-end-rgb)))
21
+ rgb(var(--background-start-rgb));
22
+ }
@@ -1,18 +1,18 @@
1
- import './globals.css'
2
- import type { Metadata } from 'next'
3
- import { Inter } from 'next/font/google'
4
-
5
- const inter = Inter({ subsets: ['latin'] })
6
-
7
- export const metadata: Metadata = {
8
- title: 'Create Next App',
9
- description: 'Generated by create next app'
10
- }
11
-
12
- export default function RootLayout({ children }: { children: React.ReactNode }) {
13
- return (
14
- <html lang="en">
15
- <body className={inter.className}>{children}</body>
16
- </html>
17
- )
18
- }
1
+ import './globals.css'
2
+ import type { Metadata } from 'next'
3
+ import { Inter } from 'next/font/google'
4
+
5
+ const inter = Inter({ subsets: ['latin'] })
6
+
7
+ export const metadata: Metadata = {
8
+ title: 'Create Next App',
9
+ description: 'Generated by create next app'
10
+ }
11
+
12
+ export default function RootLayout({ children }: { children: React.ReactNode }) {
13
+ return (
14
+ <html lang="en">
15
+ <body className={inter.className}>{children}</body>
16
+ </html>
17
+ )
18
+ }