package-installer-cli 2.2.0 → 2.4.0
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.
- checksums.yaml +4 -4
- data/bundle-standalone/cli-with-packages.js +1056 -547
- data/bundle-standalone/template.json +809 -107
- data/bundle-standalone/templates/c++_c/crow/template/CMakeLists.txt +18 -0
- data/bundle-standalone/templates/c++_c/crow/template/README.md +11 -0
- data/bundle-standalone/templates/c++_c/crow/template/include/routes.hpp +19 -0
- data/bundle-standalone/templates/c++_c/crow/template/main.cpp +12 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/middleware.ts +18 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/package.json +28 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/pnpm-lock.yaml +3819 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/src/app/page.tsx +33 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/src/lib/auth0.ts +3 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/middleware.ts +12 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/package.json +37 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/pnpm-lock.yaml +4113 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/app/layout.tsx +55 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/middleware.ts +12 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/package.json +28 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/pnpm-lock.yaml +3862 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/src/app/api/auth/[...nextauth]/route.ts +6 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/src/app/layout.tsx +39 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/src/lib/auth-provider.tsx +7 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/src/lib/auth.ts +126 -0
- data/bundle-standalone/templates/game/unity/template/README.md +3 -0
- data/bundle-standalone/templates/game/unity/template/Scripts/PlayerController.cs +25 -0
- data/bundle-standalone/templates/game/unreal/template/README.md +3 -0
- data/bundle-standalone/templates/game/unreal/template/Source/PlayerCharacter.cpp +33 -0
- data/bundle-standalone/templates/game/unreal/template/Source/PlayerCharacter.h +20 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/no-src-tailwind-template/app/globals.css +26 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/no-src-tailwind-template/postcss.config.mjs +5 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-no-tailwind-template/README.md +36 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-no-tailwind-template/eslint.config.mjs +16 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-no-tailwind-template/next.config.ts +7 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-no-tailwind-template/public/file.svg +1 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-no-tailwind-template/public/globe.svg +1 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-no-tailwind-template/public/next.svg +1 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-no-tailwind-template/public/vercel.svg +1 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-no-tailwind-template/public/window.svg +1 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-no-tailwind-template/src/app/favicon.ico +0 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-no-tailwind-template/tsconfig.json +27 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-shadcn-tailwind-template/README.md +36 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-shadcn-tailwind-template/components.json +21 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-shadcn-tailwind-template/eslint.config.mjs +16 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-shadcn-tailwind-template/next.config.ts +7 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-shadcn-tailwind-template/postcss.config.mjs +5 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-shadcn-tailwind-template/public/file.svg +1 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-shadcn-tailwind-template/public/globe.svg +1 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-shadcn-tailwind-template/public/next.svg +1 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-shadcn-tailwind-template/public/vercel.svg +1 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-shadcn-tailwind-template/public/window.svg +1 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-shadcn-tailwind-template/src/app/favicon.ico +0 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-shadcn-tailwind-template/src/app/globals.css +122 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-shadcn-tailwind-template/src/app/page.tsx +10 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-shadcn-tailwind-template/tsconfig.json +27 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-tailwind-template/README.md +36 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-tailwind-template/eslint.config.mjs +16 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-tailwind-template/next.config.ts +7 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-tailwind-template/postcss.config.mjs +5 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-tailwind-template/public/file.svg +1 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-tailwind-template/public/globe.svg +1 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-tailwind-template/public/next.svg +1 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-tailwind-template/public/vercel.svg +1 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-tailwind-template/public/window.svg +1 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-tailwind-template/src/app/favicon.ico +0 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-tailwind-template/src/app/globals.css +26 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-tailwind-template/src/app/layout.tsx +34 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-tailwind-template/src/app/page.tsx +10 -0
- data/bundle-standalone/templates/javascript/nextjs/typescript/src-tailwind-template/tsconfig.json +27 -0
- data/bundle-standalone/templates/javascript/preactjs/javascript/template/index.html +13 -0
- data/bundle-standalone/templates/javascript/preactjs/javascript/template/package.json +18 -0
- data/bundle-standalone/templates/javascript/preactjs/javascript/template/src/app.css +25 -0
- data/bundle-standalone/templates/javascript/preactjs/javascript/template/src/app.jsx +43 -0
- data/bundle-standalone/templates/javascript/preactjs/javascript/template/src/assets/preact.svg +1 -0
- data/bundle-standalone/templates/javascript/preactjs/javascript/template/src/main.jsx +5 -0
- data/bundle-standalone/templates/javascript/preactjs/javascript/template/vite.config.js +7 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/index.html +13 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/package.json +20 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/src/app.css +25 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/src/app.tsx +43 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/src/assets/preact.svg +1 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/src/main.tsx +5 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/tsconfig.app.json +33 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/tsconfig.node.json +26 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/vite.config.ts +7 -0
- data/bundle-standalone/templates/javascript/reactjs/vite/typescript/no-shadcn-no-tailwind-template/src/index.css +68 -0
- data/bundle-standalone/templates/javascript/reactjs/vite/typescript/no-shadcn-tailwind-template/public/vite.svg +1 -0
- data/bundle-standalone/templates/javascript/reactjs/vite/typescript/no-shadcn-tailwind-template/src/index.css +68 -0
- data/bundle-standalone/templates/javascript/reactjs/vite/typescript/no-shadcn-tailwind-template/tsconfig.json +7 -0
- data/bundle-standalone/templates/javascript/reactjs/vite/typescript/shadcn-tailwind-template/public/vite.svg +1 -0
- data/bundle-standalone/templates/javascript/reactjs/vite/typescript/shadcn-tailwind-template/src/components/ui/button.tsx +59 -0
- data/bundle-standalone/templates/javascript/reactjs/vite/typescript/shadcn-tailwind-template/src/components/ui/card.tsx +92 -0
- data/bundle-standalone/templates/javascript/reactjs/vite/typescript/shadcn-tailwind-template/src/components/ui/input.tsx +21 -0
- data/bundle-standalone/templates/javascript/reactjs/vite/typescript/shadcn-tailwind-template/src/components/ui/textarea.tsx +18 -0
- data/bundle-standalone/templates/javascript/remixjs/typescript/shadcn-tailwind-template/app/lib/utils.ts +6 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/README.md +28 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/index.html +13 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/package.json +18 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/public/vite.svg +1 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/src/App.css +27 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/src/App.jsx +35 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/src/assets/solid.svg +1 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/src/index.css +68 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/src/index.jsx +8 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/vite.config.js +6 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/README.md +28 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/index.html +13 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/package.json +20 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/public/vite.svg +1 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/src/App.css +27 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/src/App.tsx +35 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/src/assets/solid.svg +1 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/src/index.css +68 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/src/index.tsx +8 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/tsconfig.app.json +29 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/tsconfig.json +7 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/tsconfig.node.json +26 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/vite.config.ts +6 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/README.md +43 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/index.html +13 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/jsconfig.json +33 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/package.json +16 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/public/vite.svg +1 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/src/App.svelte +47 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/src/app.css +79 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/src/assets/svelte.svg +1 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/src/lib/Counter.svelte +10 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/src/main.js +9 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/svelte.config.js +8 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/vite.config.js +7 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/README.md +47 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/index.html +13 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/package.json +21 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/public/vite.svg +1 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/src/App.svelte +47 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/src/app.css +79 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/src/assets/svelte.svg +1 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/src/lib/Counter.svelte +10 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/src/main.ts +9 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/svelte.config.js +8 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/tsconfig.app.json +21 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/tsconfig.json +7 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/tsconfig.node.json +26 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/vite.config.ts +7 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/README.md +50 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/app/(tabs)/_layout.jsx +35 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/app/(tabs)/explore.jsx +112 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/app/(tabs)/index.jsx +98 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/app/_layout.jsx +24 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/app/modal.jsx +29 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/app.json +48 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/android-icon-background.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/android-icon-foreground.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/android-icon-monochrome.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/favicon.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/icon.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/partial-react-logo.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/react-logo.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/react-logo@2x.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/react-logo@3x.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/splash-icon.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/external-link.jsx +25 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/haptic-tab.jsx +18 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/hello-wave.jsx +19 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/parallax-scroll-view.jsx +79 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/themed-text.jsx +60 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/themed-view.jsx +14 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/ui/collapsible.jsx +45 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/ui/icon-symbol.ios.jsx +32 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/ui/icon-symbol.jsx +41 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/constants/theme.js +53 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/eslint.config.js +10 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/hooks/use-color-scheme.js +1 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/hooks/use-color-scheme.web.js +21 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/hooks/use-theme-color.js +21 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/jsconfig.json +17 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/package.json +47 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/pnpm-workspace.yaml +1 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/scripts/reset-project.js +112 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/README.md +50 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/app/(tabs)/_layout.tsx +35 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/app/(tabs)/explore.tsx +112 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/app/(tabs)/index.tsx +98 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/app/_layout.tsx +24 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/app/modal.tsx +29 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/app.json +48 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/android-icon-background.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/android-icon-foreground.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/android-icon-monochrome.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/favicon.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/icon.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/partial-react-logo.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/react-logo.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/react-logo@2x.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/react-logo@3x.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/splash-icon.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/external-link.tsx +25 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/haptic-tab.tsx +18 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/hello-wave.tsx +19 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/parallax-scroll-view.tsx +79 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/themed-text.tsx +60 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/themed-view.tsx +14 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/ui/collapsible.tsx +45 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/ui/icon-symbol.ios.tsx +32 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/ui/icon-symbol.tsx +41 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/constants/theme.ts +53 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/eslint.config.js +10 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/hooks/use-color-scheme.ts +1 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/hooks/use-color-scheme.web.ts +21 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/hooks/use-theme-color.ts +21 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/package.json +47 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/pnpm-workspace.yaml +1 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/scripts/reset-project.js +112 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/tsconfig.json +17 -0
- data/bundle-standalone/templates/python/bottle/template/main.py +6 -0
- data/bundle-standalone/templates/python/bottle/template/pyproject.toml +7 -0
- data/bundle-standalone/templates/python/dash/template/main.py +6 -0
- data/bundle-standalone/templates/python/dash/template/pyproject.toml +7 -0
- data/bundle-standalone/templates/python/falcon/template/main.py +6 -0
- data/bundle-standalone/templates/python/falcon/template/pyproject.toml +7 -0
- data/bundle-standalone/templates/python/fastapi/template/main.py +27 -0
- data/bundle-standalone/templates/python/fastapi/template/pyproject.toml +7 -0
- data/bundle-standalone/templates/python/pyramid/template/main.py +6 -0
- data/bundle-standalone/templates/python/pyramid/template/pyproject.toml +7 -0
- data/bundle-standalone/templates/python/quart/template/main.py +6 -0
- data/bundle-standalone/templates/python/quart/template/pyproject.toml +7 -0
- data/bundle-standalone/templates/python/streamlit/template/README.md +0 -0
- data/bundle-standalone/templates/python/streamlit/template/main.py +6 -0
- data/bundle-standalone/templates/python/streamlit/template/pyproject.toml +7 -0
- data/bundle-standalone/templates/python/tornado/template/README.md +0 -0
- data/bundle-standalone/templates/python/tornado/template/main.py +6 -0
- data/bundle-standalone/templates/python/tornado/template/pyproject.toml +7 -0
- data/bundle-standalone/templates/template.json +886 -0
- data/bundle-standalone/templates/web3/anchor/template/Anchor.toml +6 -0
- data/bundle-standalone/templates/web3/anchor/template/Cargo.toml +23 -0
- data/bundle-standalone/templates/web3/anchor/template/README.md +10 -0
- data/bundle-standalone/templates/web3/anchor/template/migrations/deploy.ts +27 -0
- data/bundle-standalone/templates/web3/anchor/template/programs/mysolanaapp/src/lib.rs +40 -0
- data/bundle-standalone/templates/web3/anchor/template/tests/mysolanaapp.ts +26 -0
- data/bundle-standalone/templates/web3/ethersjs/template/README.md +12 -0
- data/bundle-standalone/templates/web3/ethersjs/template/contracts/SimpleStorage.sol +17 -0
- data/bundle-standalone/templates/web3/ethersjs/template/hardhat.config.js +8 -0
- data/bundle-standalone/templates/web3/ethersjs/template/package.json +29 -0
- data/bundle-standalone/templates/web3/ethersjs/template/scripts/deploy.ts +18 -0
- data/bundle-standalone/templates/web3/ethersjs/template/scripts/interact.ts +17 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/01_data-types/DataTypes.sol +37 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/01_data-types/SolidityOperations.sol +48 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/02_contructors/Constructor.sol +16 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/03_variables/Variables.sol +31 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/04_functions/Functions.sol +19 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/05_visibility/FunctionVisibility.sol +39 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/06_pure_and_view_functions/PureAndViewFunction.sol +19 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/07_function_modifiers/Modifiers.sol +27 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/09_events/Events.sol +19 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/10_error_handling/ErrorHandling.sol +25 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/11_fallback_function/Fallback.sol +7 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/12_for_loop/ForLoop.sol +15 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/13_array/Array.sol +40 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/14_mapping/Mapping.sol +21 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/14_mapping/NestedMapping.sol +25 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/15_enum/Enum.sol +22 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/16_struct/Struct.sol +23 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/17_payable_modifier/Payable.sol +26 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/18_imports/Contract1.sol +15 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/18_imports/Contract2.sol +11 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/19_contract_cleanup/Cleanup.sol +18 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/20_memory_and_storage/MemoryAndStorage.sol +20 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/21_inheritance/Inheritance.sol +67 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/22_if_statement/if-statement.sol +22 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/23_libraries/libraries.sol +31 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/23_libraries/safemath.sol +116 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/24_interface/interface.sol +88 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/README.md +423 -0
- data/bundle-standalone/templates/web3/solidity/uniswap-simple-swap/SimpleSwap.sol +46 -0
- metadata +1356 -1436
- data/bundle-standalone/templates/go/golang-boilerplate/Dockerfile +0 -25
- data/bundle-standalone/templates/go/golang-boilerplate/api/auth.go +0 -176
- data/bundle-standalone/templates/go/golang-boilerplate/api/auth_test.go +0 -71
- data/bundle-standalone/templates/go/golang-boilerplate/api/context.go +0 -120
- data/bundle-standalone/templates/go/golang-boilerplate/api/cronjob.go +0 -24
- data/bundle-standalone/templates/go/golang-boilerplate/api/db_helper.go +0 -86
- data/bundle-standalone/templates/go/golang-boilerplate/api/handler.go +0 -514
- data/bundle-standalone/templates/go/golang-boilerplate/api/handler_test.go +0 -188
- data/bundle-standalone/templates/go/golang-boilerplate/api/user.go +0 -80
- data/bundle-standalone/templates/go/golang-boilerplate/api/user_test.go +0 -43
- data/bundle-standalone/templates/go/golang-boilerplate/api/webhook.go +0 -33
- data/bundle-standalone/templates/go/golang-boilerplate/config/config.go +0 -137
- data/bundle-standalone/templates/go/golang-boilerplate/config/config_test.go +0 -1
- data/bundle-standalone/templates/go/golang-boilerplate/core/db.go +0 -161
- data/bundle-standalone/templates/go/golang-boilerplate/core/error.go +0 -144
- data/bundle-standalone/templates/go/golang-boilerplate/core/json.go +0 -278
- data/bundle-standalone/templates/go/golang-boilerplate/core/test.go +0 -237
- data/bundle-standalone/templates/go/golang-boilerplate/core/timestamp.go +0 -111
- data/bundle-standalone/templates/go/golang-boilerplate/core/type.go +0 -7
- data/bundle-standalone/templates/go/golang-boilerplate/db/dbconf.yml +0 -17
- data/bundle-standalone/templates/go/golang-boilerplate/db/migrations/20190611174624_base.sql +0 -42
- data/bundle-standalone/templates/go/golang-boilerplate/db/seed.sql +0 -1
- data/bundle-standalone/templates/go/golang-boilerplate/go.mod +0 -34
- data/bundle-standalone/templates/go/golang-boilerplate/go.sum +0 -328
- data/bundle-standalone/templates/go/golang-boilerplate/log/hook.go +0 -137
- data/bundle-standalone/templates/go/golang-boilerplate/log/log.go +0 -66
- data/bundle-standalone/templates/go/golang-boilerplate/log/logger.go +0 -40
- data/bundle-standalone/templates/go/golang-boilerplate/log/logstash.go +0 -64
- data/bundle-standalone/templates/go/golang-boilerplate/main.go +0 -31
- data/bundle-standalone/templates/go/golang-boilerplate/makefile +0 -17
- data/bundle-standalone/templates/go/golang-boilerplate/middleware/configuration.go +0 -19
- data/bundle-standalone/templates/go/golang-boilerplate/middleware/db.go +0 -21
- data/bundle-standalone/templates/go/golang-boilerplate/middleware/elastic.go +0 -21
- data/bundle-standalone/templates/go/golang-boilerplate/middleware/header.go +0 -30
- data/bundle-standalone/templates/go/golang-boilerplate/middleware/initialize.go +0 -28
- data/bundle-standalone/templates/go/golang-boilerplate/middleware/session.go +0 -64
- data/bundle-standalone/templates/go/golang-boilerplate/middleware/type.go +0 -50
- data/bundle-standalone/templates/go/golang-boilerplate/model/configuration.go +0 -59
- data/bundle-standalone/templates/go/golang-boilerplate/model/context.go +0 -16
- data/bundle-standalone/templates/go/golang-boilerplate/model/creator.go +0 -16
- data/bundle-standalone/templates/go/golang-boilerplate/model/creator_test.go +0 -13
- data/bundle-standalone/templates/go/golang-boilerplate/model/db_test.go +0 -38
- data/bundle-standalone/templates/go/golang-boilerplate/model/deleter.go +0 -32
- data/bundle-standalone/templates/go/golang-boilerplate/model/deleter_test.go +0 -13
- data/bundle-standalone/templates/go/golang-boilerplate/model/getter.go +0 -16
- data/bundle-standalone/templates/go/golang-boilerplate/model/getter_test.go +0 -13
- data/bundle-standalone/templates/go/golang-boilerplate/model/jwt.go +0 -86
- data/bundle-standalone/templates/go/golang-boilerplate/model/jwt_test.go +0 -28
- data/bundle-standalone/templates/go/golang-boilerplate/model/model.go +0 -141
- data/bundle-standalone/templates/go/golang-boilerplate/model/restrictor.go +0 -19
- data/bundle-standalone/templates/go/golang-boilerplate/model/restrictor_test.go +0 -13
- data/bundle-standalone/templates/go/golang-boilerplate/model/sorter.go +0 -16
- data/bundle-standalone/templates/go/golang-boilerplate/model/sorter_test.go +0 -46
- data/bundle-standalone/templates/go/golang-boilerplate/model/test_helper.go +0 -107
- data/bundle-standalone/templates/go/golang-boilerplate/model/updater.go +0 -16
- data/bundle-standalone/templates/go/golang-boilerplate/model/updater_test.go +0 -14
- data/bundle-standalone/templates/go/golang-boilerplate/model/user.go +0 -295
- data/bundle-standalone/templates/go/golang-boilerplate/model/user_test.go +0 -215
- data/bundle-standalone/templates/go/golang-boilerplate/model/validator.go +0 -80
- data/bundle-standalone/templates/go/golang-boilerplate/model/validator_test.go +0 -135
- data/bundle-standalone/templates/go/golang-boilerplate/server/router.go +0 -141
- data/bundle-standalone/templates/go/golang-boilerplate/server/server.go +0 -26
- data/bundle-standalone/templates/go/golang-boilerplate/util/helper.go +0 -300
- data/bundle-standalone/templates/go/golang-boilerplate/util/helper_test.go +0 -230
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/Dockerfile +0 -75
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/Gemfile +0 -29
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/Gemfile.lock +0 -279
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/Procfile.dev +0 -4
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/README.md +0 -57
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/Rakefile +0 -6
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/assets/config/manifest.js +0 -3
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/assets/stylesheets/application.css +0 -3
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/channels/application_cable/channel.rb +0 -4
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/channels/application_cable/connection.rb +0 -4
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/controllers/application_controller.rb +0 -2
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/controllers/home_controller.rb +0 -13
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/helpers/application_helper.rb +0 -2
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/javascript/application.js +0 -3
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/javascript/controllers/application.js +0 -9
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/javascript/controllers/home_controller.js +0 -19
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/javascript/controllers/index.js +0 -8
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/jobs/application_job.rb +0 -7
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/mailers/application_mailer.rb +0 -4
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/models/application_record.rb +0 -3
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/views/home/_content.html.erb +0 -3
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/views/home/index.html.erb +0 -8
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/views/layouts/application.html.erb +0 -16
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/views/layouts/mailer.html.erb +0 -13
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/views/layouts/mailer.text.erb +0 -1
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/bin/bundle +0 -109
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/bin/dev +0 -11
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/bin/docker-entrypoint +0 -8
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/bin/rails +0 -4
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/bin/rake +0 -4
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/bin/setup +0 -36
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/application.rb +0 -27
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/boot.rb +0 -4
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/cable.yml +0 -10
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/credentials.yml.enc +0 -1
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/database.yml +0 -85
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/environment.rb +0 -5
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/environments/development.rb +0 -76
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/environments/production.rb +0 -97
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/environments/test.rb +0 -64
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/initializers/assets.rb +0 -12
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/initializers/content_security_policy.rb +0 -25
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/initializers/filter_parameter_logging.rb +0 -8
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/initializers/inflections.rb +0 -16
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/initializers/permissions_policy.rb +0 -13
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/locales/en.yml +0 -31
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/puma.rb +0 -44
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/routes.rb +0 -11
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/storage.yml +0 -34
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config.ru +0 -6
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/db/schema.rb +0 -17
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/db/seeds.rb +0 -9
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/docker-compose.yaml +0 -14
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/esbuild.config.js +0 -58
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/package.json +0 -24
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/postcss.config.js +0 -9
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/404.html +0 -67
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/422.html +0 -67
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/500.html +0 -66
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/robots.txt +0 -1
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/tailwind.config.js +0 -8
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/test/application_system_test_case.rb +0 -5
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/test/channels/application_cable/connection_test.rb +0 -13
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/test/test_helper.rb +0 -15
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/watch-stimulus.js +0 -18
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/Capfile +0 -11
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/Gemfile +0 -31
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/Gemfile.lock +0 -214
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/README.md +0 -35
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/Rakefile +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/app/channels/application_cable/channel.rb +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/app/channels/application_cable/connection.rb +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/app/controllers/application_controller.rb +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/app/jobs/application_job.rb +0 -2
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/app/mailers/application_mailer.rb +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/app/models/application_record.rb +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/app/models/user.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/app/views/layouts/mailer.html.erb +0 -13
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/app/views/layouts/mailer.text.erb +0 -1
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/bin/bundle +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/bin/rails +0 -9
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/bin/rake +0 -9
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/bin/setup +0 -34
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/bin/spring +0 -15
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/bin/update +0 -29
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/circle.yml +0 -12
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/application.rb +0 -31
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/boot.rb +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/cable.yml +0 -9
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/database.yml +0 -19
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/deploy/production.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/deploy.rb +0 -87
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/environment.rb +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/environments/development.rb +0 -47
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/environments/production.rb +0 -78
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/environments/test.rb +0 -42
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/application_controller_renderer.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/backtrace_silencers.rb +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/cors.rb +0 -8
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/devise.rb +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/devise_token_auth.rb +0 -49
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/filter_parameter_logging.rb +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/inflections.rb +0 -16
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/mime_types.rb +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/new_framework_defaults.rb +0 -18
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/wrap_parameters.rb +0 -14
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/locales/en.yml +0 -2
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/puma.rb +0 -13
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/routes.rb +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/secrets.yml +0 -22
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/spring.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config.ru +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/db/migrate/20160824081533_devise_token_auth_create_users.rb +0 -54
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/db/schema.rb +0 -46
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/db/seeds.rb +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/spec/rails_helper.rb +0 -67
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/spec/spec_helper.rb +0 -11
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/Capfile +0 -25
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/Dockerfile +0 -34
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/Gemfile +0 -121
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/Gemfile.lock +0 -478
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/Procfile.dev +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/README.md +0 -57
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/Rakefile +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/config/manifest.js +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/images/admin/000m.jpg +0 -0
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/images/admin/logo.svg +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/stylesheets/admin/profile.scss +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/stylesheets/admin.bootstrap.scss +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/stylesheets/application.bootstrap.scss +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/stylesheets/lib/tabler.min.css +0 -14
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/channels/application_cable/channel.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/channels/application_cable/connection.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/base_controller.rb +0 -13
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/confirmations_controller.rb +0 -32
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/home_controller.rb +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/omniauth_callbacks_controller.rb +0 -30
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/passwords_controller.rb +0 -34
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/profile_controller.rb +0 -41
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/registrations_controller.rb +0 -62
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/sessions_controller.rb +0 -29
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/unlocks_controller.rb +0 -32
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/users_controller.rb +0 -55
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/application_controller.rb +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/concerns/active_storage.rb +0 -9
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/home_controller.rb +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/decorators/admins/profile_decorator.rb +0 -13
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/decorators/application_decorator.rb +0 -10
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/helpers/admin/application_helper.rb +0 -33
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/helpers/application_helper.rb +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/admin.js +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/application.js +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/controllers/admin/dashboard_controller.js +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/controllers/admin/flash_message_controller.js +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/controllers/admin/index.js +0 -8
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/controllers/flash_message_controller.js +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/controllers/home_controller.js +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/controllers/index.js +0 -8
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/lib/tabler.min.js +0 -9
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/jobs/application_job.rb +0 -9
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/mailers/admin/application_mailer.rb +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/mailers/admin/user_mailer.rb +0 -10
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/mailers/application_mailer.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/models/admin.rb +0 -39
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/models/application_record.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/models/user.rb +0 -54
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/services/application_service.rb +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_flash_messages.html.erb +0 -11
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_footer.html.erb +0 -34
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_javascript_tags.html.erb +0 -29
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_page_header.html.erb +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_page_header_actions.html.erb +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_page_header_breadcrumb.html.erb +0 -12
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_pagination.html.erb +0 -24
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_primary_navbar.html.erb +0 -48
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_secondary_navbar.html.erb +0 -31
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_stylesheet_link_tags.html.erb +0 -8
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/home/index.html.erb +0 -8
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/password_resets/edit.html.erb +0 -21
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/password_resets/new.html.erb +0 -17
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/profile/index.html.erb +0 -61
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/profile/password.html.erb +0 -65
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/sessions/new.html.erb +0 -18
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/user_mailer/password_reset.html.erb +0 -14
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/user_mailer/password_reset.text.erb +0 -9
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/users/_form.html.erb +0 -46
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/users/edit.html.erb +0 -17
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/users/index.html.erb +0 -72
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/users/new.html.erb +0 -16
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/users/show.html.erb +0 -33
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/confirmations/new.html.erb +0 -16
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/mailer/confirmation_instructions.html.erb +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/mailer/email_changed.html.erb +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/mailer/password_change.html.erb +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/mailer/reset_password_instructions.html.erb +0 -8
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/mailer/unlock_instructions.html.erb +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/sessions/new.html.erb +0 -26
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/shared/_error_messages.html.erb +0 -15
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/shared/_links.html.erb +0 -25
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/unlocks/new.html.erb +0 -16
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/home/index.html.erb +0 -2
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/layouts/admin/authentication.html.erb +0 -32
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/layouts/admin/base.html.erb +0 -29
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/layouts/application.html.erb +0 -16
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/layouts/mailer.html.erb +0 -13
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/layouts/mailer.text.erb +0 -1
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/bin/bundle +0 -114
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/bin/dev +0 -9
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/bin/importmap +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/bin/rails +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/bin/rake +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/bin/setup +0 -33
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/application.rb +0 -27
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/boot.rb +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/cable.yml +0 -10
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/credentials.yml.enc +0 -1
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/database.yml +0 -86
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/deploy/production.rb +0 -56
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/deploy/staging.rb +0 -56
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/deploy/templates/nginx_conf.erb +0 -23
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/deploy/templates/puma.rb.erb +0 -54
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/deploy.rb +0 -95
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/environment.rb +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/environments/development.rb +0 -75
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/environments/production.rb +0 -94
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/environments/test.rb +0 -60
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/assets.rb +0 -13
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/content_security_policy.rb +0 -25
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/devise.rb +0 -311
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/filter_parameter_logging.rb +0 -8
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/inflections.rb +0 -16
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/permissions_policy.rb +0 -11
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/sidekiq.rb +0 -34
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/locales/devise.en.yml +0 -65
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/locales/en.yml +0 -33
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/puma/production.rb +0 -41
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/puma/staging.rb +0 -41
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/puma.rb +0 -43
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/routes.rb +0 -24
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/sidekiq.yml +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/storage.yml +0 -34
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config.ru +0 -8
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/db/migrate/20220731033724_create_active_storage_tables.active_storage.rb +0 -57
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/db/migrate/20221015181021_devise_create_admins.rb +0 -45
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/db/migrate/20221021163750_devise_create_users.rb +0 -50
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/db/schema.rb +0 -101
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/db/seeds.rb +0 -9
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/docker-compose.yml +0 -80
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/USAGE +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/scaffold_generator.rb +0 -84
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/controller.rb.tt +0 -58
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/erb/_form.html.erb.tt +0 -41
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/erb/edit.html.erb.tt +0 -17
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/erb/index.html.erb.tt +0 -74
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/erb/new.html.erb.tt +0 -16
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/erb/show.html.erb.tt +0 -37
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/functional_test.rb.tt +0 -53
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/system_test.rb.tt +0 -52
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/tasks/auto_annotate_models.rake +0 -61
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/package.json +0 -17
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/public/404.html +0 -67
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/public/422.html +0 -67
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/public/500.html +0 -66
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/public/robots.txt +0 -1
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/scripts/start.sh +0 -14
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/spec/factories/admins.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/spec/factories/users.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/spec/models/admin_spec.rb +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/spec/models/user_spec.rb +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/spec/rails_helper.rb +0 -63
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/spec/spec_helper.rb +0 -94
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/systemd/puma.service +0 -26
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/systemd/sidekiq.service +0 -90
- data/bundle-standalone/templates/rust/advance-rust-template/Cargo.toml +0 -22
- data/bundle-standalone/templates/rust/advance-rust-template/README.md +0 -81
- data/bundle-standalone/templates/rust/advance-rust-template/env.example +0 -4
- data/bundle-standalone/templates/rust/advance-rust-template/src/config.rs +0 -17
- data/bundle-standalone/templates/rust/advance-rust-template/src/errors.rs +0 -17
- data/bundle-standalone/templates/rust/advance-rust-template/src/handlers.rs +0 -28
- data/bundle-standalone/templates/rust/advance-rust-template/src/main.rs +0 -33
- data/bundle-standalone/templates/rust/advance-rust-template/src/models.rs +0 -1
- data/bundle-standalone/templates/rust/advance-rust-template/src/routes.rs +0 -10
- data/bundle-standalone/templates/rust/advance-rust-template/tests/integration.rs +0 -18
- data/bundle-standalone/templates/rust/basic-rust-template/Cargo.toml +0 -7
- data/bundle-standalone/templates/rust/basic-rust-template/README.md +0 -38
- data/bundle-standalone/templates/rust/basic-rust-template/src/main.rs +0 -54
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-no-tailwind-template → combination-templates/nextjs-auth0-shadcn}/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-no-tailwind-template → combination-templates/nextjs-auth0-shadcn}/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-no-tailwind-template → combination-templates/nextjs-auth0-shadcn}/next.config.ts +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-shadcn-tailwind-template → combination-templates/nextjs-auth0-shadcn}/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-no-tailwind-template → combination-templates/nextjs-auth0-shadcn}/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-no-tailwind-template → combination-templates/nextjs-auth0-shadcn}/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-no-tailwind-template → combination-templates/nextjs-auth0-shadcn}/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-no-tailwind-template → combination-templates/nextjs-auth0-shadcn}/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-no-tailwind-template → combination-templates/nextjs-auth0-shadcn}/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-no-tailwind-template → combination-templates/nextjs-auth0-shadcn/src}/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-tailwind-template → combination-templates/nextjs-auth0-shadcn/src}/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-tailwind-template → combination-templates/nextjs-auth0-shadcn}/src/app/layout.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-no-tailwind-template → combination-templates/nextjs-auth0-shadcn}/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → combination-templates/nextjs-clerk-shadcn}/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → combination-templates/nextjs-clerk-shadcn}/components.json +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → combination-templates/nextjs-clerk-shadcn}/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → combination-templates/nextjs-clerk-shadcn}/next.config.ts +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-tailwind-template → combination-templates/nextjs-clerk-shadcn}/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-shadcn-tailwind-template → combination-templates/nextjs-clerk-shadcn}/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-shadcn-tailwind-template → combination-templates/nextjs-clerk-shadcn}/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-shadcn-tailwind-template → combination-templates/nextjs-clerk-shadcn}/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-shadcn-tailwind-template → combination-templates/nextjs-clerk-shadcn}/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-shadcn-tailwind-template → combination-templates/nextjs-clerk-shadcn}/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-shadcn-tailwind-template → combination-templates/nextjs-clerk-shadcn/src}/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-shadcn-tailwind-template → combination-templates/nextjs-clerk-shadcn/src}/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → combination-templates/nextjs-clerk-shadcn}/src/app/page.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → combination-templates/nextjs-clerk-shadcn/src}/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → combination-templates/nextjs-clerk-shadcn/src}/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → combination-templates/nextjs-clerk-shadcn/src}/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → combination-templates/nextjs-clerk-shadcn/src}/components/ui/textarea.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → combination-templates/nextjs-clerk-shadcn/src}/lib/utils.ts +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → combination-templates/nextjs-clerk-shadcn}/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-tailwind-template → combination-templates/nextjs-next-auth-shadcn}/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-tailwind-template → combination-templates/nextjs-next-auth-shadcn}/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{angularjs/typescript/no-material-no-tailwind-template/src/app/app.css → combination-templates/nextjs-next-auth-shadcn/middleware.ts} +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-tailwind-template → combination-templates/nextjs-next-auth-shadcn}/next.config.ts +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-shadcn-tailwind-template → combination-templates/nextjs-next-auth-shadcn}/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-tailwind-template → combination-templates/nextjs-next-auth-shadcn}/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-tailwind-template → combination-templates/nextjs-next-auth-shadcn}/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-tailwind-template → combination-templates/nextjs-next-auth-shadcn}/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-tailwind-template → combination-templates/nextjs-next-auth-shadcn}/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-tailwind-template → combination-templates/nextjs-next-auth-shadcn}/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-tailwind-template → combination-templates/nextjs-next-auth-shadcn/src}/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-tailwind-template → combination-templates/nextjs-next-auth-shadcn}/src/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-tailwind-template → combination-templates/nextjs-next-auth-shadcn}/src/app/page.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-tailwind-template → combination-templates/nextjs-next-auth-shadcn}/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/README.md +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/README.md +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/__tests__/setup.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/__tests__/user.test.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/controllers/user.controller.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/db/database.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/index.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/jest.config.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/middleware/errorHandler.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/middleware/security.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/middleware/validation.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/models/user.model.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/package.json +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/routes/index.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/routes/user.routes.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/utils/logger.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/components.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/src/App.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template}/src/components/ui/button.jsx +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template}/src/components/ui/card.jsx +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template}/src/components/ui/input.jsx +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template}/src/components/ui/textarea.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/src}/lib/utils.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/src/main.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/vite.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/README.md +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend}/controllers/user.controller.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend}/index.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend}/models/user.model.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend}/package.json +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend}/routes/user.routes.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/components.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/src/App.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template}/src/components/ui/button.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template}/src/components/ui/card.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template}/src/components/ui/input.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template}/src/components/ui/textarea.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template}/src/lib/utils.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/src/main.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/vite.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/README.md +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/README.md +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/__tests__/setup.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/__tests__/user.test.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/db/database.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/index.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/jest.config.js +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/middleware/errorHandler.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/middleware/security.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/middleware/validation.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/models/user.model.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/package.json +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/routes/index.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/routes/user.routes.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/types/index.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/utils/logger.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/components.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/src/App.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template}/src/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template}/src/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template}/src/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template}/src/components/ui/textarea.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template}/src/lib/utils.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/src/main.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/src/vite-env.d.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/tsconfig.node.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/README.md +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend}/controllers/user.controller.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend}/index.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend}/models/user.model.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend}/package.json +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend}/routes/user.routes.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/components.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/src/App.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template}/src/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template}/src/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template}/src/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template}/src/components/ui/textarea.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template}/src/lib/utils.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/src/main.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/src/vite-env.d.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/tsconfig.node.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/README.md +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/README.md +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/nest-cli.json +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/package.json +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/src/app.controller.spec.ts +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/src/app.controller.ts +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/src/app.module.ts +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/src/app.service.ts +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/src/main.ts +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/test/app.e2e-spec.ts +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/test/jest-e2e.json +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/tsconfig.build.json +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/components.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/src/App.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template}/src/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template}/src/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template}/src/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template}/src/components/ui/textarea.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template}/src/lib/utils.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/src/main.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/src/vite-env.d.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/tsconfig.node.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{electron → desktop/electron}/javascript/template/index.html +0 -0
- /data/bundle-standalone/templates/{electron → desktop/electron}/javascript/template/main.js +0 -0
- /data/bundle-standalone/templates/{electron → desktop/electron}/javascript/template/package.json +0 -0
- /data/bundle-standalone/templates/{electron → desktop/electron}/typescript/template/index.html +0 -0
- /data/bundle-standalone/templates/{electron → desktop/electron}/typescript/template/main.ts +0 -0
- /data/bundle-standalone/templates/{electron → desktop/electron}/typescript/template/package.json +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/README.md +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/angular.json +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/package.json +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/src/app/app.component.css +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/src/app/app.component.html +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/src/app/app.component.ts +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/src/app/app.config.ts +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/src/app/app.routes.ts +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/src/assets/angular.svg +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend/public → desktop/tauri/javascript/angular-frontend/src/assets}/tauri.svg +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/src/index.html +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/src/main.ts +0 -0
- /data/bundle-standalone/templates/{angularjs/typescript/no-material-no-tailwind-template → desktop/tauri/javascript/angular-frontend}/src/styles.css +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/Cargo.toml +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/build.rs +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/capabilities/default.json +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/128x128.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/128x128@2x.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/32x32.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/Square107x107Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/Square142x142Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/Square150x150Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/Square284x284Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/Square30x30Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/Square310x310Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/Square44x44Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/Square71x71Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/Square89x89Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/StoreLogo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/icon.icns +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/icon.ico +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/icon.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/src/lib.rs +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/src/main.rs +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/src-tauri/tauri.conf.json +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/javascript/react-frontend/README.md +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → desktop/tauri/javascript/react-frontend}/components.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/javascript/react-frontend/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → desktop/tauri/javascript/react-frontend}/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/javascript/react-frontend/package.json +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app/src/assets → desktop/tauri/javascript/react-frontend/public}/tauri.svg +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/no-shadcn-no-tailwind-template → desktop/tauri/javascript/react-frontend}/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/javascript/react-frontend/src/App.css +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/javascript/react-frontend/src/App.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/no-shadcn-no-tailwind-template → desktop/tauri/javascript/react-frontend}/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template → desktop/tauri/javascript/react-frontend}/src/components/ui/button.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template → desktop/tauri/javascript/react-frontend}/src/components/ui/card.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template → desktop/tauri/javascript/react-frontend}/src/components/ui/input.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template → desktop/tauri/javascript/react-frontend}/src/components/ui/textarea.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template → desktop/tauri/javascript/react-frontend}/src/lib/utils.js +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/javascript/react-frontend/src/main.jsx +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/Cargo.toml +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/build.rs +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/capabilities/default.json +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/128x128.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/128x128@2x.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/32x32.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/Square107x107Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/Square142x142Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/Square150x150Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/Square284x284Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/Square30x30Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/Square310x310Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/Square44x44Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/Square71x71Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/Square89x89Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/StoreLogo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/icon.icns +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/icon.ico +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/icon.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/src/lib.rs +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/src/main.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/javascript/react-frontend/src-tauri/tauri.conf.json +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → desktop/tauri/javascript/react-frontend}/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/javascript/react-frontend/vite.config.js +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/README.md +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src/assets/javascript.svg +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src/assets/tauri.svg +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src/index.html +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src/main.js +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src/styles.css +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/Cargo.toml +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/build.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/capabilities/default.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/128x128.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/128x128@2x.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/32x32.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/Square107x107Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/Square142x142Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/Square150x150Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/Square284x284Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/Square30x30Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/Square310x310Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/Square44x44Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/Square71x71Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/Square89x89Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/StoreLogo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/icon.icns +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/icon.ico +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/icon.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/src/lib.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/src/main.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/tauri.conf.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/README.md +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/angular.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/jsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/package.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src/app/app.component.css +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src/app/app.component.html +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src/app/app.component.ts +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src/app/app.config.ts +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src/app/app.routes.ts +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src/assets/angular.svg +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src/assets/tauri.svg +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src/index.html +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src/main.ts +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/typescript/angular-frontend}/src/styles.css +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/Cargo.toml +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/build.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/capabilities/default.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/128x128.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/128x128@2x.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/32x32.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/Square107x107Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/Square142x142Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/Square150x150Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/Square284x284Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/Square30x30Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/Square310x310Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/Square44x44Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/Square71x71Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/Square89x89Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/StoreLogo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/icon.icns +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/icon.ico +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/icon.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/src/lib.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/src/main.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/tauri.conf.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/README.md +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → desktop/tauri/typescript/react-fronend}/components.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/index.html +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/package.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/public/tauri.svg +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/no-shadcn-tailwind-template → desktop/tauri/typescript/react-fronend}/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src/App.css +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src/App.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/no-shadcn-tailwind-template → desktop/tauri/typescript/react-fronend}/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template → desktop/tauri/typescript/react-fronend}/src/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template → desktop/tauri/typescript/react-fronend}/src/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template → desktop/tauri/typescript/react-fronend}/src/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template → desktop/tauri/typescript/react-fronend}/src/components/ui/textarea.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template → desktop/tauri/typescript/react-fronend}/src/lib/utils.ts +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src/main.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/no-shadcn-no-tailwind-template → desktop/tauri/typescript/react-fronend}/src/vite-env.d.ts +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/Cargo.toml +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/build.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/capabilities/default.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/128x128.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/128x128@2x.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/32x32.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/Square107x107Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/Square142x142Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/Square150x150Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/Square284x284Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/Square30x30Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/Square310x310Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/Square44x44Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/Square71x71Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/Square89x89Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/StoreLogo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/icon.icns +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/icon.ico +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/icon.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/src/lib.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/src/main.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/tauri.conf.json +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → desktop/tauri/typescript/react-fronend}/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/tsconfig.node.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/angular.json +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/app/app.config.server.ts +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/app/app.config.ts +0 -0
- /data/bundle-standalone/templates/{django/djangoTemplate/djangoTemplate/__init__.py → javascript/angularjs/typescript/no-material-no-tailwind-template/src/app/app.css} +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/app/app.html +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/app/app.routes.server.ts +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/app/app.routes.ts +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/app/app.spec.ts +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/app/app.ts +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/index.html +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/main.server.ts +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/main.ts +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/server.ts +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/angular-frontend → javascript/angularjs/typescript/no-material-no-tailwind-template}/src/styles.css +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/tsconfig.spec.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/README.md +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/__tests__/setup.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/__tests__/user.test.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/controllers/user.controller.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/db/database.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/index.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/jest.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/middleware/errorHandler.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/middleware/security.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/middleware/validation.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/models/user.model.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/routes/index.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/routes/user.routes.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/utils/logger.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend → javascript/expressjs/javascript/basic-expressjs-template}/controllers/user.controller.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend → javascript/expressjs/javascript/basic-expressjs-template}/index.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend → javascript/expressjs/javascript/basic-expressjs-template}/models/user.model.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend → javascript/expressjs/javascript/basic-expressjs-template}/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend → javascript/expressjs/javascript/basic-expressjs-template}/routes/user.routes.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/README.md +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/__tests__/setup.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/__tests__/user.test.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/db/database.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/index.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/jest.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/middleware/errorHandler.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/middleware/security.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/middleware/validation.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/models/user.model.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/routes/index.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/routes/user.routes.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/types/index.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/utils/logger.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend → javascript/expressjs/typescript/basic-expressjs-template}/controllers/user.controller.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend → javascript/expressjs/typescript/basic-expressjs-template}/index.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend → javascript/expressjs/typescript/basic-expressjs-template}/models/user.model.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend → javascript/expressjs/typescript/basic-expressjs-template}/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend → javascript/expressjs/typescript/basic-expressjs-template}/routes/user.routes.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/README.md +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/nest-cli.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/src/app.controller.spec.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/src/app.controller.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/src/app.module.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/src/app.service.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/src/main.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/test/app.e2e-spec.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/test/jest-e2e.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/tsconfig.build.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-no-tailwind-template/src → javascript/nextjs/javascript/no-src-no-tailwind-template}/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/app/layout.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/app/page.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/app/page.module.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/next.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-no-tailwind-template → javascript/nextjs/javascript/no-src-no-tailwind-template}/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-no-tailwind-template → javascript/nextjs/javascript/no-src-no-tailwind-template}/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-no-tailwind-template → javascript/nextjs/javascript/no-src-no-tailwind-template}/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-no-tailwind-template → javascript/nextjs/javascript/no-src-no-tailwind-template}/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-no-tailwind-template → javascript/nextjs/javascript/no-src-no-tailwind-template}/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-shadcn-tailwind-template/src → javascript/nextjs/javascript/no-src-shadcn-tailwind-template}/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-shadcn-tailwind-template/src → javascript/nextjs/javascript/no-src-shadcn-tailwind-template}/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/app/layout.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/app/page.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/components.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/src → javascript/nextjs/javascript/no-src-shadcn-tailwind-template}/lib/utils.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/next.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-tailwind-template → javascript/nextjs/javascript/no-src-shadcn-tailwind-template}/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-shadcn-tailwind-template → javascript/nextjs/javascript/no-src-shadcn-tailwind-template}/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-shadcn-tailwind-template → javascript/nextjs/javascript/no-src-shadcn-tailwind-template}/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-shadcn-tailwind-template → javascript/nextjs/javascript/no-src-shadcn-tailwind-template}/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-shadcn-tailwind-template → javascript/nextjs/javascript/no-src-shadcn-tailwind-template}/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-shadcn-tailwind-template → javascript/nextjs/javascript/no-src-shadcn-tailwind-template}/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-tailwind-template/src → javascript/nextjs/javascript/no-src-tailwind-template}/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript → javascript/nextjs/javascript}/no-src-tailwind-template/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/app/layout.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/app/page.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/next.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → javascript/nextjs/javascript/no-src-tailwind-template}/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-tailwind-template → javascript/nextjs/javascript/no-src-tailwind-template}/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-tailwind-template → javascript/nextjs/javascript/no-src-tailwind-template}/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-tailwind-template → javascript/nextjs/javascript/no-src-tailwind-template}/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-tailwind-template → javascript/nextjs/javascript/no-src-tailwind-template}/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-tailwind-template → javascript/nextjs/javascript/no-src-tailwind-template}/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/next.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-no-tailwind-template → javascript/nextjs/javascript/src-no-tailwind-template}/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-no-tailwind-template → javascript/nextjs/javascript/src-no-tailwind-template}/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-no-tailwind-template → javascript/nextjs/javascript/src-no-tailwind-template}/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-no-tailwind-template → javascript/nextjs/javascript/src-no-tailwind-template}/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-no-tailwind-template → javascript/nextjs/javascript/src-no-tailwind-template}/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-no-tailwind-template → javascript/nextjs/javascript/src-no-tailwind-template/src}/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/src/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/src/app/layout.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/src/app/page.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/src/app/page.module.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/components.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/next.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-tailwind-template → javascript/nextjs/javascript/src-shadcn-tailwind-template}/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → javascript/nextjs/javascript/src-shadcn-tailwind-template}/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → javascript/nextjs/javascript/src-shadcn-tailwind-template}/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → javascript/nextjs/javascript/src-shadcn-tailwind-template}/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → javascript/nextjs/javascript/src-shadcn-tailwind-template}/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → javascript/nextjs/javascript/src-shadcn-tailwind-template}/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → javascript/nextjs/javascript/src-shadcn-tailwind-template/src}/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → javascript/nextjs/javascript/src-shadcn-tailwind-template/src}/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/src/app/layout.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/src/app/page.js +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → javascript/nextjs/javascript/src-shadcn-tailwind-template}/src/components/ui/button.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → javascript/nextjs/javascript/src-shadcn-tailwind-template}/src/components/ui/card.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → javascript/nextjs/javascript/src-shadcn-tailwind-template}/src/components/ui/input.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → javascript/nextjs/javascript/src-shadcn-tailwind-template}/src/components/ui/textarea.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → javascript/nextjs/javascript/src-shadcn-tailwind-template}/src/lib/utils.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/next.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → javascript/nextjs/javascript/src-tailwind-template}/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-tailwind-template → javascript/nextjs/javascript/src-tailwind-template}/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-tailwind-template → javascript/nextjs/javascript/src-tailwind-template}/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-tailwind-template → javascript/nextjs/javascript/src-tailwind-template}/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-tailwind-template → javascript/nextjs/javascript/src-tailwind-template}/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-tailwind-template → javascript/nextjs/javascript/src-tailwind-template}/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-tailwind-template → javascript/nextjs/javascript/src-tailwind-template/src}/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript → javascript/nextjs/javascript}/src-tailwind-template/src/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/src/app/layout.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/src/app/page.js +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-no-tailwind-template → javascript/nextjs/typescript/no-src-no-tailwind-template}/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-no-tailwind-template/src → javascript/nextjs/typescript/no-src-no-tailwind-template}/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/app/layout.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/app/page.module.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/app/page.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-no-tailwind-template → javascript/nextjs/typescript/no-src-no-tailwind-template}/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-no-tailwind-template → javascript/nextjs/typescript/no-src-no-tailwind-template}/next.config.ts +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-no-tailwind-template → javascript/nextjs/typescript/no-src-no-tailwind-template}/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-no-tailwind-template → javascript/nextjs/typescript/no-src-no-tailwind-template}/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-no-tailwind-template → javascript/nextjs/typescript/no-src-no-tailwind-template}/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-no-tailwind-template → javascript/nextjs/typescript/no-src-no-tailwind-template}/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-no-tailwind-template → javascript/nextjs/typescript/no-src-no-tailwind-template}/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template/src → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template/src → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/app/layout.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/app/page.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template/src → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template/src → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template/src → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template/src → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/components/ui/textarea.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/components.json +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template/src → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/lib/utils.ts +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/next.config.ts +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-tailwind-template → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-tailwind-template → javascript/nextjs/typescript/no-src-tailwind-template}/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-tailwind-template/src → javascript/nextjs/typescript/no-src-tailwind-template}/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/app/layout.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/app/page.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-tailwind-template → javascript/nextjs/typescript/no-src-tailwind-template}/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-tailwind-template → javascript/nextjs/typescript/no-src-tailwind-template}/next.config.ts +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-tailwind-template → javascript/nextjs/typescript/no-src-tailwind-template}/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-tailwind-template → javascript/nextjs/typescript/no-src-tailwind-template}/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-tailwind-template → javascript/nextjs/typescript/no-src-tailwind-template}/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-tailwind-template → javascript/nextjs/typescript/no-src-tailwind-template}/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-tailwind-template → javascript/nextjs/typescript/no-src-tailwind-template}/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/src/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/src/app/layout.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/src/app/page.module.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/src/app/page.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/src/app/layout.tsx +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/nextjs/typescript/src-shadcn-tailwind-template}/src/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/nextjs/typescript/src-shadcn-tailwind-template}/src/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/nextjs/typescript/src-shadcn-tailwind-template}/src/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/nextjs/typescript/src-shadcn-tailwind-template}/src/components/ui/textarea.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs/typescript/shadcn-tailwind-template/app → javascript/nextjs/typescript/src-shadcn-tailwind-template/src}/lib/utils.ts +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-no-tailwind-template/app/app.vue +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-no-tailwind-template/nuxt.config.ts +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-no-tailwind-template/pnpm-lock.yaml +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-no-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-no-tailwind-template/public/robots.txt +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-no-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-tailwind-template/app/app.vue +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-tailwind-template/nuxt.config.ts +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-tailwind-template/pnpm-lock.yaml +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-tailwind-template/public/robots.txt +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/shadcn-tailwind-template/app/app.vue +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/shadcn-tailwind-template/nuxt.config.ts +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/shadcn-tailwind-template/pnpm-lock.yaml +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/shadcn-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/shadcn-tailwind-template/public/robots.txt +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/shadcn-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → javascript/preactjs/javascript/template}/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/no-shadcn-no-tailwind-template → javascript/preactjs/javascript/template}/src/index.css +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/no-shadcn-no-tailwind-template → javascript/preactjs/typescript/template}/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/no-shadcn-no-tailwind-template → javascript/preactjs/typescript/template}/src/index.css +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/no-shadcn-no-tailwind-template → javascript/preactjs/typescript/template}/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-no-tailwind-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-no-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/no-shadcn-tailwind-template → javascript/reactjs/vite/javascript/no-shadcn-no-tailwind-template}/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-no-tailwind-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-no-tailwind-template/src/App.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → javascript/reactjs/vite/javascript/no-shadcn-no-tailwind-template}/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/no-shadcn-tailwind-template → javascript/reactjs/vite/javascript/no-shadcn-no-tailwind-template}/src/index.css +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-no-tailwind-template/src/main.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-no-tailwind-template/vite.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-tailwind-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → javascript/reactjs/vite/javascript/no-shadcn-tailwind-template}/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-tailwind-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-tailwind-template/src/App.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/no-shadcn-no-tailwind-template → javascript/reactjs/vite/javascript/no-shadcn-tailwind-template}/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-tailwind-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-tailwind-template/src/main.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-tailwind-template/vite.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/components.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/shadcn-tailwind-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/shadcn-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/shadcn-tailwind-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/shadcn-tailwind-template/src/App.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/no-shadcn-tailwind-template → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/src/components/ui/button.jsx +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/src/components/ui/card.jsx +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/src/components/ui/input.jsx +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/src/components/ui/textarea.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/shadcn-tailwind-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/src/lib/utils.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/shadcn-tailwind-template/src/main.jsx +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/shadcn-tailwind-template/vite.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/no-shadcn-no-tailwind-template}/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/src/App.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → javascript/reactjs/vite/typescript/no-shadcn-no-tailwind-template}/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/src/main.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/no-shadcn-tailwind-template → javascript/reactjs/vite/typescript/no-shadcn-no-tailwind-template}/src/vite-env.d.ts +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/no-shadcn-tailwind-template → javascript/reactjs/vite/typescript/no-shadcn-no-tailwind-template}/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/tsconfig.node.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/src/App.tsx +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/typescript/no-shadcn-tailwind-template}/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/src/main.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → javascript/reactjs/vite/typescript/no-shadcn-tailwind-template}/src/vite-env.d.ts +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/tsconfig.node.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/shadcn-tailwind-template}/components.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/src/App.tsx +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/shadcn-tailwind-template}/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/shadcn-tailwind-template}/src/lib/utils.ts +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/src/main.tsx +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/shadcn-tailwind-template}/src/vite-env.d.ts +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/shadcn-tailwind-template}/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/tsconfig.node.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/Dockerfile +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/app/app.css +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/app/root.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/app/routes/home.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/app/routes.ts +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/app/welcome/logo-dark.svg +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/app/welcome/logo-light.svg +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/app/welcome/welcome.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/react-router.config.ts +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/Dockerfile +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/app/app.css +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/app/root.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/app/routes/home.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/app/routes.ts +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/app/welcome/logo-dark.svg +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/app/welcome/logo-light.svg +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/app/welcome/welcome.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/react-router.config.ts +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/Dockerfile +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/app.css +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/components/ui/textarea.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/root.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/routes/home.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/routes.ts +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/welcome/logo-dark.svg +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/welcome/logo-light.svg +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/welcome/welcome.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/components.json +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/package-lock.json +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/react-router.config.ts +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/e2e/vue.spec.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/playwright.config.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/App.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/assets/base.css +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/assets/logo.svg +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/assets/main.css +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/HelloWorld.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/TheWelcome.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/WelcomeItem.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/__tests__/HelloWorld.spec.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/icons/IconCommunity.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/icons/IconDocumentation.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/icons/IconEcosystem.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/icons/IconSupport.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/icons/IconTooling.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/ui/BaseButton.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/ui/BaseCard.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/ui/BaseInput.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/ui/BaseTextarea.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/main.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/router/index.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/stores/counter.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/views/AboutView.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/views/HomeView.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/vite.config.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/vitest.config.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/nightwatch.conf.cjs +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/App.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/assets/base.css +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/assets/logo.svg +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/assets/main.css +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/components/HelloWorld.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/components/TheWelcome.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/components/WelcomeItem.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/components/__tests__/HelloWorld.spec.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/components/icons/IconCommunity.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/components/icons/IconDocumentation.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/components/icons/IconEcosystem.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/components/icons/IconSupport.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/components/icons/IconTooling.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/main.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/router/index.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/stores/counter.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/views/AboutView.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/views/HomeView.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/tests/e2e/example.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/vite.config.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/vitest.config.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/e2e/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/e2e/vue.spec.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/env.d.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/eslint.config.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/playwright.config.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/App.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/assets/base.css +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/assets/logo.svg +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/assets/main.css +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/HelloWorld.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/TheWelcome.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/WelcomeItem.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/__tests__/HelloWorld.spec.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/icons/IconCommunity.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/icons/IconDocumentation.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/icons/IconEcosystem.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/icons/IconSupport.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/icons/IconTooling.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/ui/BaseButton.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/ui/BaseCard.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/ui/BaseInput.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/ui/BaseTextarea.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/main.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/router/index.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/stores/counter.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/views/AboutView.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/views/HomeView.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/tsconfig.node.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/tsconfig.vitest.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/vitest.config.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/e2e/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/e2e/vue.spec.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/env.d.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/eslint.config.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/playwright.config.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/App.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/assets/base.css +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/assets/logo.svg +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/assets/main.css +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/components/HelloWorld.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/components/TheWelcome.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/components/WelcomeItem.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/components/__tests__/HelloWorld.spec.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/components/icons/IconCommunity.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/components/icons/IconDocumentation.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/components/icons/IconEcosystem.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/components/icons/IconSupport.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/components/icons/IconTooling.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/main.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/router/index.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/stores/counter.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/views/AboutView.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/views/HomeView.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/tsconfig.node.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/tsconfig.vitest.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/vitest.config.ts +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/App.jsx +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/Gemfile +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/README.md +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/__tests__/App.test.tsx +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/app/build.gradle +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/app/debug.keystore +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/app/proguard-rules.pro +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/app/src/main/AndroidManifest.xml +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/app/src/main/java/com/template/MainActivity.kt +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/app/src/main/java/com/template/MainApplication.kt +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/app/src/main/res/drawable/rn_edit_text_material.xml +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/app/src/main/res/values/strings.xml +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/app/src/main/res/values/styles.xml +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/build.gradle +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/gradle/wrapper/gradle-wrapper.properties +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/gradle.properties +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/gradlew +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/gradlew.bat +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/android/settings.gradle +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/app.json +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/babel.config.js +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/index.js +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/ios/Podfile +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/ios/template/AppDelegate.swift +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/ios/template/Images.xcassets/AppIcon.appiconset/Contents.json +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/ios/template/Images.xcassets/Contents.json +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/ios/template/Info.plist +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/ios/template/LaunchScreen.storyboard +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/ios/template/PrivacyInfo.xcprivacy +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/ios/template.xcodeproj/project.pbxproj +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/ios/template.xcodeproj/xcshareddata/xcschemes/template.xcscheme +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/jest.config.js +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/metro.config.js +0 -0
- /data/bundle-standalone/templates/{react-native/javascript/template → mobile/react-native/javascript/react-native-cli-template}/package.json +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/App.tsx +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/Gemfile +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/README.md +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/__tests__/App.test.tsx +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/app/build.gradle +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/app/debug.keystore +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/app/proguard-rules.pro +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/app/src/main/AndroidManifest.xml +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/app/src/main/java/com/template/MainActivity.kt +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/app/src/main/java/com/template/MainApplication.kt +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/app/src/main/res/drawable/rn_edit_text_material.xml +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/app/src/main/res/values/strings.xml +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/app/src/main/res/values/styles.xml +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/build.gradle +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/gradle/wrapper/gradle-wrapper.properties +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/gradle.properties +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/gradlew +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/gradlew.bat +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/android/settings.gradle +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/app.json +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/babel.config.js +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/index.js +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/ios/Podfile +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/ios/template/AppDelegate.swift +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/ios/template/Images.xcassets/AppIcon.appiconset/Contents.json +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/ios/template/Images.xcassets/Contents.json +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/ios/template/Info.plist +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/ios/template/LaunchScreen.storyboard +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/ios/template/PrivacyInfo.xcprivacy +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/ios/template.xcodeproj/project.pbxproj +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/ios/template.xcodeproj/xcshareddata/xcschemes/template.xcscheme +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/jest.config.js +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/metro.config.js +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/package.json +0 -0
- /data/bundle-standalone/templates/{react-native/typescript/template → mobile/react-native/typescript/react-native-cli-template}/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{flask/flask-project-template/HISTORY.md → python/bottle/template/README.md} +0 -0
- /data/bundle-standalone/templates/{flask/flask-project-template/project_name/ext/__init__.py → python/dash/template/README.md} +0 -0
- /data/bundle-standalone/templates/{flask/flask-project-template/tests → python/django/djangoTemplate/djangoTemplate}/__init__.py +0 -0
- /data/bundle-standalone/templates/{django → python/django}/djangoTemplate/djangoTemplate/asgi.py +0 -0
- /data/bundle-standalone/templates/{django → python/django}/djangoTemplate/djangoTemplate/settings.py +0 -0
- /data/bundle-standalone/templates/{django → python/django}/djangoTemplate/djangoTemplate/urls.py +0 -0
- /data/bundle-standalone/templates/{django → python/django}/djangoTemplate/djangoTemplate/wsgi.py +0 -0
- /data/bundle-standalone/templates/{django → python/django}/djangoTemplate/manage.py +0 -0
- /data/bundle-standalone/templates/{ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/apple-touch-icon-precomposed.png → python/falcon/template/README.md} +0 -0
- /data/bundle-standalone/templates/{ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/apple-touch-icon.png → python/fastapi/template/README.md} +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/ABOUT_THIS_TEMPLATE.md +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/CONTRIBUTING.md +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/Containerfile +0 -0
- /data/bundle-standalone/templates/{ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/favicon.ico → python/flask/flask-project-template/HISTORY.md} +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/LICENSE +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/MANIFEST.in +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/Makefile +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/README.md +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/apply.sh +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/docs/index.md +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/mkdocs.yml +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/VERSION +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/__init__.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/__main__.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/base.py +0 -0
- /data/bundle-standalone/templates/{ruby/ruby-on-rails-boilerplate-template/app/assets/config/esbuild.js → python/flask/flask-project-template/project_name/ext/__init__.py} +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/admin.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/auth.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/commands.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/database.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/restapi/__init__.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/restapi/resources.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/webui/__init__.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/webui/templates/index.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/webui/templates/product.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/webui/views.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/models.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/requirements-base.txt +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/requirements-test.txt +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/requirements.txt +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/settings.toml +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/setup.py +0 -0
- /data/bundle-standalone/templates/{ruby/ruby-on-rails-boilerplate-template/public/apple-touch-icon-precomposed.png → python/flask/flask-project-template/tests/__init__.py} +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/tests/conftest.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/tests/test_api.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/wsgi.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/LICENSE +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/README.md +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/app.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/flask_screenshot.png +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/requirements.txt +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/templates/about.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/templates/contact.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/templates/includes/_navbar.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/templates/index.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/templates/layout.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/templates/service.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/LICENSE.MD +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/Pipfile +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/Pipfile.lock +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/README.md +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/__init__.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/configuration.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/forms.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/models.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/templates/base.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/templates/index.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/templates/list.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/templates/login.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/templates/new.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/views.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/run.py +0 -0
- /data/bundle-standalone/templates/{ruby/ruby-on-rails-boilerplate-template/public/apple-touch-icon.png → python/pyramid/template/README.md} +0 -0
- /data/bundle-standalone/templates/{ruby/ruby-on-rails-boilerplate-template/public/favicon.ico → python/quart/template/README.md} +0 -0
|
@@ -667,8 +667,9 @@ function generateBanner() {
|
|
|
667
667
|
function generateVersionBanner() {
|
|
668
668
|
const version = (0,_utils_js__WEBPACK_IMPORTED_MODULE_3__/* .getPackageVersion */ .RB)();
|
|
669
669
|
return (0,boxen__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .A)(chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#00d2d3')('📦 Version: ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#ffa502')(`v${version}`) +
|
|
670
|
-
chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#95afc0')(' • ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#00d2d3')('🎯 Frameworks: ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#ffa502')('
|
|
670
|
+
chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#95afc0')(' • ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#00d2d3')('🎯 Frameworks: ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#ffa502')('75') +
|
|
671
671
|
chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#95afc0')(' • ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#00d2d3')('📋 Templates: ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#ffa502')('50+') +
|
|
672
|
+
chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#95afc0')(' • ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#00d2d3')('📋 Commands: ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#ffa502')('22') +
|
|
672
673
|
chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#95afc0')(' • ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#00d2d3')('⚡ Status: ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#10ac84')('Ready to scaffold!'), {
|
|
673
674
|
padding: { top: 0, bottom: 0, left: 2, right: 2 },
|
|
674
675
|
borderStyle: 'round',
|
|
@@ -13740,13 +13741,13 @@ function showFeatureDisclaimer() {
|
|
|
13740
13741
|
* Prompt for feature category selection
|
|
13741
13742
|
*/
|
|
13742
13743
|
async function promptFeatureCategory(availableFeatures) {
|
|
13743
|
-
const { feature } = await
|
|
13744
|
+
const { feature } = await inquirer.prompt([
|
|
13744
13745
|
{
|
|
13745
13746
|
type: 'list',
|
|
13746
13747
|
name: 'feature',
|
|
13747
|
-
message: `${
|
|
13748
|
+
message: `${chalk.blue('❯')} Choose a feature category to add:`,
|
|
13748
13749
|
choices: availableFeatures.map(feature => ({
|
|
13749
|
-
name: `${
|
|
13750
|
+
name: `${chalk.green('▸')} ${capitalize(feature)}`,
|
|
13750
13751
|
value: feature,
|
|
13751
13752
|
short: feature
|
|
13752
13753
|
})),
|
|
@@ -13759,13 +13760,13 @@ async function promptFeatureCategory(availableFeatures) {
|
|
|
13759
13760
|
* Prompt for feature provider selection
|
|
13760
13761
|
*/
|
|
13761
13762
|
async function promptFeatureProvider(category, providers) {
|
|
13762
|
-
const { provider } = await
|
|
13763
|
+
const { provider } = await inquirer.prompt([
|
|
13763
13764
|
{
|
|
13764
13765
|
type: 'list',
|
|
13765
13766
|
name: 'provider',
|
|
13766
|
-
message: `${
|
|
13767
|
+
message: `${chalk.blue('❯')} Choose a ${category} provider:`,
|
|
13767
13768
|
choices: providers.map(provider => ({
|
|
13768
|
-
name: `${
|
|
13769
|
+
name: `${chalk.green('▸')} ${capitalize(provider.replace(/-/g, ' '))}`,
|
|
13769
13770
|
value: provider,
|
|
13770
13771
|
short: provider
|
|
13771
13772
|
})),
|
|
@@ -13794,76 +13795,76 @@ function isFrameworkSupported(featureConfig, framework) {
|
|
|
13794
13795
|
* Show enhanced setup instructions for specific features
|
|
13795
13796
|
*/
|
|
13796
13797
|
function showEnhancedSetupInstructions(feature, provider) {
|
|
13797
|
-
console.log(
|
|
13798
|
+
console.log(chalk.green(`\n🔧 Setup Instructions for ${chalk.bold(provider)} (${feature}):`));
|
|
13798
13799
|
switch (feature) {
|
|
13799
13800
|
case 'auth':
|
|
13800
|
-
console.log(
|
|
13801
|
-
console.log(
|
|
13802
|
-
console.log(
|
|
13803
|
-
console.log(
|
|
13801
|
+
console.log(chalk.hex('#95afc0')('1. Configure authentication provider credentials'));
|
|
13802
|
+
console.log(chalk.hex('#95afc0')('2. Add environment variables to .env file'));
|
|
13803
|
+
console.log(chalk.hex('#95afc0')('3. Set up authentication routes and middleware'));
|
|
13804
|
+
console.log(chalk.hex('#95afc0')('4. Update your app configuration'));
|
|
13804
13805
|
break;
|
|
13805
13806
|
case 'ai':
|
|
13806
|
-
console.log(
|
|
13807
|
-
console.log(
|
|
13808
|
-
console.log(
|
|
13809
|
-
console.log(
|
|
13807
|
+
console.log(chalk.hex('#95afc0')('1. Get API key from your AI provider'));
|
|
13808
|
+
console.log(chalk.hex('#95afc0')('2. Add API key to .env file'));
|
|
13809
|
+
console.log(chalk.hex('#95afc0')('3. Test AI integration endpoints'));
|
|
13810
|
+
console.log(chalk.hex('#95afc0')('4. Configure rate limiting and error handling'));
|
|
13810
13811
|
break;
|
|
13811
13812
|
case 'database':
|
|
13812
|
-
console.log(
|
|
13813
|
-
console.log(
|
|
13814
|
-
console.log(
|
|
13815
|
-
console.log(
|
|
13813
|
+
console.log(chalk.hex('#95afc0')('1. Set up your database connection'));
|
|
13814
|
+
console.log(chalk.hex('#95afc0')('2. Update connection string in .env'));
|
|
13815
|
+
console.log(chalk.hex('#95afc0')('3. Run migrations if needed'));
|
|
13816
|
+
console.log(chalk.hex('#95afc0')('4. Test database connectivity'));
|
|
13816
13817
|
break;
|
|
13817
13818
|
case 'aws':
|
|
13818
|
-
console.log(
|
|
13819
|
-
console.log(
|
|
13820
|
-
console.log(
|
|
13821
|
-
console.log(
|
|
13819
|
+
console.log(chalk.hex('#95afc0')('1. Configure AWS credentials (AWS CLI or IAM roles)'));
|
|
13820
|
+
console.log(chalk.hex('#95afc0')('2. Set up required AWS permissions'));
|
|
13821
|
+
console.log(chalk.hex('#95afc0')('3. Update AWS region in configuration'));
|
|
13822
|
+
console.log(chalk.hex('#95afc0')('4. Test AWS service integration'));
|
|
13822
13823
|
break;
|
|
13823
13824
|
case 'payment':
|
|
13824
|
-
console.log(
|
|
13825
|
-
console.log(
|
|
13826
|
-
console.log(
|
|
13827
|
-
console.log(
|
|
13825
|
+
console.log(chalk.hex('#95afc0')('1. Get API keys from payment provider'));
|
|
13826
|
+
console.log(chalk.hex('#95afc0')('2. Add keys to .env file (separate test/live keys)'));
|
|
13827
|
+
console.log(chalk.hex('#95afc0')('3. Configure webhooks for payment events'));
|
|
13828
|
+
console.log(chalk.hex('#95afc0')('4. Test payment flow in sandbox mode'));
|
|
13828
13829
|
break;
|
|
13829
13830
|
case 'storage':
|
|
13830
|
-
console.log(
|
|
13831
|
-
console.log(
|
|
13832
|
-
console.log(
|
|
13833
|
-
console.log(
|
|
13831
|
+
console.log(chalk.hex('#95afc0')('1. Configure storage provider credentials'));
|
|
13832
|
+
console.log(chalk.hex('#95afc0')('2. Set up bucket/container permissions'));
|
|
13833
|
+
console.log(chalk.hex('#95afc0')('3. Add storage configuration to .env'));
|
|
13834
|
+
console.log(chalk.hex('#95afc0')('4. Test file upload/download functionality'));
|
|
13834
13835
|
break;
|
|
13835
13836
|
case 'monitoring':
|
|
13836
|
-
console.log(
|
|
13837
|
-
console.log(
|
|
13838
|
-
console.log(
|
|
13839
|
-
console.log(
|
|
13837
|
+
console.log(chalk.hex('#95afc0')('1. Get monitoring service API key'));
|
|
13838
|
+
console.log(chalk.hex('#95afc0')('2. Add configuration to .env file'));
|
|
13839
|
+
console.log(chalk.hex('#95afc0')('3. Set up error tracking and alerts'));
|
|
13840
|
+
console.log(chalk.hex('#95afc0')('4. Configure performance monitoring'));
|
|
13840
13841
|
break;
|
|
13841
13842
|
case 'analytics':
|
|
13842
|
-
console.log(
|
|
13843
|
-
console.log(
|
|
13844
|
-
console.log(
|
|
13845
|
-
console.log(
|
|
13843
|
+
console.log(chalk.hex('#95afc0')('1. Get analytics service tracking ID'));
|
|
13844
|
+
console.log(chalk.hex('#95afc0')('2. Add tracking configuration'));
|
|
13845
|
+
console.log(chalk.hex('#95afc0')('3. Set up custom events and goals'));
|
|
13846
|
+
console.log(chalk.hex('#95afc0')('4. Verify data collection'));
|
|
13846
13847
|
break;
|
|
13847
13848
|
case 'docker':
|
|
13848
|
-
console.log(
|
|
13849
|
-
console.log(
|
|
13850
|
-
console.log(
|
|
13851
|
-
console.log(
|
|
13849
|
+
console.log(chalk.hex('#95afc0')('1. Install Docker on your system'));
|
|
13850
|
+
console.log(chalk.hex('#95afc0')('2. Run: docker-compose up -d'));
|
|
13851
|
+
console.log(chalk.hex('#95afc0')('3. Your app will be available at the configured port'));
|
|
13852
|
+
console.log(chalk.hex('#95afc0')('4. Check logs: docker-compose logs'));
|
|
13852
13853
|
break;
|
|
13853
13854
|
case 'testing':
|
|
13854
|
-
console.log(
|
|
13855
|
-
console.log(
|
|
13856
|
-
console.log(
|
|
13857
|
-
console.log(
|
|
13855
|
+
console.log(chalk.hex('#95afc0')('1. Configure test environment variables'));
|
|
13856
|
+
console.log(chalk.hex('#95afc0')('2. Set up test database/services'));
|
|
13857
|
+
console.log(chalk.hex('#95afc0')('3. Run tests: npm test'));
|
|
13858
|
+
console.log(chalk.hex('#95afc0')('4. Set up CI/CD test automation'));
|
|
13858
13859
|
break;
|
|
13859
13860
|
default:
|
|
13860
|
-
console.log(
|
|
13861
|
-
console.log(
|
|
13862
|
-
console.log(
|
|
13863
|
-
console.log(
|
|
13861
|
+
console.log(chalk.hex('#95afc0')(`1. Check the ${feature} configuration files`));
|
|
13862
|
+
console.log(chalk.hex('#95afc0')('2. Update .env file with necessary variables'));
|
|
13863
|
+
console.log(chalk.hex('#95afc0')('3. Test the integration'));
|
|
13864
|
+
console.log(chalk.hex('#95afc0')('4. Review documentation for advanced setup'));
|
|
13864
13865
|
}
|
|
13865
|
-
console.log(
|
|
13866
|
-
console.log(
|
|
13866
|
+
console.log(chalk.hex('#95afc0')('\n💡 Check your project files for any additional setup instructions'));
|
|
13867
|
+
console.log(chalk.hex('#95afc0')('🔗 Refer to the provider\'s official documentation for detailed configuration'));
|
|
13867
13868
|
}
|
|
13868
13869
|
/**
|
|
13869
13870
|
* Show help for add command
|
|
@@ -13888,7 +13889,7 @@ async function showAddHelp() {
|
|
|
13888
13889
|
{ command: 'add', description: 'Interactive feature selection' },
|
|
13889
13890
|
{ command: 'add auth', description: 'Show auth providers dropdown' },
|
|
13890
13891
|
{ command: 'add auth clerk', description: 'Add Clerk authentication' },
|
|
13891
|
-
{ command: 'add aws ec2', description: 'Add AWS EC2 integration' },
|
|
13892
|
+
{ command: 'add aws ec2,s3,ecs', description: 'Add AWS EC2, S3, and ECS integration' },
|
|
13892
13893
|
{ command: 'add ai openai', description: 'Add OpenAI integration' },
|
|
13893
13894
|
{ command: 'add database postgres', description: 'Add PostgreSQL integration' },
|
|
13894
13895
|
{ command: 'add payment stripe', description: 'Add Stripe payment integration' },
|
|
@@ -13921,7 +13922,7 @@ async function showAddHelp() {
|
|
|
13921
13922
|
'Use "pi add --list" to see detailed feature information'
|
|
13922
13923
|
]
|
|
13923
13924
|
};
|
|
13924
|
-
(0,_utils_helpFormatter_js__WEBPACK_IMPORTED_MODULE_6__
|
|
13925
|
+
(0,_utils_helpFormatter_js__WEBPACK_IMPORTED_MODULE_6__.createStandardHelp)(helpConfig);
|
|
13925
13926
|
}
|
|
13926
13927
|
/**
|
|
13927
13928
|
* Main add command handler with enhanced syntax support
|
|
@@ -13936,6 +13937,49 @@ async function addCommand(feature, provider, options = {}) {
|
|
|
13936
13937
|
try {
|
|
13937
13938
|
// Ensure features are loaded first
|
|
13938
13939
|
await (0,_utils_featureInstaller_js__WEBPACK_IMPORTED_MODULE_7__/* .ensureFeaturesLoaded */ .vV)();
|
|
13940
|
+
// Batch processing: support comma-separated features and/or providers.
|
|
13941
|
+
// Examples supported:
|
|
13942
|
+
// - pi add aws s3,ec2,ecs (single feature, multiple providers)
|
|
13943
|
+
// - pi add auth,database (multiple features, interactive providers)
|
|
13944
|
+
// - pi add auth,database clerk,prisma (paired lists)
|
|
13945
|
+
if (feature && (feature.includes(',') || (provider && provider.includes(',')))) {
|
|
13946
|
+
const featureList = feature.split(',').map(f => f.trim()).filter(Boolean);
|
|
13947
|
+
const providerList = provider ? provider.split(',').map(p => p.trim()).filter(Boolean) : [];
|
|
13948
|
+
// Helper to dispatch a single pair
|
|
13949
|
+
const runSingle = async (f, p) => {
|
|
13950
|
+
// call addCommand recursively for each pair; avoid infinite loop as we pass single items
|
|
13951
|
+
await addCommand(f, p, options);
|
|
13952
|
+
};
|
|
13953
|
+
// If only one feature but multiple providers -> add each provider for that feature
|
|
13954
|
+
if (featureList.length === 1 && providerList.length > 0) {
|
|
13955
|
+
for (const p of providerList) {
|
|
13956
|
+
await runSingle(featureList[0], p);
|
|
13957
|
+
}
|
|
13958
|
+
return;
|
|
13959
|
+
}
|
|
13960
|
+
// If multiple features and equal number of providers -> pair them
|
|
13961
|
+
if (featureList.length > 1 && providerList.length === featureList.length) {
|
|
13962
|
+
for (let i = 0; i < featureList.length; i++) {
|
|
13963
|
+
await runSingle(featureList[i], providerList[i]);
|
|
13964
|
+
}
|
|
13965
|
+
return;
|
|
13966
|
+
}
|
|
13967
|
+
// If multiple features and a single provider -> apply provider to all features
|
|
13968
|
+
if (featureList.length > 1 && providerList.length === 1) {
|
|
13969
|
+
for (const f of featureList) {
|
|
13970
|
+
await runSingle(f, providerList[0]);
|
|
13971
|
+
}
|
|
13972
|
+
return;
|
|
13973
|
+
}
|
|
13974
|
+
// If multiple features and no providers -> process each feature (interactive provider selection inside)
|
|
13975
|
+
if (featureList.length > 1 && providerList.length === 0) {
|
|
13976
|
+
for (const f of featureList) {
|
|
13977
|
+
await runSingle(f, undefined);
|
|
13978
|
+
}
|
|
13979
|
+
return;
|
|
13980
|
+
}
|
|
13981
|
+
// Fallback: if single feature and single provider (shouldn't reach here) just continue
|
|
13982
|
+
}
|
|
13939
13983
|
// Handle list flag
|
|
13940
13984
|
if (options.list || feature === '--list' || feature === '-l') {
|
|
13941
13985
|
await listAvailableFeatures();
|
|
@@ -14009,73 +14053,6 @@ async function addCommand(feature, provider, options = {}) {
|
|
|
14009
14053
|
}
|
|
14010
14054
|
const featuresConfig = await getFeaturesConfig();
|
|
14011
14055
|
const availableFeatures = Object.keys(featuresConfig.features || {});
|
|
14012
|
-
// Handle different command syntax cases
|
|
14013
|
-
if (!feature) {
|
|
14014
|
-
// Case 1: "pi add" - Show interactive dropdown for all features
|
|
14015
|
-
const selectedFeature = await promptFeatureCategory(availableFeatures);
|
|
14016
|
-
if (!selectedFeature)
|
|
14017
|
-
return;
|
|
14018
|
-
feature = selectedFeature;
|
|
14019
|
-
}
|
|
14020
|
-
// Validate feature exists
|
|
14021
|
-
if (!availableFeatures.includes(feature)) {
|
|
14022
|
-
console.log(chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.red(`❌ Feature '${feature}' not found`));
|
|
14023
|
-
console.log(chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.yellow(`💡 Available features: ${availableFeatures.join(', ')}`));
|
|
14024
|
-
return;
|
|
14025
|
-
}
|
|
14026
|
-
const currentFeatureConfig = featuresConfig.features[feature];
|
|
14027
|
-
if (!provider) {
|
|
14028
|
-
// Case 2: "pi add <category>" - Show providers for category
|
|
14029
|
-
const providers = getFeatureProviders(feature, currentFeatureConfig);
|
|
14030
|
-
if (providers.length === 0) {
|
|
14031
|
-
console.log(chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.yellow(`⚠️ No providers found for ${feature}`));
|
|
14032
|
-
return;
|
|
14033
|
-
}
|
|
14034
|
-
if (providers.length === 1) {
|
|
14035
|
-
provider = providers[0];
|
|
14036
|
-
console.log(chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.cyan(`🔧 Using ${chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.bold(provider)} (only provider available)`));
|
|
14037
|
-
}
|
|
14038
|
-
else {
|
|
14039
|
-
const selectedProvider = await promptFeatureProvider(feature, providers);
|
|
14040
|
-
if (!selectedProvider)
|
|
14041
|
-
return;
|
|
14042
|
-
provider = selectedProvider;
|
|
14043
|
-
}
|
|
14044
|
-
}
|
|
14045
|
-
// Case 3: "pi add <category> <provider>" - Direct installation
|
|
14046
|
-
// Validate provider exists for feature
|
|
14047
|
-
const providers = getFeatureProviders(feature, currentFeatureConfig);
|
|
14048
|
-
if (!providers.includes(provider)) {
|
|
14049
|
-
console.log(chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.red(`❌ Provider '${provider}' not found for ${feature}`));
|
|
14050
|
-
console.log(chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.yellow(`💡 Available providers: ${providers.join(', ')}`));
|
|
14051
|
-
return;
|
|
14052
|
-
}
|
|
14053
|
-
// Check framework compatibility
|
|
14054
|
-
if (!isFrameworkSupported(currentFeatureConfig, projectInfo.framework)) {
|
|
14055
|
-
console.log(chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.red(`❌ ${feature} (${provider}) is not supported for ${projectInfo.framework}`));
|
|
14056
|
-
console.log(chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.yellow(`💡 Supported frameworks: ${currentFeatureConfig.supportedFrameworks?.join(', ') || 'Not specified'}`));
|
|
14057
|
-
return;
|
|
14058
|
-
}
|
|
14059
|
-
// Install the feature
|
|
14060
|
-
console.log(chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#00d2d3')(`\n🚀 Installing ${feature} (${provider})...\n`));
|
|
14061
|
-
try {
|
|
14062
|
-
await (0,_utils_featureInstaller_js__WEBPACK_IMPORTED_MODULE_7__/* .addFeature */ .Ue)(feature, provider, projectPath);
|
|
14063
|
-
console.log(chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.green(`\n✅ Successfully added ${feature} (${provider})`));
|
|
14064
|
-
// Show setup instructions
|
|
14065
|
-
showEnhancedSetupInstructions(feature, provider);
|
|
14066
|
-
// Update history (if available)
|
|
14067
|
-
try {
|
|
14068
|
-
if ("addFeature" in _utils_historyManager_js__WEBPACK_IMPORTED_MODULE_8__/* .historyManager */ .O && typeof _utils_historyManager_js__WEBPACK_IMPORTED_MODULE_8__/* .historyManager */ .O.addFeature === 'function') {
|
|
14069
|
-
await _utils_historyManager_js__WEBPACK_IMPORTED_MODULE_8__/* .historyManager */ .O.addFeature(feature, provider, projectPath);
|
|
14070
|
-
}
|
|
14071
|
-
}
|
|
14072
|
-
catch (error) {
|
|
14073
|
-
// History update is optional
|
|
14074
|
-
}
|
|
14075
|
-
}
|
|
14076
|
-
catch (error) {
|
|
14077
|
-
console.log(chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.red(`\n❌ Failed to add ${feature} (${provider}): ${error}`));
|
|
14078
|
-
}
|
|
14079
14056
|
// Show additional project details
|
|
14080
14057
|
if (projectInfo.packageManager) {
|
|
14081
14058
|
console.log(chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.gray(`📦 Package manager: ${projectInfo.packageManager}`));
|
|
@@ -23531,7 +23508,7 @@ exports.firstValueFrom = firstValueFrom;
|
|
|
23531
23508
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
23532
23509
|
|
|
23533
23510
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23534
|
-
/* harmony export */
|
|
23511
|
+
/* harmony export */ createStandardHelp: () => (/* binding */ createStandardHelp)
|
|
23535
23512
|
/* harmony export */ });
|
|
23536
23513
|
/* unused harmony exports createQuickHelp, createErrorHelp */
|
|
23537
23514
|
/* harmony import */ var chalk__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(3757);
|
|
@@ -51392,40 +51369,410 @@ var lib = __webpack_require__(6824);
|
|
|
51392
51369
|
var fs_extra_lib = __webpack_require__(7187);
|
|
51393
51370
|
// EXTERNAL MODULE: ./dist/utils/pathResolver.js
|
|
51394
51371
|
var pathResolver = __webpack_require__(3294);
|
|
51395
|
-
;// ./dist/utils/
|
|
51372
|
+
;// ./dist/utils/templateResolver.js
|
|
51396
51373
|
/**
|
|
51397
|
-
*
|
|
51398
|
-
* Handles
|
|
51374
|
+
* Template path resolution utilities for Package Installer CLI v3.2.0
|
|
51375
|
+
* Handles template name generation and path resolution based on template.json
|
|
51399
51376
|
*/
|
|
51400
51377
|
|
|
51401
51378
|
|
|
51402
51379
|
|
|
51403
|
-
|
|
51404
|
-
|
|
51405
51380
|
// Helper functions to read template.json
|
|
51406
|
-
function
|
|
51381
|
+
function templateResolver_getTemplateConfig() {
|
|
51407
51382
|
const cliDir = (0,pathResolver/* getCliRootPath */.mw)();
|
|
51408
|
-
const templatePath = external_path_.join(cliDir, 'template.json');
|
|
51383
|
+
const templatePath = external_path_.join(cliDir, '/templates/template.json');
|
|
51409
51384
|
if (!fs_extra_lib.existsSync(templatePath)) {
|
|
51410
51385
|
throw new Error(`template.json not found at: ${templatePath}`);
|
|
51411
51386
|
}
|
|
51412
51387
|
return JSON.parse(fs_extra_lib.readFileSync(templatePath, 'utf-8'));
|
|
51413
51388
|
}
|
|
51414
|
-
|
|
51389
|
+
// Export getTemplateConfig for other modules to reuse
|
|
51390
|
+
|
|
51391
|
+
function templateResolver_getFrameworkConfig(framework) {
|
|
51392
|
+
const config = templateResolver_getTemplateConfig();
|
|
51393
|
+
// New template.json structure groups frameworks under top-level categories
|
|
51394
|
+
for (const categoryKey of Object.keys(config)) {
|
|
51395
|
+
const cat = config[categoryKey];
|
|
51396
|
+
if (cat && typeof cat === 'object' && Object.prototype.hasOwnProperty.call(cat, framework)) {
|
|
51397
|
+
return cat[framework];
|
|
51398
|
+
}
|
|
51399
|
+
}
|
|
51400
|
+
return undefined;
|
|
51401
|
+
}
|
|
51402
|
+
// Export for use in other modules
|
|
51403
|
+
|
|
51404
|
+
/**
|
|
51405
|
+
* Generate template name based on framework options - use exact template names from template.json
|
|
51406
|
+
* Only generates for frameworks that HAVE options
|
|
51407
|
+
*/
|
|
51408
|
+
function generateTemplateName(framework, options) {
|
|
51409
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51410
|
+
// Only generate template names for frameworks that have options
|
|
51411
|
+
if (!config?.options && !config?.ui && !config?.bundlers) {
|
|
51412
|
+
return '';
|
|
51413
|
+
}
|
|
51414
|
+
// If framework has predefined templates, select the matching one based on options
|
|
51415
|
+
if (config.templates && config.templates.length > 0) {
|
|
51416
|
+
// Build template name based on selected options
|
|
51417
|
+
const parts = [];
|
|
51418
|
+
const templatesList = Array.isArray(config.templates) ? config.templates : [];
|
|
51419
|
+
// Helper: check if any template mentions a token
|
|
51420
|
+
const templateIncludes = (token) => templatesList.some(t => t.includes(token));
|
|
51421
|
+
// Handle src option (only for nextjs) but only if templates actually include src/no-src
|
|
51422
|
+
if ((framework === 'nextjs') && config.options?.includes('src') && templateIncludes('src')) {
|
|
51423
|
+
if (options.src) {
|
|
51424
|
+
parts.push('src');
|
|
51425
|
+
}
|
|
51426
|
+
else {
|
|
51427
|
+
parts.push('no-src');
|
|
51428
|
+
}
|
|
51429
|
+
}
|
|
51430
|
+
// Handle UI library - only add if actually selected (not "none") and templates reference the UI token
|
|
51431
|
+
if (config.ui && config.ui.length > 0 && options.ui && options.ui !== 'none' && templateIncludes(options.ui)) {
|
|
51432
|
+
parts.push(options.ui);
|
|
51433
|
+
}
|
|
51434
|
+
// Handle tailwind option only if templates contain tailwind/no-tailwind
|
|
51435
|
+
if (config.options?.includes('tailwind') && templateIncludes('tailwind')) {
|
|
51436
|
+
if (options.tailwind) {
|
|
51437
|
+
parts.push('tailwind');
|
|
51438
|
+
}
|
|
51439
|
+
else {
|
|
51440
|
+
parts.push('no-tailwind');
|
|
51441
|
+
}
|
|
51442
|
+
}
|
|
51443
|
+
// Handle bundler option only if templates reference bundler token
|
|
51444
|
+
if (config.bundlers && Array.isArray(config.bundlers) && options.bundler && templateIncludes(options.bundler)) {
|
|
51445
|
+
parts.push(options.bundler);
|
|
51446
|
+
}
|
|
51447
|
+
const generatedName = (parts.length > 0 ? parts.join('-') + '-template' : '');
|
|
51448
|
+
// Find exact match in templates array
|
|
51449
|
+
const exactMatch = config.templates.find((template) => template === generatedName);
|
|
51450
|
+
if (exactMatch) {
|
|
51451
|
+
return exactMatch;
|
|
51452
|
+
}
|
|
51453
|
+
// If no exact match, return the first template as fallback
|
|
51454
|
+
return config.templates[0];
|
|
51455
|
+
}
|
|
51456
|
+
return '';
|
|
51457
|
+
}
|
|
51458
|
+
/**
|
|
51459
|
+
* Resolve template directory path based on framework and template name
|
|
51460
|
+
*/
|
|
51461
|
+
function resolveTemplatePath(projectInfo) {
|
|
51462
|
+
const { framework, language, templateName } = projectInfo;
|
|
51463
|
+
const templatesRoot = (0,pathResolver/* getTemplatesPath */.vD)();
|
|
51464
|
+
// Helper: find category that contains the framework
|
|
51465
|
+
function findCategoryForFramework(frameworkName) {
|
|
51466
|
+
const config = templateResolver_getTemplateConfig();
|
|
51467
|
+
for (const categoryKey of Object.keys(config)) {
|
|
51468
|
+
const cat = config[categoryKey];
|
|
51469
|
+
if (cat && typeof cat === 'object' && Object.prototype.hasOwnProperty.call(cat, frameworkName)) {
|
|
51470
|
+
return categoryKey;
|
|
51471
|
+
}
|
|
51472
|
+
}
|
|
51473
|
+
return null;
|
|
51474
|
+
}
|
|
51475
|
+
// Combination templates are stored under a special category (e.g., combination-templates)
|
|
51476
|
+
if (framework.includes('+')) {
|
|
51477
|
+
const frameworkDir = framework.replace(/\+/g, '-');
|
|
51478
|
+
const combCategory = 'combination-templates';
|
|
51479
|
+
const combinationPath = external_path_.join(templatesRoot, combCategory, frameworkDir);
|
|
51480
|
+
if (fs_extra_lib.existsSync(combinationPath)) {
|
|
51481
|
+
if (language) {
|
|
51482
|
+
const langPath = external_path_.join(combinationPath, language);
|
|
51483
|
+
if (fs_extra_lib.existsSync(langPath)) {
|
|
51484
|
+
if (templateName) {
|
|
51485
|
+
const templatePath = external_path_.join(langPath, templateName);
|
|
51486
|
+
if (fs_extra_lib.existsSync(templatePath))
|
|
51487
|
+
return templatePath;
|
|
51488
|
+
}
|
|
51489
|
+
return langPath;
|
|
51490
|
+
}
|
|
51491
|
+
}
|
|
51492
|
+
if (templateName) {
|
|
51493
|
+
const templatePath = external_path_.join(combinationPath, templateName);
|
|
51494
|
+
if (fs_extra_lib.existsSync(templatePath))
|
|
51495
|
+
return templatePath;
|
|
51496
|
+
}
|
|
51497
|
+
return combinationPath;
|
|
51498
|
+
}
|
|
51499
|
+
}
|
|
51500
|
+
// Regular frameworks
|
|
51501
|
+
const category = findCategoryForFramework(framework);
|
|
51502
|
+
let baseFrameworkPath = external_path_.join(templatesRoot, framework); // default fallback
|
|
51503
|
+
if (category) {
|
|
51504
|
+
baseFrameworkPath = external_path_.join(templatesRoot, category, framework);
|
|
51505
|
+
// If the expected folder doesn't exist on disk (config/fs mismatch), try scanning categories
|
|
51506
|
+
if (!fs_extra_lib.existsSync(baseFrameworkPath)) {
|
|
51507
|
+
const topLevelItems = fs_extra_lib.readdirSync(templatesRoot, { withFileTypes: true });
|
|
51508
|
+
for (const dirent of topLevelItems) {
|
|
51509
|
+
if (!dirent.isDirectory())
|
|
51510
|
+
continue;
|
|
51511
|
+
const candidate = external_path_.join(templatesRoot, dirent.name, framework);
|
|
51512
|
+
if (fs_extra_lib.existsSync(candidate)) {
|
|
51513
|
+
baseFrameworkPath = candidate;
|
|
51514
|
+
break;
|
|
51515
|
+
}
|
|
51516
|
+
}
|
|
51517
|
+
}
|
|
51518
|
+
}
|
|
51519
|
+
else {
|
|
51520
|
+
// Fallback 1: try to find the framework directory under any category on disk
|
|
51521
|
+
let found = false;
|
|
51522
|
+
const topLevelItems = fs_extra_lib.readdirSync(templatesRoot, { withFileTypes: true });
|
|
51523
|
+
for (const dirent of topLevelItems) {
|
|
51524
|
+
if (!dirent.isDirectory())
|
|
51525
|
+
continue;
|
|
51526
|
+
const candidate = external_path_.join(templatesRoot, dirent.name, framework);
|
|
51527
|
+
if (fs_extra_lib.existsSync(candidate)) {
|
|
51528
|
+
baseFrameworkPath = candidate;
|
|
51529
|
+
found = true;
|
|
51530
|
+
break;
|
|
51531
|
+
}
|
|
51532
|
+
}
|
|
51533
|
+
if (!found) {
|
|
51534
|
+
// keep default baseFrameworkPath (top-level legacy location)
|
|
51535
|
+
}
|
|
51536
|
+
}
|
|
51537
|
+
// If a specific template name was provided, try to resolve that exact template folder
|
|
51538
|
+
// across language subfolders and all top-level categories. This avoids returning a
|
|
51539
|
+
// language directory (which would copy all templates) when the user selected a single template.
|
|
51540
|
+
if (projectInfo && projectInfo.templateName) {
|
|
51541
|
+
const requested = projectInfo.templateName;
|
|
51542
|
+
// 1) try language-specific location under the discovered base path
|
|
51543
|
+
if (projectInfo.language) {
|
|
51544
|
+
const p = external_path_.join(baseFrameworkPath, projectInfo.language, requested);
|
|
51545
|
+
if (fs_extra_lib.existsSync(p) && fs_extra_lib.statSync(p).isDirectory())
|
|
51546
|
+
return p;
|
|
51547
|
+
}
|
|
51548
|
+
// 2) try baseFrameworkPath/templateName
|
|
51549
|
+
const direct = external_path_.join(baseFrameworkPath, requested);
|
|
51550
|
+
if (fs_extra_lib.existsSync(direct) && fs_extra_lib.statSync(direct).isDirectory())
|
|
51551
|
+
return direct;
|
|
51552
|
+
// 3) scan other categories under templates root to find the exact template folder
|
|
51553
|
+
const topLevelItems = fs_extra_lib.readdirSync(templatesRoot, { withFileTypes: true });
|
|
51554
|
+
for (const dirent of topLevelItems) {
|
|
51555
|
+
if (!dirent.isDirectory())
|
|
51556
|
+
continue;
|
|
51557
|
+
const candidateLang = projectInfo.language
|
|
51558
|
+
? external_path_.join(templatesRoot, dirent.name, framework, projectInfo.language, requested)
|
|
51559
|
+
: null;
|
|
51560
|
+
if (candidateLang && fs_extra_lib.existsSync(candidateLang) && fs_extra_lib.statSync(candidateLang).isDirectory())
|
|
51561
|
+
return candidateLang;
|
|
51562
|
+
const candidate = external_path_.join(templatesRoot, dirent.name, framework, requested);
|
|
51563
|
+
if (fs_extra_lib.existsSync(candidate) && fs_extra_lib.statSync(candidate).isDirectory())
|
|
51564
|
+
return candidate;
|
|
51565
|
+
}
|
|
51566
|
+
// If nothing found, continue to the regular resolution logic which may return a sensible default.
|
|
51567
|
+
}
|
|
51568
|
+
// If a language-specific folder exists, prefer it
|
|
51569
|
+
// Use template.json config to resolve paths when available
|
|
51570
|
+
const fwConfig = templateResolver_getFrameworkConfig(framework);
|
|
51571
|
+
if (fwConfig) {
|
|
51572
|
+
const templatesEntry = fwConfig.templates;
|
|
51573
|
+
// Helper to test candidate paths
|
|
51574
|
+
const testCandidates = (candidates) => {
|
|
51575
|
+
for (const c of candidates) {
|
|
51576
|
+
if (fs_extra_lib.existsSync(c))
|
|
51577
|
+
return c;
|
|
51578
|
+
}
|
|
51579
|
+
return null;
|
|
51580
|
+
};
|
|
51581
|
+
// If templates is an object keyed by language
|
|
51582
|
+
if (templatesEntry && typeof templatesEntry === 'object' && !Array.isArray(templatesEntry)) {
|
|
51583
|
+
// templatesEntry is like { "typescript": ["a","b"], "javascript": [...] }
|
|
51584
|
+
const langKey = language || Object.keys(templatesEntry)[0];
|
|
51585
|
+
const list = templatesEntry[langKey] || templatesEntry[Object.keys(templatesEntry)[0]] || [];
|
|
51586
|
+
if (templateName && list.includes(templateName)) {
|
|
51587
|
+
// Prefer language folder then direct
|
|
51588
|
+
const candidates = [
|
|
51589
|
+
external_path_.join(baseFrameworkPath, langKey, templateName),
|
|
51590
|
+
external_path_.join(baseFrameworkPath, templateName)
|
|
51591
|
+
];
|
|
51592
|
+
const found = testCandidates(candidates);
|
|
51593
|
+
if (found)
|
|
51594
|
+
return found;
|
|
51595
|
+
}
|
|
51596
|
+
// If no specific templateName, prefer language folder if exists
|
|
51597
|
+
const langDir = external_path_.join(baseFrameworkPath, langKey);
|
|
51598
|
+
if (fs_extra_lib.existsSync(langDir))
|
|
51599
|
+
return langDir;
|
|
51600
|
+
// fallback to first template folder for any language
|
|
51601
|
+
const anyTemplate = list[0];
|
|
51602
|
+
if (anyTemplate) {
|
|
51603
|
+
const candidates = [
|
|
51604
|
+
external_path_.join(baseFrameworkPath, langKey, anyTemplate),
|
|
51605
|
+
external_path_.join(baseFrameworkPath, anyTemplate)
|
|
51606
|
+
];
|
|
51607
|
+
const found = testCandidates(candidates);
|
|
51608
|
+
if (found)
|
|
51609
|
+
return found;
|
|
51610
|
+
}
|
|
51611
|
+
}
|
|
51612
|
+
// If templates is an array
|
|
51613
|
+
if (Array.isArray(templatesEntry)) {
|
|
51614
|
+
if (templateName && templatesEntry.includes(templateName)) {
|
|
51615
|
+
const candidates = [
|
|
51616
|
+
external_path_.join(baseFrameworkPath, language || '', templateName),
|
|
51617
|
+
external_path_.join(baseFrameworkPath, templateName)
|
|
51618
|
+
];
|
|
51619
|
+
const found = testCandidates(candidates);
|
|
51620
|
+
if (found)
|
|
51621
|
+
return found;
|
|
51622
|
+
}
|
|
51623
|
+
// if no templateName, prefer language subdir if it exists
|
|
51624
|
+
if (language) {
|
|
51625
|
+
const langDir = external_path_.join(baseFrameworkPath, language);
|
|
51626
|
+
if (fs_extra_lib.existsSync(langDir))
|
|
51627
|
+
return langDir;
|
|
51628
|
+
}
|
|
51629
|
+
// fallback to first template folder if it exists
|
|
51630
|
+
const first = templatesEntry[0];
|
|
51631
|
+
if (first) {
|
|
51632
|
+
const candidates = [
|
|
51633
|
+
external_path_.join(baseFrameworkPath, language || '', first),
|
|
51634
|
+
external_path_.join(baseFrameworkPath, first)
|
|
51635
|
+
];
|
|
51636
|
+
const found = testCandidates(candidates);
|
|
51637
|
+
if (found)
|
|
51638
|
+
return found;
|
|
51639
|
+
}
|
|
51640
|
+
}
|
|
51641
|
+
// If templates not declared or nothing matched, prefer language dir if exists
|
|
51642
|
+
if (language) {
|
|
51643
|
+
const langDir = external_path_.join(baseFrameworkPath, language);
|
|
51644
|
+
if (fs_extra_lib.existsSync(langDir))
|
|
51645
|
+
return langDir;
|
|
51646
|
+
}
|
|
51647
|
+
// Direct templateName fallback
|
|
51648
|
+
if (templateName) {
|
|
51649
|
+
const candidate = external_path_.join(baseFrameworkPath, templateName);
|
|
51650
|
+
if (fs_extra_lib.existsSync(candidate))
|
|
51651
|
+
return candidate;
|
|
51652
|
+
}
|
|
51653
|
+
// finally, return baseFrameworkPath (may or may not exist)
|
|
51654
|
+
return baseFrameworkPath;
|
|
51655
|
+
}
|
|
51656
|
+
// If no fwConfig available, fallback to previously implemented resolution (language dir, templateName, base)
|
|
51657
|
+
if (language) {
|
|
51658
|
+
const langDir = external_path_.join(baseFrameworkPath, language);
|
|
51659
|
+
if (fs_extra_lib.existsSync(langDir)) {
|
|
51660
|
+
if (templateName) {
|
|
51661
|
+
const candidate = external_path_.join(langDir, templateName);
|
|
51662
|
+
if (fs_extra_lib.existsSync(candidate))
|
|
51663
|
+
return candidate;
|
|
51664
|
+
}
|
|
51665
|
+
return langDir;
|
|
51666
|
+
}
|
|
51667
|
+
}
|
|
51668
|
+
if (templateName) {
|
|
51669
|
+
const candidate = external_path_.join(baseFrameworkPath, templateName);
|
|
51670
|
+
if (fs_extra_lib.existsSync(candidate))
|
|
51671
|
+
return candidate;
|
|
51672
|
+
}
|
|
51673
|
+
return baseFrameworkPath;
|
|
51674
|
+
}
|
|
51675
|
+
/**
|
|
51676
|
+
* Check if template directory exists
|
|
51677
|
+
*/
|
|
51678
|
+
function templateExists(templatePath) {
|
|
51679
|
+
return fs_extra_lib.existsSync(templatePath) && fs_extra_lib.statSync(templatePath).isDirectory();
|
|
51680
|
+
}
|
|
51681
|
+
|
|
51682
|
+
;// ./dist/utils/prompts.js
|
|
51683
|
+
/**
|
|
51684
|
+
* User interaction prompts for Package Installer CLI v3.2.0
|
|
51685
|
+
* Handles framework selection and template configuration based on template.json
|
|
51686
|
+
*/
|
|
51687
|
+
|
|
51688
|
+
|
|
51689
|
+
|
|
51690
|
+
|
|
51691
|
+
|
|
51692
|
+
// Reuse centralized getTemplateConfig from templateResolver
|
|
51693
|
+
function getAvailableFrameworks(typeFilter) {
|
|
51415
51694
|
const config = getTemplateConfig();
|
|
51416
|
-
|
|
51695
|
+
const frameworks = [];
|
|
51696
|
+
// template.json groups frameworks by top-level categories
|
|
51697
|
+
for (const categoryKey of Object.keys(config)) {
|
|
51698
|
+
const cat = config[categoryKey];
|
|
51699
|
+
if (cat && typeof cat === 'object') {
|
|
51700
|
+
for (const fw of Object.keys(cat)) {
|
|
51701
|
+
// If a typeFilter is provided, check the framework's declared 'type' or the category key
|
|
51702
|
+
if (typeFilter) {
|
|
51703
|
+
const fwConfig = cat[fw];
|
|
51704
|
+
const declaredType = (fwConfig && fwConfig.type) || categoryKey;
|
|
51705
|
+
if (declaredType === typeFilter) {
|
|
51706
|
+
frameworks.push(fw);
|
|
51707
|
+
}
|
|
51708
|
+
}
|
|
51709
|
+
else {
|
|
51710
|
+
frameworks.push(fw);
|
|
51711
|
+
}
|
|
51712
|
+
}
|
|
51713
|
+
}
|
|
51714
|
+
}
|
|
51715
|
+
return frameworks;
|
|
51417
51716
|
}
|
|
51418
|
-
|
|
51717
|
+
/**
|
|
51718
|
+
* Return a list of unique 'type' values available in template.json (e.g., 'mobile','desktop','frontend')
|
|
51719
|
+
*/
|
|
51720
|
+
function getAvailableTypes() {
|
|
51419
51721
|
const config = getTemplateConfig();
|
|
51420
|
-
|
|
51722
|
+
const types = new Set();
|
|
51723
|
+
for (const categoryKey of Object.keys(config)) {
|
|
51724
|
+
const cat = config[categoryKey];
|
|
51725
|
+
if (cat && typeof cat === 'object') {
|
|
51726
|
+
for (const fw of Object.keys(cat)) {
|
|
51727
|
+
const fwConfig = cat[fw];
|
|
51728
|
+
if (fwConfig && fwConfig.type) {
|
|
51729
|
+
types.add(fwConfig.type);
|
|
51730
|
+
}
|
|
51731
|
+
else {
|
|
51732
|
+
// fallback to top-level category as type
|
|
51733
|
+
types.add(categoryKey);
|
|
51734
|
+
}
|
|
51735
|
+
}
|
|
51736
|
+
}
|
|
51737
|
+
}
|
|
51738
|
+
// Filter out types that should not be shown to the user
|
|
51739
|
+
const blacklist = new Set(['api', 'frontend', 'backend', 'fullstack']);
|
|
51740
|
+
return Array.from(types).filter(t => !blacklist.has(String(t).toLowerCase())).sort();
|
|
51741
|
+
}
|
|
51742
|
+
// `getFrameworkConfig` is provided by `templateResolver.ts` and imported above.
|
|
51743
|
+
function getCategories() {
|
|
51744
|
+
const config = templateResolver_getTemplateConfig();
|
|
51745
|
+
return Object.keys(config);
|
|
51746
|
+
}
|
|
51747
|
+
function getFrameworksForCategory(category) {
|
|
51748
|
+
const config = templateResolver_getTemplateConfig();
|
|
51749
|
+
const cat = config[category];
|
|
51750
|
+
if (!cat || typeof cat !== 'object')
|
|
51751
|
+
return [];
|
|
51752
|
+
return Object.keys(cat);
|
|
51421
51753
|
}
|
|
51422
51754
|
function getFrameworkDescription(framework) {
|
|
51423
|
-
const config =
|
|
51755
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51424
51756
|
return config?.description || 'Modern framework';
|
|
51425
51757
|
}
|
|
51426
51758
|
function capitalize(str) {
|
|
51427
51759
|
return str.charAt(0).toUpperCase() + str.slice(1);
|
|
51428
51760
|
}
|
|
51761
|
+
// Human-friendly display names for types/categories
|
|
51762
|
+
const DISPLAY_NAME_MAP = {
|
|
51763
|
+
'c++_c': 'C++/C',
|
|
51764
|
+
'combination-templates': 'Combination Templates',
|
|
51765
|
+
'javascript': 'JavaScript',
|
|
51766
|
+
'go': 'Go',
|
|
51767
|
+
'mobile': 'Mobile',
|
|
51768
|
+
'desktop': 'Desktop',
|
|
51769
|
+
'rust': 'Rust',
|
|
51770
|
+
'python': 'Python',
|
|
51771
|
+
'ruby': 'Ruby'
|
|
51772
|
+
};
|
|
51773
|
+
function displayTypeName(key) {
|
|
51774
|
+
return DISPLAY_NAME_MAP[key] || capitalize(key.replace(/[-_]/g, ' '));
|
|
51775
|
+
}
|
|
51429
51776
|
/**
|
|
51430
51777
|
* Project name prompt with enhanced styling
|
|
51431
51778
|
*/
|
|
@@ -51461,7 +51808,28 @@ async function promptProjectName() {
|
|
|
51461
51808
|
* Framework selection prompt with enhanced styling
|
|
51462
51809
|
*/
|
|
51463
51810
|
async function promptFrameworkSelection() {
|
|
51464
|
-
|
|
51811
|
+
// First prompt: category selection (top-level keys from template.json)
|
|
51812
|
+
const categories = getCategories();
|
|
51813
|
+
console.log(source/* default */.Ay.hex('#00d2d3')('\n🚀 Choose a category\n'));
|
|
51814
|
+
const { category } = await lib["default"].prompt([
|
|
51815
|
+
{
|
|
51816
|
+
type: 'list',
|
|
51817
|
+
name: 'category',
|
|
51818
|
+
message: `${source/* default */.Ay.blue('❯')} Choose a category:`,
|
|
51819
|
+
choices: categories.map(cat => ({
|
|
51820
|
+
name: `${source/* default */.Ay.green('●')} ${source/* default */.Ay.bold(displayTypeName(cat))}`,
|
|
51821
|
+
value: cat,
|
|
51822
|
+
short: displayTypeName(cat)
|
|
51823
|
+
})),
|
|
51824
|
+
pageSize: 12
|
|
51825
|
+
}
|
|
51826
|
+
]);
|
|
51827
|
+
// Then prompt frameworks within the selected category
|
|
51828
|
+
const frameworks = getFrameworksForCategory(category);
|
|
51829
|
+
if (!frameworks || frameworks.length === 0) {
|
|
51830
|
+
console.log(source/* default */.Ay.yellow('⚠️ No frameworks found in selected category'));
|
|
51831
|
+
return '';
|
|
51832
|
+
}
|
|
51465
51833
|
console.log(source/* default */.Ay.hex('#00d2d3')('\n🚀 Framework Selection\n'));
|
|
51466
51834
|
const { framework } = await lib["default"].prompt([
|
|
51467
51835
|
{
|
|
@@ -51469,7 +51837,7 @@ async function promptFrameworkSelection() {
|
|
|
51469
51837
|
name: 'framework',
|
|
51470
51838
|
message: `${source/* default */.Ay.blue('❯')} Choose your framework:`,
|
|
51471
51839
|
choices: frameworks.map(fw => ({
|
|
51472
|
-
name: `${source/* default */.Ay.green('●')} ${source/* default */.Ay.bold(capitalize(fw))} ${source/* default */.Ay.gray('- ' + getFrameworkDescription(fw))}`,
|
|
51840
|
+
name: `${source/* default */.Ay.green('●')} ${source/* default */.Ay.bold(capitalize(fw))} ${source/* default */.Ay.gray('- ' + (getFrameworkDescription(fw) || ''))}`,
|
|
51473
51841
|
value: fw,
|
|
51474
51842
|
short: capitalize(fw)
|
|
51475
51843
|
})),
|
|
@@ -51482,7 +51850,7 @@ async function promptFrameworkSelection() {
|
|
|
51482
51850
|
* Language selection prompt - framework specific from template.json
|
|
51483
51851
|
*/
|
|
51484
51852
|
async function promptLanguageSelection(framework) {
|
|
51485
|
-
const config =
|
|
51853
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51486
51854
|
if (!config.languages || config.languages.length <= 1) {
|
|
51487
51855
|
const defaultLang = config.languages?.[0] || 'javascript';
|
|
51488
51856
|
console.log(source/* default */.Ay.cyan(`💻 Using ${source/* default */.Ay.bold(defaultLang)} as default language`));
|
|
@@ -51514,36 +51882,88 @@ async function promptLanguageSelection(framework) {
|
|
|
51514
51882
|
/**
|
|
51515
51883
|
* Template selection with enhanced styling
|
|
51516
51884
|
*/
|
|
51517
|
-
async function promptTemplateSelection(framework) {
|
|
51518
|
-
const config =
|
|
51885
|
+
async function promptTemplateSelection(framework, language) {
|
|
51886
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51519
51887
|
if (!config || !config.templates) {
|
|
51520
51888
|
return '';
|
|
51521
51889
|
}
|
|
51522
|
-
|
|
51523
|
-
|
|
51524
|
-
|
|
51525
|
-
|
|
51526
|
-
|
|
51527
|
-
|
|
51528
|
-
{
|
|
51529
|
-
type: 'list',
|
|
51530
|
-
name: 'template',
|
|
51531
|
-
message: `${source/* default */.Ay.blue('❯')} Choose a template for ${source/* default */.Ay.bold(framework)}:`,
|
|
51532
|
-
choices: config.templates.map((template) => ({
|
|
51533
|
-
name: `${source/* default */.Ay.green('▸')} ${template.replace(/-/g, ' ').replace(/\b\w/g, (l) => l.toUpperCase())}`,
|
|
51534
|
-
value: template,
|
|
51535
|
-
short: template
|
|
51536
|
-
})),
|
|
51537
|
-
pageSize: 8
|
|
51890
|
+
const templatesEntry = config.templates;
|
|
51891
|
+
// If templates is an array
|
|
51892
|
+
if (Array.isArray(templatesEntry)) {
|
|
51893
|
+
if (templatesEntry.length === 1) {
|
|
51894
|
+
console.log(source/* default */.Ay.cyan(`📋 Using ${source/* default */.Ay.bold(templatesEntry[0])} template`));
|
|
51895
|
+
return templatesEntry[0];
|
|
51538
51896
|
}
|
|
51539
|
-
|
|
51540
|
-
|
|
51897
|
+
console.log(source/* default */.Ay.hex('#00d2d3')('\n📋 Template Selection\n'));
|
|
51898
|
+
const { template } = await lib["default"].prompt([
|
|
51899
|
+
{
|
|
51900
|
+
type: 'list',
|
|
51901
|
+
name: 'template',
|
|
51902
|
+
message: `${source/* default */.Ay.blue('❯')} Choose a template for ${source/* default */.Ay.bold(framework)}:`,
|
|
51903
|
+
choices: templatesEntry.map((template) => ({
|
|
51904
|
+
name: `${source/* default */.Ay.green('▸')} ${template.replace(/-/g, ' ').replace(/\b\w/g, (l) => l.toUpperCase())}`,
|
|
51905
|
+
value: template,
|
|
51906
|
+
short: template
|
|
51907
|
+
})),
|
|
51908
|
+
pageSize: 8
|
|
51909
|
+
}
|
|
51910
|
+
]);
|
|
51911
|
+
return template;
|
|
51912
|
+
}
|
|
51913
|
+
// If templates is an object keyed by language
|
|
51914
|
+
if (typeof templatesEntry === 'object') {
|
|
51915
|
+
const langKey = language || Object.keys(templatesEntry)[0];
|
|
51916
|
+
const list = templatesEntry[langKey] || [];
|
|
51917
|
+
if (list.length === 0) {
|
|
51918
|
+
// Fallback: flatten all templates across languages
|
|
51919
|
+
const flattenedAny = Object.values(templatesEntry).flat();
|
|
51920
|
+
const flattened = flattenedAny.map(String);
|
|
51921
|
+
if (flattened.length === 0)
|
|
51922
|
+
return '';
|
|
51923
|
+
console.log(source/* default */.Ay.hex('#00d2d3')('\n📋 Template Selection\n'));
|
|
51924
|
+
const unique = Array.from(new Set(flattened));
|
|
51925
|
+
const { template } = await lib["default"].prompt([
|
|
51926
|
+
{
|
|
51927
|
+
type: 'list',
|
|
51928
|
+
name: 'template',
|
|
51929
|
+
message: `${source/* default */.Ay.blue('❯')} Choose a template for ${source/* default */.Ay.bold(framework)}:`,
|
|
51930
|
+
choices: unique.map((template) => ({
|
|
51931
|
+
name: `${source/* default */.Ay.green('▸')} ${template.replace(/-/g, ' ').replace(/\b\w/g, (l) => l.toUpperCase())}`,
|
|
51932
|
+
value: template,
|
|
51933
|
+
short: template
|
|
51934
|
+
})),
|
|
51935
|
+
pageSize: 8
|
|
51936
|
+
}
|
|
51937
|
+
]);
|
|
51938
|
+
return template;
|
|
51939
|
+
}
|
|
51940
|
+
if (list.length === 1) {
|
|
51941
|
+
console.log(source/* default */.Ay.cyan(`📋 Using ${source/* default */.Ay.bold(list[0])} template`));
|
|
51942
|
+
return list[0];
|
|
51943
|
+
}
|
|
51944
|
+
console.log(source/* default */.Ay.hex('#00d2d3')('\n📋 Template Selection\n'));
|
|
51945
|
+
const { template } = await lib["default"].prompt([
|
|
51946
|
+
{
|
|
51947
|
+
type: 'list',
|
|
51948
|
+
name: 'template',
|
|
51949
|
+
message: `${source/* default */.Ay.blue('❯')} Choose a template for ${source/* default */.Ay.bold(framework)} (${source/* default */.Ay.bold(langKey)}):`,
|
|
51950
|
+
choices: list.map((template) => ({
|
|
51951
|
+
name: `${source/* default */.Ay.green('▸')} ${template.replace(/-/g, ' ').replace(/\b\w/g, (l) => l.toUpperCase())}`,
|
|
51952
|
+
value: template,
|
|
51953
|
+
short: template
|
|
51954
|
+
})),
|
|
51955
|
+
pageSize: 8
|
|
51956
|
+
}
|
|
51957
|
+
]);
|
|
51958
|
+
return template;
|
|
51959
|
+
}
|
|
51960
|
+
return '';
|
|
51541
51961
|
}
|
|
51542
51962
|
/**
|
|
51543
51963
|
* Framework options prompt - handles UI, bundlers, and other options
|
|
51544
51964
|
*/
|
|
51545
51965
|
async function promptFrameworkOptions(framework) {
|
|
51546
|
-
const config =
|
|
51966
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51547
51967
|
if (!config || (!config.ui && !config.options && !config.bundlers)) {
|
|
51548
51968
|
return {};
|
|
51549
51969
|
}
|
|
@@ -51722,15 +52142,15 @@ async function promptFeatureProvider(category, framework) {
|
|
|
51722
52142
|
* Helper functions to check framework capabilities
|
|
51723
52143
|
*/
|
|
51724
52144
|
function hasFrameworkOptions(framework) {
|
|
51725
|
-
const config =
|
|
52145
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51726
52146
|
return !!(config?.options && config.options.length > 0);
|
|
51727
52147
|
}
|
|
51728
52148
|
function hasUIOptions(framework) {
|
|
51729
|
-
const config =
|
|
52149
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51730
52150
|
return !!(config?.ui && config.ui.length > 0);
|
|
51731
52151
|
}
|
|
51732
52152
|
function hasBundlerOptions(framework) {
|
|
51733
|
-
const config =
|
|
52153
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51734
52154
|
return !!(config?.bundlers && config.bundlers.length > 0);
|
|
51735
52155
|
}
|
|
51736
52156
|
function hasTemplateSelection(framework) {
|
|
@@ -51738,7 +52158,7 @@ function hasTemplateSelection(framework) {
|
|
|
51738
52158
|
return !!(config?.templates && config.templates.length > 0);
|
|
51739
52159
|
}
|
|
51740
52160
|
function shouldShowTemplates(framework) {
|
|
51741
|
-
const config =
|
|
52161
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51742
52162
|
// Show templates ONLY for frameworks that have templates but NO options/ui/bundlers
|
|
51743
52163
|
// Frameworks WITH options should generate template names based on user choices
|
|
51744
52164
|
const hasOptions = !!(config?.options || config?.ui || config?.bundlers);
|
|
@@ -51746,154 +52166,6 @@ function shouldShowTemplates(framework) {
|
|
|
51746
52166
|
return hasTemplates && !hasOptions;
|
|
51747
52167
|
}
|
|
51748
52168
|
|
|
51749
|
-
;// ./dist/utils/templateResolver.js
|
|
51750
|
-
/**
|
|
51751
|
-
* Template path resolution utilities for Package Installer CLI v3.2.0
|
|
51752
|
-
* Handles template name generation and path resolution based on template.json
|
|
51753
|
-
*/
|
|
51754
|
-
|
|
51755
|
-
|
|
51756
|
-
|
|
51757
|
-
// Helper functions to read template.json
|
|
51758
|
-
function templateResolver_getTemplateConfig() {
|
|
51759
|
-
const cliDir = (0,pathResolver/* getCliRootPath */.mw)();
|
|
51760
|
-
const templatePath = external_path_.join(cliDir, 'template.json');
|
|
51761
|
-
if (!fs_extra_lib.existsSync(templatePath)) {
|
|
51762
|
-
throw new Error(`template.json not found at: ${templatePath}`);
|
|
51763
|
-
}
|
|
51764
|
-
return JSON.parse(fs_extra_lib.readFileSync(templatePath, 'utf-8'));
|
|
51765
|
-
}
|
|
51766
|
-
function templateResolver_getFrameworkConfig(framework) {
|
|
51767
|
-
const config = templateResolver_getTemplateConfig();
|
|
51768
|
-
return config.frameworks[framework];
|
|
51769
|
-
}
|
|
51770
|
-
// Export for use in other modules
|
|
51771
|
-
|
|
51772
|
-
/**
|
|
51773
|
-
* Generate template name based on framework options - use exact template names from template.json
|
|
51774
|
-
* Only generates for frameworks that HAVE options
|
|
51775
|
-
*/
|
|
51776
|
-
function generateTemplateName(framework, options) {
|
|
51777
|
-
const config = templateResolver_getFrameworkConfig(framework);
|
|
51778
|
-
// Only generate template names for frameworks that have options
|
|
51779
|
-
if (!config?.options && !config?.ui && !config?.bundlers) {
|
|
51780
|
-
return '';
|
|
51781
|
-
}
|
|
51782
|
-
// If framework has predefined templates, select the matching one based on options
|
|
51783
|
-
if (config.templates && config.templates.length > 0) {
|
|
51784
|
-
// Build template name based on selected options
|
|
51785
|
-
const parts = [];
|
|
51786
|
-
// Handle src option (only for nextjs and reactjs)
|
|
51787
|
-
if ((framework === 'nextjs' || framework === 'reactjs') && config.options?.includes('src')) {
|
|
51788
|
-
if (options.src) {
|
|
51789
|
-
parts.push('src');
|
|
51790
|
-
}
|
|
51791
|
-
else {
|
|
51792
|
-
parts.push('no-src');
|
|
51793
|
-
}
|
|
51794
|
-
}
|
|
51795
|
-
// Handle UI library - only add if actually selected (not "none")
|
|
51796
|
-
// When UI is "none", templates simply omit the UI part from their names
|
|
51797
|
-
if (config.ui && config.ui.length > 0) {
|
|
51798
|
-
if (options.ui && options.ui !== 'none') {
|
|
51799
|
-
parts.push(options.ui);
|
|
51800
|
-
}
|
|
51801
|
-
// For "none" selection, don't add any UI part to the template name
|
|
51802
|
-
}
|
|
51803
|
-
// Handle tailwind option
|
|
51804
|
-
if (config.options?.includes('tailwind')) {
|
|
51805
|
-
if (options.tailwind) {
|
|
51806
|
-
parts.push('tailwind');
|
|
51807
|
-
}
|
|
51808
|
-
else {
|
|
51809
|
-
parts.push('no-tailwind');
|
|
51810
|
-
}
|
|
51811
|
-
}
|
|
51812
|
-
const generatedName = parts.join('-') + '-template';
|
|
51813
|
-
// Find exact match in templates array
|
|
51814
|
-
const exactMatch = config.templates.find((template) => template === generatedName);
|
|
51815
|
-
if (exactMatch) {
|
|
51816
|
-
return exactMatch;
|
|
51817
|
-
}
|
|
51818
|
-
// If no exact match, return the first template as fallback
|
|
51819
|
-
return config.templates[0];
|
|
51820
|
-
}
|
|
51821
|
-
return '';
|
|
51822
|
-
}
|
|
51823
|
-
/**
|
|
51824
|
-
* Resolve template directory path based on framework and template name
|
|
51825
|
-
*/
|
|
51826
|
-
function resolveTemplatePath(projectInfo) {
|
|
51827
|
-
const { framework, language, templateName } = projectInfo;
|
|
51828
|
-
const templatesRoot = (0,pathResolver/* getTemplatesPath */.vD)();
|
|
51829
|
-
// Handle combination templates (like reactjs+expressjs+shadcn)
|
|
51830
|
-
if (framework.includes('+')) {
|
|
51831
|
-
const frameworkDir = framework.replace(/\+/g, '-');
|
|
51832
|
-
const combinationPath = external_path_.join(templatesRoot, frameworkDir);
|
|
51833
|
-
if (fs_extra_lib.existsSync(combinationPath)) {
|
|
51834
|
-
// Check for language subdirectory
|
|
51835
|
-
if (language) {
|
|
51836
|
-
const langPath = external_path_.join(combinationPath, language);
|
|
51837
|
-
if (fs_extra_lib.existsSync(langPath)) {
|
|
51838
|
-
// Check for specific template
|
|
51839
|
-
if (templateName) {
|
|
51840
|
-
const templatePath = external_path_.join(langPath, templateName);
|
|
51841
|
-
if (fs_extra_lib.existsSync(templatePath)) {
|
|
51842
|
-
return templatePath;
|
|
51843
|
-
}
|
|
51844
|
-
}
|
|
51845
|
-
return langPath;
|
|
51846
|
-
}
|
|
51847
|
-
}
|
|
51848
|
-
return combinationPath;
|
|
51849
|
-
}
|
|
51850
|
-
}
|
|
51851
|
-
// For frameworks with specific template names
|
|
51852
|
-
if (templateName) {
|
|
51853
|
-
// Check if language subdirectory exists and is required
|
|
51854
|
-
const languageSubdirPath = external_path_.join(templatesRoot, framework, language || 'typescript');
|
|
51855
|
-
if (fs_extra_lib.existsSync(languageSubdirPath)) {
|
|
51856
|
-
const templatePath = external_path_.join(languageSubdirPath, templateName);
|
|
51857
|
-
if (fs_extra_lib.existsSync(templatePath)) {
|
|
51858
|
-
return templatePath;
|
|
51859
|
-
}
|
|
51860
|
-
}
|
|
51861
|
-
// Otherwise, use direct framework directory with template name
|
|
51862
|
-
const directTemplatePath = external_path_.join(templatesRoot, framework, templateName);
|
|
51863
|
-
if (fs_extra_lib.existsSync(directTemplatePath)) {
|
|
51864
|
-
return directTemplatePath;
|
|
51865
|
-
}
|
|
51866
|
-
}
|
|
51867
|
-
// For frameworks with options but no specific template name, use language subdirectory if available
|
|
51868
|
-
if (language) {
|
|
51869
|
-
const languageSubdirPath = external_path_.join(templatesRoot, framework, language);
|
|
51870
|
-
if (fs_extra_lib.existsSync(languageSubdirPath)) {
|
|
51871
|
-
return languageSubdirPath;
|
|
51872
|
-
}
|
|
51873
|
-
}
|
|
51874
|
-
// Default: use the framework directory directly
|
|
51875
|
-
return external_path_.join(templatesRoot, framework);
|
|
51876
|
-
}
|
|
51877
|
-
/**
|
|
51878
|
-
* Check if template directory exists
|
|
51879
|
-
*/
|
|
51880
|
-
function templateExists(templatePath) {
|
|
51881
|
-
return fs_extra_lib.existsSync(templatePath) && fs_extra_lib.statSync(templatePath).isDirectory();
|
|
51882
|
-
}
|
|
51883
|
-
/**
|
|
51884
|
-
* Get all available templates for a framework
|
|
51885
|
-
*/
|
|
51886
|
-
function getFrameworkTemplates(framework) {
|
|
51887
|
-
const templatesRoot = getTemplatesPath();
|
|
51888
|
-
const frameworkPath = path.join(templatesRoot, framework);
|
|
51889
|
-
if (!fs.existsSync(frameworkPath)) {
|
|
51890
|
-
return [];
|
|
51891
|
-
}
|
|
51892
|
-
return fs.readdirSync(frameworkPath, { withFileTypes: true })
|
|
51893
|
-
.filter(dirent => dirent.isDirectory())
|
|
51894
|
-
.map(dirent => dirent.name);
|
|
51895
|
-
}
|
|
51896
|
-
|
|
51897
52169
|
// EXTERNAL MODULE: external "child_process"
|
|
51898
52170
|
var external_child_process_ = __webpack_require__(5317);
|
|
51899
52171
|
// EXTERNAL MODULE: external "util"
|
|
@@ -51916,7 +52188,46 @@ const execAsync = (0,external_util_.promisify)(external_child_process_.exec);
|
|
|
51916
52188
|
* Create a project from a template with progress indicators and error handling
|
|
51917
52189
|
*/
|
|
51918
52190
|
async function createProjectFromTemplate(options) {
|
|
51919
|
-
const { projectName
|
|
52191
|
+
const { projectName } = options;
|
|
52192
|
+
// allow adjusting templatePath if a specific templateName was provided
|
|
52193
|
+
let templatePath = options.templatePath;
|
|
52194
|
+
const templateName = options.templateName;
|
|
52195
|
+
const language = options.language;
|
|
52196
|
+
// If a specific templateName was provided, try to resolve it under the given templatePath
|
|
52197
|
+
if (templateName) {
|
|
52198
|
+
// 1) language-specific location
|
|
52199
|
+
if (language) {
|
|
52200
|
+
const langCandidate = external_path_.join(templatePath, language, templateName);
|
|
52201
|
+
if (await fs_extra_lib.pathExists(langCandidate) && (await fs_extra_lib.stat(langCandidate)).isDirectory()) {
|
|
52202
|
+
templatePath = langCandidate;
|
|
52203
|
+
}
|
|
52204
|
+
}
|
|
52205
|
+
// 2) direct template folder under templatePath
|
|
52206
|
+
if (templatePath === options.templatePath) {
|
|
52207
|
+
const directCandidate = external_path_.join(templatePath, templateName);
|
|
52208
|
+
if (await fs_extra_lib.pathExists(directCandidate) && (await fs_extra_lib.stat(directCandidate)).isDirectory()) {
|
|
52209
|
+
templatePath = directCandidate;
|
|
52210
|
+
}
|
|
52211
|
+
}
|
|
52212
|
+
// 3) scan any subdirectories of templatePath to find an exact match (covers category mismatches)
|
|
52213
|
+
if (templatePath === options.templatePath) {
|
|
52214
|
+
try {
|
|
52215
|
+
const items = await fs_extra_lib.readdir(options.templatePath, { withFileTypes: true });
|
|
52216
|
+
for (const it of items) {
|
|
52217
|
+
if (!it.isDirectory())
|
|
52218
|
+
continue;
|
|
52219
|
+
const candidate = external_path_.join(options.templatePath, it.name, templateName);
|
|
52220
|
+
if (await fs_extra_lib.pathExists(candidate) && (await fs_extra_lib.stat(candidate)).isDirectory()) {
|
|
52221
|
+
templatePath = candidate;
|
|
52222
|
+
break;
|
|
52223
|
+
}
|
|
52224
|
+
}
|
|
52225
|
+
}
|
|
52226
|
+
catch (err) {
|
|
52227
|
+
// ignore scanning errors and let subsequent validation handle missing template
|
|
52228
|
+
}
|
|
52229
|
+
}
|
|
52230
|
+
}
|
|
51920
52231
|
const spinner = (0,node_modules_ora/* default */.Ay)(source/* default */.Ay.hex('#10ac84')('Creating project structure...')).start();
|
|
51921
52232
|
try {
|
|
51922
52233
|
// Handle "." as project name - create in current directory
|
|
@@ -52487,7 +52798,7 @@ function showCreateHelp() {
|
|
|
52487
52798
|
'All templates support both JavaScript and TypeScript'
|
|
52488
52799
|
]
|
|
52489
52800
|
};
|
|
52490
|
-
(0,helpFormatter
|
|
52801
|
+
(0,helpFormatter.createStandardHelp)(helpConfig);
|
|
52491
52802
|
}
|
|
52492
52803
|
/**
|
|
52493
52804
|
* Main create project function with comprehensive prompt system
|
|
@@ -52535,7 +52846,7 @@ async function createProject(providedName, options) {
|
|
|
52535
52846
|
let templateName = '';
|
|
52536
52847
|
if (shouldShowTemplates(selectedFramework)) {
|
|
52537
52848
|
// For frameworks WITHOUT options - show template selection list
|
|
52538
|
-
templateName = await promptTemplateSelection(selectedFramework);
|
|
52849
|
+
templateName = await promptTemplateSelection(selectedFramework, selectedLanguage);
|
|
52539
52850
|
}
|
|
52540
52851
|
else if (hasFrameworkOptions(selectedFramework) || hasUIOptions(selectedFramework) || hasBundlerOptions(selectedFramework)) {
|
|
52541
52852
|
// For frameworks WITH options - generate template name from user choices
|
|
@@ -53061,11 +53372,11 @@ function showCheckHelp() {
|
|
|
53061
53372
|
'check [options]'
|
|
53062
53373
|
],
|
|
53063
53374
|
options: [
|
|
53064
|
-
|
|
53375
|
+
// verbose flag removed: command now shows full information by default
|
|
53065
53376
|
],
|
|
53066
53377
|
examples: [
|
|
53067
53378
|
{ command: 'check', description: 'Check all packages in current project' },
|
|
53068
|
-
{ command: 'check
|
|
53379
|
+
{ command: 'check', description: 'Check all packages with detailed info' },
|
|
53069
53380
|
{ command: 'check react', description: 'Check specific package version' },
|
|
53070
53381
|
{ command: 'check @types/node', description: 'Check scoped packages' },
|
|
53071
53382
|
{ command: 'check --help', description: 'Show this help message' }
|
|
@@ -53083,11 +53394,10 @@ function showCheckHelp() {
|
|
|
53083
53394
|
}
|
|
53084
53395
|
],
|
|
53085
53396
|
tips: [
|
|
53086
|
-
'Use --verbose for detailed package information including security vulnerabilities',
|
|
53087
53397
|
'Check specific packages by name for targeted updates'
|
|
53088
53398
|
]
|
|
53089
53399
|
};
|
|
53090
|
-
(0,helpFormatter
|
|
53400
|
+
(0,helpFormatter.createStandardHelp)(helpConfig);
|
|
53091
53401
|
}
|
|
53092
53402
|
async function checkCommand(packageName, options) {
|
|
53093
53403
|
// Check for help flag
|
|
@@ -53100,17 +53410,13 @@ async function checkCommand(packageName, options) {
|
|
|
53100
53410
|
showCheckHelp();
|
|
53101
53411
|
return;
|
|
53102
53412
|
}
|
|
53103
|
-
//
|
|
53104
|
-
const isVerbose =
|
|
53105
|
-
// If verbose is the first argument, check all packages with verbose output
|
|
53106
|
-
if (packageName === '--verbose' || packageName === '-v') {
|
|
53107
|
-
packageName = undefined;
|
|
53108
|
-
}
|
|
53413
|
+
// The check command now shows full details by default (verbose removed)
|
|
53414
|
+
const isVerbose = true;
|
|
53109
53415
|
try {
|
|
53110
53416
|
// Display command banner
|
|
53111
53417
|
(0,banner/* displayCommandBanner */.kn)('Check', 'Check package versions and updates for your project dependencies');
|
|
53112
53418
|
console.log('\n' + source/* default */.Ay.hex('#f39c12')('🔍 Starting package check...'));
|
|
53113
|
-
if (packageName
|
|
53419
|
+
if (packageName) {
|
|
53114
53420
|
await checkSinglePackage(packageName, isVerbose);
|
|
53115
53421
|
}
|
|
53116
53422
|
else {
|
|
@@ -53524,14 +53830,14 @@ function displayPackageInfo(packages, projectType, verbose = false, isMultiProje
|
|
|
53524
53830
|
if (projectType) {
|
|
53525
53831
|
console.log(`${source/* default */.Ay.hex('#00d2d3')('📋')} ${projectType.name} (${source/* default */.Ay.cyan(projectType.packageManager)})`);
|
|
53526
53832
|
}
|
|
53527
|
-
//
|
|
53528
|
-
const packagesToShow =
|
|
53529
|
-
// Group packages by status for better organization
|
|
53833
|
+
// Since verbose mode is removed, show all packages by default
|
|
53834
|
+
const packagesToShow = packages;
|
|
53835
|
+
// Group packages by status for better organization (show all)
|
|
53530
53836
|
const groupedPackages = [
|
|
53531
|
-
...deprecatedPackages
|
|
53532
|
-
...outdatedPackages
|
|
53533
|
-
...upToDatePackages
|
|
53534
|
-
]
|
|
53837
|
+
...deprecatedPackages,
|
|
53838
|
+
...outdatedPackages,
|
|
53839
|
+
...upToDatePackages
|
|
53840
|
+
];
|
|
53535
53841
|
if (groupedPackages.length > 0) {
|
|
53536
53842
|
console.log('\n');
|
|
53537
53843
|
// Compact table format
|
|
@@ -53555,26 +53861,7 @@ function displayPackageInfo(packages, projectType, verbose = false, isMultiProje
|
|
|
53555
53861
|
});
|
|
53556
53862
|
}
|
|
53557
53863
|
// Show remaining packages summary when not in verbose mode
|
|
53558
|
-
|
|
53559
|
-
const remaining = packages.length - groupedPackages.length;
|
|
53560
|
-
const remainingOutdated = packages.filter(pkg => pkg.needsUpdate && !groupedPackages.includes(pkg)).length;
|
|
53561
|
-
const remainingUpToDate = packages.filter(pkg => !pkg.needsUpdate && !pkg.isDeprecated && !groupedPackages.includes(pkg)).length;
|
|
53562
|
-
console.log('\n' + source/* default */.Ay.gray('─'.repeat(80)));
|
|
53563
|
-
const hiddenSummary = [
|
|
53564
|
-
remainingUpToDate > 0 ? `${source/* default */.Ay.hex('#10ac84')('✅')} ${remainingUpToDate} more up-to-date` : null,
|
|
53565
|
-
remainingOutdated > 0 ? `${source/* default */.Ay.hex('#f39c12')('⚠️')} ${remainingOutdated} more need updates` : null
|
|
53566
|
-
].filter(Boolean).join(' • ');
|
|
53567
|
-
if (hiddenSummary) {
|
|
53568
|
-
console.log(`${source/* default */.Ay.dim(`+${remaining} hidden:`)} ${hiddenSummary}`);
|
|
53569
|
-
}
|
|
53570
|
-
// Show sample of remaining package names
|
|
53571
|
-
if (remainingOutdated > 0) {
|
|
53572
|
-
const sampleNames = packages.filter(pkg => pkg.needsUpdate && !groupedPackages.includes(pkg))
|
|
53573
|
-
.slice(0, 4).map(pkg => pkg.name).join(', ');
|
|
53574
|
-
console.log(`${source/* default */.Ay.dim('Outdated:')} ${sampleNames}${remainingOutdated > 4 ? '...' : ''}`);
|
|
53575
|
-
}
|
|
53576
|
-
console.log(`\n${source/* default */.Ay.cyan('💡')} Use ${source/* default */.Ay.bold('--verbose')} to see all ${packages.length} packages`);
|
|
53577
|
-
}
|
|
53864
|
+
// No 'hidden' summary - all packages are shown
|
|
53578
53865
|
// Compact recommendations section
|
|
53579
53866
|
if (outdatedPackages.length > 0 || deprecatedPackages.length > 0) {
|
|
53580
53867
|
console.log('\n' + source/* default */.Ay.hex('#667eea')('💡 Quick Actions:'));
|
|
@@ -53611,6 +53898,222 @@ async function cachePackageCheckResults(packageInfos, projectType) {
|
|
|
53611
53898
|
}
|
|
53612
53899
|
}
|
|
53613
53900
|
|
|
53901
|
+
;// ./dist/commands/size.js
|
|
53902
|
+
|
|
53903
|
+
|
|
53904
|
+
|
|
53905
|
+
|
|
53906
|
+
function humanBytes(bytes) {
|
|
53907
|
+
if (bytes < 1024)
|
|
53908
|
+
return `${bytes} B`;
|
|
53909
|
+
const units = ['KB', 'MB', 'GB', 'TB'];
|
|
53910
|
+
let i = -1;
|
|
53911
|
+
do {
|
|
53912
|
+
bytes = bytes / 1024;
|
|
53913
|
+
i++;
|
|
53914
|
+
} while (bytes >= 1024 && i < units.length - 1);
|
|
53915
|
+
return `${bytes.toFixed(2)} ${units[i]}`;
|
|
53916
|
+
}
|
|
53917
|
+
async function folderSize(p) {
|
|
53918
|
+
let total = 0;
|
|
53919
|
+
try {
|
|
53920
|
+
const stats = await fs_extra_lib.stat(p);
|
|
53921
|
+
if (stats.isFile())
|
|
53922
|
+
return stats.size;
|
|
53923
|
+
if (stats.isDirectory()) {
|
|
53924
|
+
const items = await fs_extra_lib.readdir(p);
|
|
53925
|
+
for (const item of items) {
|
|
53926
|
+
const itemPath = external_path_.join(p, item);
|
|
53927
|
+
total += await folderSize(itemPath);
|
|
53928
|
+
}
|
|
53929
|
+
}
|
|
53930
|
+
}
|
|
53931
|
+
catch (err) {
|
|
53932
|
+
// ignore permission errors
|
|
53933
|
+
}
|
|
53934
|
+
return total;
|
|
53935
|
+
}
|
|
53936
|
+
async function listLargestFiles(p, limit = 10) {
|
|
53937
|
+
const results = [];
|
|
53938
|
+
async function walk(curr) {
|
|
53939
|
+
try {
|
|
53940
|
+
const stats = await fs_extra_lib.stat(curr);
|
|
53941
|
+
if (stats.isFile()) {
|
|
53942
|
+
results.push({ file: curr, size: stats.size });
|
|
53943
|
+
return;
|
|
53944
|
+
}
|
|
53945
|
+
if (stats.isDirectory()) {
|
|
53946
|
+
const items = await fs_extra_lib.readdir(curr);
|
|
53947
|
+
for (const item of items) {
|
|
53948
|
+
await walk(external_path_.join(curr, item));
|
|
53949
|
+
}
|
|
53950
|
+
}
|
|
53951
|
+
}
|
|
53952
|
+
catch (err) {
|
|
53953
|
+
// ignore
|
|
53954
|
+
}
|
|
53955
|
+
}
|
|
53956
|
+
await walk(p);
|
|
53957
|
+
results.sort((a, b) => b.size - a.size);
|
|
53958
|
+
return results.slice(0, limit);
|
|
53959
|
+
}
|
|
53960
|
+
async function showSizeHelp() {
|
|
53961
|
+
const { createStandardHelp } = await Promise.resolve(/* import() */).then(__webpack_require__.bind(__webpack_require__, 4120));
|
|
53962
|
+
const helpConfig = {
|
|
53963
|
+
commandName: 'Size',
|
|
53964
|
+
emoji: '📏',
|
|
53965
|
+
description: 'Show size of files and directories. Supports multiple paths and summary output.',
|
|
53966
|
+
usage: ['size [paths...]', 'size -a [paths...]', 'size --top <n> [paths...]'],
|
|
53967
|
+
options: [
|
|
53968
|
+
{ flag: '-a, --all', description: 'Show sizes for all files and folders (verbose)' },
|
|
53969
|
+
{ flag: '--top <n>', description: 'Show top N largest files (default 10)' },
|
|
53970
|
+
{ flag: '--json', description: 'Output machine-readable JSON' }
|
|
53971
|
+
],
|
|
53972
|
+
examples: [
|
|
53973
|
+
{ command: 'size .', description: 'Show size for current directory' },
|
|
53974
|
+
{ command: 'size src package.json', description: 'Show sizes for multiple paths' },
|
|
53975
|
+
{ command: 'size -a src', description: 'List all files and folders sizes under src' }
|
|
53976
|
+
]
|
|
53977
|
+
};
|
|
53978
|
+
// createStandardHelp is exported as named function; call it
|
|
53979
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
53980
|
+
// @ts-ignore
|
|
53981
|
+
createStandardHelp(helpConfig);
|
|
53982
|
+
}
|
|
53983
|
+
async function sizeCommand(targets, options) {
|
|
53984
|
+
try {
|
|
53985
|
+
(0,banner/* displayCommandBanner */.kn)('size', 'Show file or folder sizes');
|
|
53986
|
+
// Normalize targets to an array
|
|
53987
|
+
let paths = [];
|
|
53988
|
+
if (!targets) {
|
|
53989
|
+
paths = ['.'];
|
|
53990
|
+
}
|
|
53991
|
+
else if (Array.isArray(targets)) {
|
|
53992
|
+
paths = targets.length === 0 ? ['.'] : targets;
|
|
53993
|
+
}
|
|
53994
|
+
else if (typeof targets === 'string') {
|
|
53995
|
+
paths = [targets];
|
|
53996
|
+
}
|
|
53997
|
+
// Resolve and dedupe
|
|
53998
|
+
paths = Array.from(new Set(paths.map(p => p === '.' ? process.cwd() : external_path_.resolve(process.cwd(), p))));
|
|
53999
|
+
const topN = options?.top ? Number(options.top) : 10;
|
|
54000
|
+
const showAll = !!options?.all;
|
|
54001
|
+
const jsonOutput = !!options?.json;
|
|
54002
|
+
let combinedTotal = 0;
|
|
54003
|
+
const combinedFiles = [];
|
|
54004
|
+
const resultsPerPath = [];
|
|
54005
|
+
for (const p of paths) {
|
|
54006
|
+
if (!await fs_extra_lib.pathExists(p)) {
|
|
54007
|
+
console.log(source/* default */.Ay.red(`❌ Path not found: ${p}`));
|
|
54008
|
+
continue;
|
|
54009
|
+
}
|
|
54010
|
+
const stats = await fs_extra_lib.stat(p);
|
|
54011
|
+
if (stats.isFile()) {
|
|
54012
|
+
const entry = { path: p, type: 'file', size: stats.size };
|
|
54013
|
+
if (jsonOutput)
|
|
54014
|
+
resultsPerPath.push(entry);
|
|
54015
|
+
else {
|
|
54016
|
+
console.log(`\n${source/* default */.Ay.cyan('File:')} ${p}`);
|
|
54017
|
+
console.log(`${source/* default */.Ay.cyan('Size:')} ${source/* default */.Ay.bold(humanBytes(stats.size))}`);
|
|
54018
|
+
}
|
|
54019
|
+
combinedTotal += stats.size;
|
|
54020
|
+
combinedFiles.push({ file: p, size: stats.size });
|
|
54021
|
+
continue;
|
|
54022
|
+
}
|
|
54023
|
+
const total = await folderSize(p);
|
|
54024
|
+
combinedTotal += total;
|
|
54025
|
+
if (jsonOutput)
|
|
54026
|
+
resultsPerPath.push({ path: p, type: 'directory', size: total });
|
|
54027
|
+
else {
|
|
54028
|
+
console.log(`\n${source/* default */.Ay.cyan('Directory:')} ${p}`);
|
|
54029
|
+
console.log(`${source/* default */.Ay.cyan('Total size:')} ${source/* default */.Ay.bold(humanBytes(total))}`);
|
|
54030
|
+
}
|
|
54031
|
+
if (showAll) {
|
|
54032
|
+
// Walk directory and print sizes for every file and nested folder
|
|
54033
|
+
if (!jsonOutput)
|
|
54034
|
+
console.log(source/* default */.Ay.hex('#00d2d3')('\nListing all files and folders with sizes (may be verbose):'));
|
|
54035
|
+
async function walkAndPrint(curr) {
|
|
54036
|
+
try {
|
|
54037
|
+
const s = await fs_extra_lib.stat(curr);
|
|
54038
|
+
if (s.isFile()) {
|
|
54039
|
+
if (jsonOutput)
|
|
54040
|
+
resultsPerPath.push({ path: curr, type: 'file', size: s.size });
|
|
54041
|
+
else
|
|
54042
|
+
console.log(`${source/* default */.Ay.yellow(humanBytes(s.size)).padEnd(10)} ${source/* default */.Ay.gray(curr)}`);
|
|
54043
|
+
combinedFiles.push({ file: curr, size: s.size });
|
|
54044
|
+
return;
|
|
54045
|
+
}
|
|
54046
|
+
if (s.isDirectory()) {
|
|
54047
|
+
const items = await fs_extra_lib.readdir(curr);
|
|
54048
|
+
let folderTotal = 0;
|
|
54049
|
+
for (const it of items) {
|
|
54050
|
+
const ip = external_path_.join(curr, it);
|
|
54051
|
+
const childSize = await folderSize(ip);
|
|
54052
|
+
folderTotal += childSize;
|
|
54053
|
+
await walkAndPrint(ip);
|
|
54054
|
+
}
|
|
54055
|
+
if (jsonOutput)
|
|
54056
|
+
resultsPerPath.push({ path: curr, type: 'directory', size: folderTotal });
|
|
54057
|
+
else
|
|
54058
|
+
console.log(`${source/* default */.Ay.blue('Dir Total:')} ${source/* default */.Ay.bold(humanBytes(folderTotal)).padEnd(10)} ${source/* default */.Ay.gray(curr)}`);
|
|
54059
|
+
}
|
|
54060
|
+
}
|
|
54061
|
+
catch (err) {
|
|
54062
|
+
// ignore
|
|
54063
|
+
}
|
|
54064
|
+
}
|
|
54065
|
+
await walkAndPrint(p);
|
|
54066
|
+
}
|
|
54067
|
+
else if (topN > 0) {
|
|
54068
|
+
const largest = await listLargestFiles(p, topN);
|
|
54069
|
+
if (jsonOutput) {
|
|
54070
|
+
const last = resultsPerPath[resultsPerPath.length - 1];
|
|
54071
|
+
if (last)
|
|
54072
|
+
last.top = largest.map(f => ({ file: f.file, size: f.size }));
|
|
54073
|
+
}
|
|
54074
|
+
else {
|
|
54075
|
+
console.log(`\n${source/* default */.Ay.hex('#667eea')('Top ' + topN + ' largest files in ' + p + ':')}`);
|
|
54076
|
+
largest.forEach((f, idx) => {
|
|
54077
|
+
console.log(`${String(idx + 1).padStart(2)}. ${source/* default */.Ay.yellow(humanBytes(f.size)).padEnd(10)} ${source/* default */.Ay.gray(f.file)}`);
|
|
54078
|
+
combinedFiles.push(f);
|
|
54079
|
+
});
|
|
54080
|
+
}
|
|
54081
|
+
}
|
|
54082
|
+
}
|
|
54083
|
+
// JSON output
|
|
54084
|
+
if (jsonOutput) {
|
|
54085
|
+
const uniqCombined = Array.from(new Map(combinedFiles.map(f => [f.file, f])).values());
|
|
54086
|
+
uniqCombined.sort((a, b) => b.size - a.size);
|
|
54087
|
+
const out = {
|
|
54088
|
+
scannedPaths: paths,
|
|
54089
|
+
perPath: resultsPerPath,
|
|
54090
|
+
combinedSize: combinedTotal,
|
|
54091
|
+
topFiles: uniqCombined.slice(0, topN).map(f => ({ file: f.file, size: f.size }))
|
|
54092
|
+
};
|
|
54093
|
+
console.log(JSON.stringify(out, null, 2));
|
|
54094
|
+
return;
|
|
54095
|
+
}
|
|
54096
|
+
// Combined summary (human)
|
|
54097
|
+
if (paths.length > 1) {
|
|
54098
|
+
console.log('\n' + source/* default */.Ay.hex('#00d2d3')('📦 Combined Summary'));
|
|
54099
|
+
console.log(`${source/* default */.Ay.cyan('Paths scanned:')} ${paths.length}`);
|
|
54100
|
+
console.log(`${source/* default */.Ay.cyan('Combined size:')} ${source/* default */.Ay.bold(humanBytes(combinedTotal))}`);
|
|
54101
|
+
if (topN > 0 && combinedFiles.length > 0) {
|
|
54102
|
+
const uniqCombined = Array.from(new Map(combinedFiles.map(f => [f.file, f])).values());
|
|
54103
|
+
uniqCombined.sort((a, b) => b.size - a.size);
|
|
54104
|
+
console.log(`\n${source/* default */.Ay.hex('#667eea')('Top ' + topN + ' largest files across all inputs:')}`);
|
|
54105
|
+
uniqCombined.slice(0, topN).forEach((f, idx) => {
|
|
54106
|
+
console.log(`${String(idx + 1).padStart(2)}. ${source/* default */.Ay.yellow(humanBytes(f.size)).padEnd(10)} ${source/* default */.Ay.gray(f.file)}`);
|
|
54107
|
+
});
|
|
54108
|
+
}
|
|
54109
|
+
}
|
|
54110
|
+
}
|
|
54111
|
+
catch (err) {
|
|
54112
|
+
console.error(source/* default */.Ay.red('❌ Failed to calculate size:'), err.message || err);
|
|
54113
|
+
process.exit(1);
|
|
54114
|
+
}
|
|
54115
|
+
}
|
|
54116
|
+
|
|
53614
54117
|
// EXTERNAL MODULE: ./node_modules/.pnpm/figlet@1.8.2/node_modules/figlet/lib/node-figlet.js
|
|
53615
54118
|
var node_figlet = __webpack_require__(9372);
|
|
53616
54119
|
;// ./dist/utils/ui.js
|
|
@@ -54369,7 +54872,7 @@ function showCloneHelp() {
|
|
|
54369
54872
|
'Shallow clones are faster but have limited git history'
|
|
54370
54873
|
]
|
|
54371
54874
|
};
|
|
54372
|
-
(0,helpFormatter
|
|
54875
|
+
(0,helpFormatter.createStandardHelp)(helpConfig);
|
|
54373
54876
|
}
|
|
54374
54877
|
async function clone_cloneRepo(userRepo, projectName, options = {}) {
|
|
54375
54878
|
const startTime = Date.now();
|
|
@@ -54479,7 +54982,7 @@ function showUpgradeHelp() {
|
|
|
54479
54982
|
'Use npm install -g package-installer-cli@<version> to rollback'
|
|
54480
54983
|
]
|
|
54481
54984
|
};
|
|
54482
|
-
(0,helpFormatter
|
|
54985
|
+
(0,helpFormatter.createStandardHelp)(helpConfig);
|
|
54483
54986
|
}
|
|
54484
54987
|
/**
|
|
54485
54988
|
* Get current CLI version
|
|
@@ -56311,7 +56814,7 @@ function showUpdateHelp() {
|
|
|
56311
56814
|
'Use --latest flag with caution as it may introduce breaking changes'
|
|
56312
56815
|
]
|
|
56313
56816
|
};
|
|
56314
|
-
(0,helpFormatter
|
|
56817
|
+
(0,helpFormatter.createStandardHelp)(helpConfig);
|
|
56315
56818
|
}
|
|
56316
56819
|
|
|
56317
56820
|
// EXTERNAL MODULE: external "os"
|
|
@@ -56375,7 +56878,7 @@ function showAnalyzeHelp() {
|
|
|
56375
56878
|
'Use --reset to start fresh analytics tracking'
|
|
56376
56879
|
]
|
|
56377
56880
|
};
|
|
56378
|
-
(0,helpFormatter
|
|
56881
|
+
(0,helpFormatter.createStandardHelp)(helpConfig);
|
|
56379
56882
|
}
|
|
56380
56883
|
/**
|
|
56381
56884
|
* Main analyze command function
|
|
@@ -63332,7 +63835,7 @@ function showDeployHelp() {
|
|
|
63332
63835
|
'Environment variables can be configured per platform'
|
|
63333
63836
|
]
|
|
63334
63837
|
};
|
|
63335
|
-
(0,helpFormatter
|
|
63838
|
+
(0,helpFormatter.createStandardHelp)(helpConfig);
|
|
63336
63839
|
}
|
|
63337
63840
|
/**
|
|
63338
63841
|
* Main deploy command function
|
|
@@ -64075,7 +64578,7 @@ function showCleanHelp() {
|
|
|
64075
64578
|
'Use --cache to clean package manager caches for more space'
|
|
64076
64579
|
]
|
|
64077
64580
|
};
|
|
64078
|
-
(0,helpFormatter
|
|
64581
|
+
(0,helpFormatter.createStandardHelp)(helpConfig);
|
|
64079
64582
|
}
|
|
64080
64583
|
/**
|
|
64081
64584
|
* Main clean command function
|
|
@@ -64444,7 +64947,7 @@ function showCacheHelp() {
|
|
|
64444
64947
|
'Use --size to check cache disk usage before clearing'
|
|
64445
64948
|
]
|
|
64446
64949
|
};
|
|
64447
|
-
(0,helpFormatter
|
|
64950
|
+
(0,helpFormatter.createStandardHelp)(helpConfig);
|
|
64448
64951
|
}
|
|
64449
64952
|
const CLI_CACHE_DIR = '.package-installer-cli';
|
|
64450
64953
|
/**
|
|
@@ -64995,7 +65498,7 @@ function showEnvironmentHelp() {
|
|
|
64995
65498
|
'Validate .env files to catch configuration issues early'
|
|
64996
65499
|
]
|
|
64997
65500
|
};
|
|
64998
|
-
(0,helpFormatter
|
|
65501
|
+
(0,helpFormatter.createStandardHelp)(helpConfig);
|
|
64999
65502
|
}
|
|
65000
65503
|
/**
|
|
65001
65504
|
* Main environment command function
|
|
@@ -65654,7 +66157,7 @@ function showDoctorHelp() {
|
|
|
65654
66157
|
]
|
|
65655
66158
|
};
|
|
65656
66159
|
console.clear();
|
|
65657
|
-
(0,helpFormatter
|
|
66160
|
+
(0,helpFormatter.createStandardHelp)(helpConfig);
|
|
65658
66161
|
}
|
|
65659
66162
|
/**
|
|
65660
66163
|
* Main doctor command function
|
|
@@ -68047,166 +68550,16 @@ function email_getSystemInfo() {
|
|
|
68047
68550
|
};
|
|
68048
68551
|
}
|
|
68049
68552
|
}
|
|
68050
|
-
|
|
68051
|
-
|
|
68052
|
-
|
|
68053
|
-
async function configureEmailMcp() {
|
|
68054
|
-
try {
|
|
68055
|
-
console.log((0,node_modules_boxen/* default */.A)(source/* default */.Ay.hex('#00d2d3')('🔧 Email Configuration Setup') + '\n\n' +
|
|
68056
|
-
source/* default */.Ay.white('To send emails, we need to configure your email credentials.') + '\n' +
|
|
68057
|
-
source/* default */.Ay.hex('#95afc0')('Your credentials will be stored securely and used only for sending feedback emails.') + '\n\n' +
|
|
68058
|
-
source/* default */.Ay.hex('#ffa502')('Supported Email Providers:') + '\n' +
|
|
68059
|
-
source/* default */.Ay.hex('#95afc0')('• Gmail (recommended)') + '\n' +
|
|
68060
|
-
source/* default */.Ay.hex('#95afc0')('• Outlook/Hotmail') + '\n' +
|
|
68061
|
-
source/* default */.Ay.hex('#95afc0')('• Yahoo') + '\n' +
|
|
68062
|
-
source/* default */.Ay.hex('#95afc0')('• Custom SMTP servers'), {
|
|
68063
|
-
padding: 1,
|
|
68064
|
-
margin: 1,
|
|
68065
|
-
borderStyle: 'round',
|
|
68066
|
-
borderColor: 'cyan'
|
|
68067
|
-
}));
|
|
68068
|
-
// Collect email configuration
|
|
68069
|
-
const emailConfig = await lib["default"].prompt([
|
|
68070
|
-
{
|
|
68071
|
-
type: 'list',
|
|
68072
|
-
name: 'provider',
|
|
68073
|
-
message: 'Select your email provider:',
|
|
68074
|
-
choices: [
|
|
68075
|
-
{ name: '📧 Gmail', value: 'gmail' },
|
|
68076
|
-
{ name: '🔷 Outlook/Hotmail', value: 'outlook' },
|
|
68077
|
-
{ name: '🟡 Yahoo', value: 'yahoo' },
|
|
68078
|
-
{ name: '⚙️ Custom SMTP', value: 'custom' }
|
|
68079
|
-
]
|
|
68080
|
-
},
|
|
68081
|
-
{
|
|
68082
|
-
type: 'input',
|
|
68083
|
-
name: 'email',
|
|
68084
|
-
message: 'Enter your email address:',
|
|
68085
|
-
validate: (input) => {
|
|
68086
|
-
const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
|
|
68087
|
-
return emailRegex.test(input) || 'Please enter a valid email address';
|
|
68088
|
-
}
|
|
68089
|
-
},
|
|
68090
|
-
{
|
|
68091
|
-
type: 'password',
|
|
68092
|
-
name: 'password',
|
|
68093
|
-
message: (answers) => {
|
|
68094
|
-
if (answers.provider === 'gmail') {
|
|
68095
|
-
return 'Enter your Gmail App Password (not regular password):';
|
|
68096
|
-
}
|
|
68097
|
-
return 'Enter your email password or app password:';
|
|
68098
|
-
},
|
|
68099
|
-
validate: (input) => input.length > 0 || 'Password is required'
|
|
68100
|
-
}
|
|
68101
|
-
]);
|
|
68102
|
-
// Add custom SMTP settings if needed
|
|
68103
|
-
let smtpConfig = {};
|
|
68104
|
-
if (emailConfig.provider === 'custom') {
|
|
68105
|
-
smtpConfig = await lib["default"].prompt([
|
|
68106
|
-
{
|
|
68107
|
-
type: 'input',
|
|
68108
|
-
name: 'host',
|
|
68109
|
-
message: 'SMTP Host (e.g., smtp.gmail.com):',
|
|
68110
|
-
validate: (input) => input.length > 0 || 'SMTP host is required'
|
|
68111
|
-
},
|
|
68112
|
-
{
|
|
68113
|
-
type: 'input',
|
|
68114
|
-
name: 'port',
|
|
68115
|
-
message: 'SMTP Port (e.g., 587):',
|
|
68116
|
-
default: '587',
|
|
68117
|
-
validate: (input) => {
|
|
68118
|
-
const port = parseInt(input);
|
|
68119
|
-
return (port > 0 && port <= 65535) || 'Please enter a valid port number';
|
|
68120
|
-
}
|
|
68121
|
-
}
|
|
68122
|
-
]);
|
|
68123
|
-
}
|
|
68124
|
-
// Set provider-specific SMTP settings
|
|
68125
|
-
let host, port;
|
|
68126
|
-
switch (emailConfig.provider) {
|
|
68127
|
-
case 'gmail':
|
|
68128
|
-
host = 'smtp.gmail.com';
|
|
68129
|
-
port = '587';
|
|
68130
|
-
break;
|
|
68131
|
-
case 'outlook':
|
|
68132
|
-
host = 'smtp.live.com';
|
|
68133
|
-
port = '587';
|
|
68134
|
-
break;
|
|
68135
|
-
case 'yahoo':
|
|
68136
|
-
host = 'smtp.mail.yahoo.com';
|
|
68137
|
-
port = '587';
|
|
68138
|
-
break;
|
|
68139
|
-
case 'custom':
|
|
68140
|
-
host = smtpConfig.host;
|
|
68141
|
-
port = smtpConfig.port;
|
|
68142
|
-
break;
|
|
68143
|
-
default:
|
|
68144
|
-
host = 'smtp.gmail.com';
|
|
68145
|
-
port = '587';
|
|
68146
|
-
}
|
|
68147
|
-
// Show provider-specific setup instructions
|
|
68148
|
-
if (emailConfig.provider === 'gmail') {
|
|
68149
|
-
console.log((0,node_modules_boxen/* default */.A)(source/* default */.Ay.hex('#ffa502')('📧 Gmail Setup Instructions') + '\n\n' +
|
|
68150
|
-
source/* default */.Ay.hex('#95afc0')('For Gmail, you need to use an App Password:') + '\n' +
|
|
68151
|
-
source/* default */.Ay.hex('#95afc0')('1. Enable 2-Factor Authentication in your Google Account') + '\n' +
|
|
68152
|
-
source/* default */.Ay.hex('#95afc0')('2. Go to Google Account Settings > Security') + '\n' +
|
|
68153
|
-
source/* default */.Ay.hex('#95afc0')('3. Under "2-Step Verification", click "App passwords"') + '\n' +
|
|
68154
|
-
source/* default */.Ay.hex('#95afc0')('4. Generate a new app password for "Mail"') + '\n' +
|
|
68155
|
-
source/* default */.Ay.hex('#95afc0')('5. Use that 16-character password above') + '\n\n' +
|
|
68156
|
-
source/* default */.Ay.hex('#00d2d3')('💡 Regular Gmail passwords will NOT work!'), {
|
|
68157
|
-
padding: 1,
|
|
68158
|
-
margin: 1,
|
|
68159
|
-
borderStyle: 'round',
|
|
68160
|
-
borderColor: 'yellow'
|
|
68161
|
-
}));
|
|
68162
|
-
}
|
|
68163
|
-
// Create .env content
|
|
68164
|
-
const envContent = `# Email MCP Server Configuration
|
|
68165
|
-
# Generated by Package Installer CLI
|
|
68166
|
-
EMAIL_HOST=${host}
|
|
68167
|
-
EMAIL_PORT=${port}
|
|
68168
|
-
EMAIL_USER=${emailConfig.email}
|
|
68169
|
-
EMAIL_PASS=${emailConfig.password}
|
|
68170
|
-
EMAIL_SECURE=false
|
|
68171
|
-
EMAIL_TLS=true
|
|
68172
|
-
`;
|
|
68173
|
-
// Find Email MCP Server directory and create .env file
|
|
68174
|
-
const mcpInfo = await checkEmailMcpAvailability();
|
|
68175
|
-
let envFilePath;
|
|
68176
|
-
if (mcpInfo.installationType === 'local' && mcpInfo.path) {
|
|
68177
|
-
// Local installation - create .env in the project directory
|
|
68178
|
-
const projectDir = external_path_.dirname(mcpInfo.path);
|
|
68179
|
-
envFilePath = external_path_.join(projectDir, '.env');
|
|
68180
|
-
}
|
|
68181
|
-
else {
|
|
68182
|
-
// Global or npx installation - create .env in home directory
|
|
68183
|
-
const configDir = external_path_.join(external_os_.homedir(), '.email-mcp-server');
|
|
68184
|
-
await fs_extra_lib.ensureDir(configDir);
|
|
68185
|
-
envFilePath = external_path_.join(configDir, '.env');
|
|
68186
|
-
}
|
|
68187
|
-
// Write .env file
|
|
68188
|
-
await fs_extra_lib.writeFile(envFilePath, envContent, 'utf8');
|
|
68189
|
-
console.log((0,node_modules_boxen/* default */.A)(source/* default */.Ay.green('✅ Email Configuration Saved!') + '\n\n' +
|
|
68190
|
-
source/* default */.Ay.white('Email credentials have been configured successfully.') + '\n' +
|
|
68191
|
-
source/* default */.Ay.hex('#95afc0')(`Configuration saved to: ${source/* default */.Ay.cyan(envFilePath)}`) + '\n\n' +
|
|
68192
|
-
source/* default */.Ay.hex('#00d2d3')('You can now send feedback emails using the CLI!') + '\n' +
|
|
68193
|
-
source/* default */.Ay.hex('#95afc0')('Test the setup with: ') + source/* default */.Ay.cyan('pi email --test'), {
|
|
68194
|
-
padding: 1,
|
|
68195
|
-
margin: 1,
|
|
68196
|
-
borderStyle: 'round',
|
|
68197
|
-
borderColor: 'green'
|
|
68198
|
-
}));
|
|
68199
|
-
return true;
|
|
68200
|
-
}
|
|
68201
|
-
catch (error) {
|
|
68202
|
-
console.error(source/* default */.Ay.red(`❌ Failed to configure email: ${error.message}`));
|
|
68203
|
-
return false;
|
|
68204
|
-
}
|
|
68205
|
-
}
|
|
68553
|
+
// NOTE: interactive configuration was removed. We delegate permanent setup
|
|
68554
|
+
// to the Email MCP Server installer (npx @0xshariq/email-mcp-server setup or email-cli setup).
|
|
68555
|
+
// The CLI will instruct the user to run the external setup command which persists config.
|
|
68206
68556
|
/**
|
|
68207
68557
|
* Check if email is configured and prompt for setup if needed
|
|
68208
68558
|
*/
|
|
68209
68559
|
async function ensureEmailConfigured() {
|
|
68560
|
+
// If Email MCP Server is available but not configured, run the external setup command
|
|
68561
|
+
// interactively so the user can persist configuration. This keeps setup centralized
|
|
68562
|
+
// in the email CLI implementation.
|
|
68210
68563
|
const mcpInfo = await checkEmailMcpAvailability();
|
|
68211
68564
|
if (!mcpInfo.available) {
|
|
68212
68565
|
console.log(source/* default */.Ay.yellow('⚠️ Email MCP Server not installed. Please install it first:'));
|
|
@@ -68214,8 +68567,36 @@ async function ensureEmailConfigured() {
|
|
|
68214
68567
|
return false;
|
|
68215
68568
|
}
|
|
68216
68569
|
if (!mcpInfo.configured) {
|
|
68217
|
-
console.log(source/* default */.Ay.yellow('⚠️ Email not configured.
|
|
68218
|
-
|
|
68570
|
+
console.log(source/* default */.Ay.yellow('⚠️ Email not configured. Running email CLI setup to configure your environment...'));
|
|
68571
|
+
try {
|
|
68572
|
+
let setupCmd = '';
|
|
68573
|
+
const execOptions = { stdio: 'inherit', encoding: 'utf8' };
|
|
68574
|
+
// Prefer the globally installed email-cli setup command if available, otherwise use npx
|
|
68575
|
+
switch (mcpInfo.installationType) {
|
|
68576
|
+
case 'global':
|
|
68577
|
+
setupCmd = 'email-cli setup';
|
|
68578
|
+
break;
|
|
68579
|
+
case 'npx':
|
|
68580
|
+
// npx may prompt to install/run interactively
|
|
68581
|
+
setupCmd = 'npx @0xshariq/email-mcp-server setup';
|
|
68582
|
+
break;
|
|
68583
|
+
case 'local':
|
|
68584
|
+
setupCmd = `node "${mcpInfo.path}" setup`;
|
|
68585
|
+
execOptions.cwd = external_path_.dirname(mcpInfo.path);
|
|
68586
|
+
break;
|
|
68587
|
+
default:
|
|
68588
|
+
setupCmd = 'email-cli setup';
|
|
68589
|
+
}
|
|
68590
|
+
(0,external_child_process_.execSync)(setupCmd, execOptions);
|
|
68591
|
+
// Re-check availability/configuration
|
|
68592
|
+
const refreshed = await checkEmailMcpAvailability();
|
|
68593
|
+
return refreshed.available && !!refreshed.configured;
|
|
68594
|
+
}
|
|
68595
|
+
catch (err) {
|
|
68596
|
+
console.log(source/* default */.Ay.red('❌ Failed to run external email setup command. Please run manually:'));
|
|
68597
|
+
console.log(source/* default */.Ay.cyan('email-cli setup') + ' ' + source/* default */.Ay.gray('(or: npx @0xshariq/email-mcp-server setup)'));
|
|
68598
|
+
return false;
|
|
68599
|
+
}
|
|
68219
68600
|
}
|
|
68220
68601
|
return true;
|
|
68221
68602
|
}
|
|
@@ -68338,8 +68719,15 @@ async function collectSenderEmailOption() {
|
|
|
68338
68719
|
* Supports both plain text and HTML emails
|
|
68339
68720
|
* Uses user's configured or custom email to send to khanshariq92213@gmail.com
|
|
68340
68721
|
*/
|
|
68341
|
-
async function sendEmailViaMcp(subject, body, htmlBody, customCredentials) {
|
|
68722
|
+
async function sendEmailViaMcp(subject, body, htmlBody, customCredentials, forceHtml = false) {
|
|
68342
68723
|
let tempEnvFile = '';
|
|
68724
|
+
let tempHtmlFile = '';
|
|
68725
|
+
let execOptions = {
|
|
68726
|
+
stdio: 'pipe',
|
|
68727
|
+
timeout: 45000,
|
|
68728
|
+
encoding: 'utf8',
|
|
68729
|
+
env: { ...(process.env || {}) }
|
|
68730
|
+
};
|
|
68343
68731
|
try {
|
|
68344
68732
|
const mcpInfo = await checkEmailMcpAvailability();
|
|
68345
68733
|
if (!mcpInfo.available) {
|
|
@@ -68379,23 +68767,17 @@ EMAIL_SECURE=false
|
|
|
68379
68767
|
EMAIL_TLS=true
|
|
68380
68768
|
`;
|
|
68381
68769
|
await fs_extra_lib.writeFile(tempEnvFile, tempEnvContent);
|
|
68382
|
-
//
|
|
68383
|
-
process.env
|
|
68770
|
+
// Ensure execOptions.env contains the temporary config path so child process will see it
|
|
68771
|
+
execOptions.env = { ...(process.env || {}), EMAIL_CONFIG_PATH: tempEnvFile };
|
|
68384
68772
|
}
|
|
68385
68773
|
// Create temporary files for HTML content if provided
|
|
68386
|
-
let tempHtmlFile = '';
|
|
68387
68774
|
let command = '';
|
|
68388
|
-
let options = {
|
|
68389
|
-
stdio: 'pipe',
|
|
68390
|
-
timeout: 45000,
|
|
68391
|
-
encoding: 'utf8'
|
|
68392
|
-
};
|
|
68393
68775
|
if (htmlBody) {
|
|
68394
|
-
// Try HTML email with ehtml command (if supported) or fall back to esend
|
|
68776
|
+
// Try HTML email with ehtml command (if supported) or fall back to eattach/esend
|
|
68395
68777
|
const tempDir = external_os_.tmpdir();
|
|
68396
68778
|
tempHtmlFile = external_path_.join(tempDir, `email-${Date.now()}.html`);
|
|
68397
68779
|
try {
|
|
68398
|
-
await fs_extra_lib.writeFile(tempHtmlFile, htmlBody);
|
|
68780
|
+
await fs_extra_lib.writeFile(tempHtmlFile, htmlBody, 'utf8');
|
|
68399
68781
|
// Try HTML command first
|
|
68400
68782
|
const htmlArgs = [to, subject, tempHtmlFile];
|
|
68401
68783
|
const escapedHtmlArgs = htmlArgs.map(arg => `"${arg.replace(/"/g, '\\"')}"`).join(' ');
|
|
@@ -68408,27 +68790,48 @@ EMAIL_TLS=true
|
|
|
68408
68790
|
break;
|
|
68409
68791
|
case 'local':
|
|
68410
68792
|
command = `node "${mcpInfo.path}" ehtml ${escapedHtmlArgs}`;
|
|
68411
|
-
|
|
68793
|
+
execOptions.cwd = external_path_.dirname(mcpInfo.path);
|
|
68412
68794
|
break;
|
|
68413
68795
|
}
|
|
68414
68796
|
try {
|
|
68415
|
-
const output = (0,external_child_process_.execSync)(command,
|
|
68797
|
+
const output = (0,external_child_process_.execSync)(command, execOptions);
|
|
68416
68798
|
return true;
|
|
68417
68799
|
}
|
|
68418
68800
|
catch (htmlError) {
|
|
68419
|
-
// If
|
|
68420
|
-
|
|
68801
|
+
// If ehtml isn't available or fails, try sending as attachment (eattach)
|
|
68802
|
+
try {
|
|
68803
|
+
console.log(source/* default */.Ay.yellow('ℹ️ ehtml failed, attempting to send HTML as attachment (eattach)'));
|
|
68804
|
+
const attachArgs = [to, subject, 'Please see attached HTML message', tempHtmlFile];
|
|
68805
|
+
const escapedAttachArgs = attachArgs.map(arg => `"${arg.replace(/"/g, '\"')}"`).join(' ');
|
|
68806
|
+
switch (mcpInfo.installationType) {
|
|
68807
|
+
case 'npx':
|
|
68808
|
+
command = `npx @0xshariq/email-mcp-server eattach ${escapedAttachArgs}`;
|
|
68809
|
+
break;
|
|
68810
|
+
case 'global':
|
|
68811
|
+
command = `email-cli eattach ${escapedAttachArgs}`;
|
|
68812
|
+
break;
|
|
68813
|
+
case 'local':
|
|
68814
|
+
command = `node "${mcpInfo.path}" eattach ${escapedAttachArgs}`;
|
|
68815
|
+
execOptions.cwd = external_path_.dirname(mcpInfo.path);
|
|
68816
|
+
break;
|
|
68817
|
+
}
|
|
68818
|
+
const out = (0,external_child_process_.execSync)(command, execOptions);
|
|
68819
|
+
return true;
|
|
68820
|
+
}
|
|
68821
|
+
catch (attachError) {
|
|
68822
|
+
// If forceHtml is requested, fail immediately instead of falling back
|
|
68823
|
+
if (forceHtml) {
|
|
68824
|
+
console.log(source/* default */.Ay.red('❌ HTML delivery failed and --force-html was specified. Not falling back to plain text.'));
|
|
68825
|
+
return false;
|
|
68826
|
+
}
|
|
68827
|
+
console.log(source/* default */.Ay.yellow('ℹ️ eattach also failed, will fall back to plain text send with HTML stripped'));
|
|
68828
|
+
}
|
|
68421
68829
|
}
|
|
68422
68830
|
}
|
|
68423
68831
|
catch (fileError) {
|
|
68424
68832
|
console.log(source/* default */.Ay.yellow('ℹ️ Could not create HTML file, sending as plain text...'));
|
|
68425
68833
|
}
|
|
68426
|
-
finally
|
|
68427
|
-
// Clean up temp file
|
|
68428
|
-
if (tempHtmlFile && await fs_extra_lib.pathExists(tempHtmlFile)) {
|
|
68429
|
-
await fs_extra_lib.remove(tempHtmlFile);
|
|
68430
|
-
}
|
|
68431
|
-
}
|
|
68834
|
+
// Do not remove tempHtmlFile here yet; cleanup in finally block below
|
|
68432
68835
|
}
|
|
68433
68836
|
// Fall back to regular text email
|
|
68434
68837
|
const args = [to, subject, body];
|
|
@@ -68443,12 +68846,12 @@ EMAIL_TLS=true
|
|
|
68443
68846
|
break;
|
|
68444
68847
|
case 'local':
|
|
68445
68848
|
command = `node "${mcpInfo.path}" esend ${escapedArgs}`;
|
|
68446
|
-
|
|
68849
|
+
execOptions.cwd = external_path_.dirname(mcpInfo.path);
|
|
68447
68850
|
break;
|
|
68448
68851
|
default:
|
|
68449
68852
|
throw new Error('Unknown installation type');
|
|
68450
68853
|
}
|
|
68451
|
-
const output = (0,external_child_process_.execSync)(command,
|
|
68854
|
+
const output = (0,external_child_process_.execSync)(command, execOptions);
|
|
68452
68855
|
return true;
|
|
68453
68856
|
}
|
|
68454
68857
|
catch (error) {
|
|
@@ -68483,6 +68886,9 @@ EMAIL_TLS=true
|
|
|
68483
68886
|
if (tempEnvFile && await fs_extra_lib.pathExists(tempEnvFile)) {
|
|
68484
68887
|
await fs_extra_lib.remove(tempEnvFile);
|
|
68485
68888
|
}
|
|
68889
|
+
if (tempHtmlFile && await fs_extra_lib.pathExists(tempHtmlFile)) {
|
|
68890
|
+
await fs_extra_lib.remove(tempHtmlFile);
|
|
68891
|
+
}
|
|
68486
68892
|
if (process.env.EMAIL_CONFIG_PATH) {
|
|
68487
68893
|
delete process.env.EMAIL_CONFIG_PATH;
|
|
68488
68894
|
}
|
|
@@ -68745,6 +69151,7 @@ async function showEmailHelp() {
|
|
|
68745
69151
|
options: [
|
|
68746
69152
|
{ flag: '-h, --help', description: 'Show this help message' },
|
|
68747
69153
|
{ flag: '-l, --list', description: 'List all available email categories' },
|
|
69154
|
+
{ flag: '--force-html', description: 'Require HTML and fail if HTML cannot be sent (no fallback to plain text)' },
|
|
68748
69155
|
{ flag: '--install', description: 'Show Email MCP Server installation instructions' },
|
|
68749
69156
|
{ flag: '--setup', description: 'Configure your email credentials for sending feedback' },
|
|
68750
69157
|
{ flag: '--status', description: 'Check email system status and availability' },
|
|
@@ -68799,7 +69206,7 @@ async function showEmailHelp() {
|
|
|
68799
69206
|
'Your contact info is optional but helpful for follow-up'
|
|
68800
69207
|
]
|
|
68801
69208
|
};
|
|
68802
|
-
(0,helpFormatter
|
|
69209
|
+
(0,helpFormatter.createStandardHelp)(helpConfig);
|
|
68803
69210
|
}
|
|
68804
69211
|
/**
|
|
68805
69212
|
* Main email command handler
|
|
@@ -68823,7 +69230,36 @@ async function emailCommand(category, options = {}) {
|
|
|
68823
69230
|
}
|
|
68824
69231
|
// Handle setup flag
|
|
68825
69232
|
if (options.setup) {
|
|
68826
|
-
|
|
69233
|
+
// Delegate permanent setup to the Email MCP Server installer (npx/global/local)
|
|
69234
|
+
const mcpInfo = await checkEmailMcpAvailability();
|
|
69235
|
+
if (!mcpInfo.available) {
|
|
69236
|
+
console.log(source/* default */.Ay.yellow('⚠️ Email MCP Server not installed. Please install it first:'));
|
|
69237
|
+
console.log(source/* default */.Ay.cyan('npm install -g @0xshariq/email-mcp-server'));
|
|
69238
|
+
return;
|
|
69239
|
+
}
|
|
69240
|
+
try {
|
|
69241
|
+
let setupCmd = '';
|
|
69242
|
+
const execOptions = { stdio: 'inherit', encoding: 'utf8' };
|
|
69243
|
+
switch (mcpInfo.installationType) {
|
|
69244
|
+
case 'npx':
|
|
69245
|
+
setupCmd = 'npx @0xshariq/email-mcp-server setup';
|
|
69246
|
+
break;
|
|
69247
|
+
case 'global':
|
|
69248
|
+
setupCmd = 'email-cli setup';
|
|
69249
|
+
break;
|
|
69250
|
+
case 'local':
|
|
69251
|
+
setupCmd = `node "${mcpInfo.path}" setup`;
|
|
69252
|
+
execOptions.cwd = external_path_.dirname(mcpInfo.path);
|
|
69253
|
+
break;
|
|
69254
|
+
default:
|
|
69255
|
+
setupCmd = 'npx @0xshariq/email-mcp-server setup';
|
|
69256
|
+
}
|
|
69257
|
+
(0,external_child_process_.execSync)(setupCmd, execOptions);
|
|
69258
|
+
}
|
|
69259
|
+
catch (err) {
|
|
69260
|
+
console.log(source/* default */.Ay.red('❌ Failed to run external email setup command. Please run manually:'));
|
|
69261
|
+
console.log(source/* default */.Ay.cyan('npx @0xshariq/email-mcp-server setup'));
|
|
69262
|
+
}
|
|
68827
69263
|
return;
|
|
68828
69264
|
}
|
|
68829
69265
|
// Handle status flag
|
|
@@ -68991,7 +69427,7 @@ async function emailCommand(category, options = {}) {
|
|
|
68991
69427
|
provider: senderOption.customProvider || 'gmail'
|
|
68992
69428
|
};
|
|
68993
69429
|
}
|
|
68994
|
-
const success = await sendEmailViaMcp(subject, plainBody, htmlBody, customCredentials);
|
|
69430
|
+
const success = await sendEmailViaMcp(subject, plainBody, htmlBody, customCredentials, !!options.forceHtml);
|
|
68995
69431
|
if (success) {
|
|
68996
69432
|
console.log((0,node_modules_boxen/* default */.A)(source/* default */.Ay.green('✅ Email sent successfully!') + '\n\n' +
|
|
68997
69433
|
source/* default */.Ay.white('Thank you for your feedback!') + '\n' +
|
|
@@ -69586,7 +70022,37 @@ function showAuthHelp() {
|
|
|
69586
70022
|
'Use "pi auth verify" to enable 2FA and unlock all features.',
|
|
69587
70023
|
],
|
|
69588
70024
|
};
|
|
69589
|
-
(0,helpFormatter
|
|
70025
|
+
(0,helpFormatter.createStandardHelp)(cfg);
|
|
70026
|
+
}
|
|
70027
|
+
|
|
70028
|
+
;// ./dist/utils/timer.js
|
|
70029
|
+
const timers = {};
|
|
70030
|
+
function startTimer(key = 'default') {
|
|
70031
|
+
timers[key] = { start: Date.now() };
|
|
70032
|
+
}
|
|
70033
|
+
function stopTimer(key = 'default') {
|
|
70034
|
+
const rec = timers[key];
|
|
70035
|
+
if (!rec)
|
|
70036
|
+
return undefined;
|
|
70037
|
+
rec.end = Date.now();
|
|
70038
|
+
return rec.end - rec.start;
|
|
70039
|
+
}
|
|
70040
|
+
function getTimer(key = 'default') {
|
|
70041
|
+
return timers[key];
|
|
70042
|
+
}
|
|
70043
|
+
function formatDuration(ms) {
|
|
70044
|
+
if (ms === undefined)
|
|
70045
|
+
return 'N/A';
|
|
70046
|
+
if (ms < 1000)
|
|
70047
|
+
return `${ms}ms`;
|
|
70048
|
+
const s = Math.floor(ms / 1000);
|
|
70049
|
+
const m = Math.floor(s / 60);
|
|
70050
|
+
if (m > 0)
|
|
70051
|
+
return `${m}m ${s % 60}s`;
|
|
70052
|
+
return `${s}s`;
|
|
70053
|
+
}
|
|
70054
|
+
function nowIso() {
|
|
70055
|
+
return new Date().toISOString();
|
|
69590
70056
|
}
|
|
69591
70057
|
|
|
69592
70058
|
;// ./dist/index.js
|
|
@@ -69617,11 +70083,13 @@ globalThis.path = external_path_;
|
|
|
69617
70083
|
|
|
69618
70084
|
|
|
69619
70085
|
|
|
70086
|
+
|
|
69620
70087
|
// Import utilities
|
|
69621
70088
|
|
|
69622
70089
|
|
|
69623
70090
|
|
|
69624
70091
|
|
|
70092
|
+
|
|
69625
70093
|
// Get current file directory for ESM
|
|
69626
70094
|
const dist_filename = (0,external_url_.fileURLToPath)("file:///home/sharique/desktop/shariq-projects/package-installer-cli/dist/index.js");
|
|
69627
70095
|
const dist_dirname = (0,external_path_.dirname)(dist_filename);
|
|
@@ -69666,6 +70134,10 @@ dist_program
|
|
|
69666
70134
|
// Global preAction: enforce login for most commands, whitelist a few
|
|
69667
70135
|
dist_program.hook('preAction', async (thisCommand, actionCommand) => {
|
|
69668
70136
|
const name = actionCommand.name();
|
|
70137
|
+
// start a timer for this command
|
|
70138
|
+
startTimer(name);
|
|
70139
|
+
// record user input time
|
|
70140
|
+
actionCommand.__userInputTime = nowIso();
|
|
69669
70141
|
// Commands allowed without login (help, version, auth, cache --help etc.)
|
|
69670
70142
|
const allowed = ['auth', 'help', 'version', 'cache'];
|
|
69671
70143
|
if (allowed.includes(name))
|
|
@@ -69701,6 +70173,20 @@ dist_program.hook('preAction', async (thisCommand, actionCommand) => {
|
|
|
69701
70173
|
}
|
|
69702
70174
|
}
|
|
69703
70175
|
});
|
|
70176
|
+
// postAction: stop timers and print execution times
|
|
70177
|
+
dist_program.hook('postAction', async (thisCommand, actionCommand) => {
|
|
70178
|
+
const name = actionCommand.name();
|
|
70179
|
+
try {
|
|
70180
|
+
const durationMs = stopTimer(name);
|
|
70181
|
+
const userInputTime = actionCommand.__userInputTime || 'N/A';
|
|
70182
|
+
console.log('\n' + source/* default */.Ay.hex('#00d2d3')('⏱️ Command timing'));
|
|
70183
|
+
console.log(` ${source/* default */.Ay.gray('User input time:')} ${source/* default */.Ay.cyan(userInputTime)}`);
|
|
70184
|
+
console.log(` ${source/* default */.Ay.gray('Execution time:')} ${source/* default */.Ay.green(formatDuration(durationMs))}`);
|
|
70185
|
+
}
|
|
70186
|
+
catch (err) {
|
|
70187
|
+
// ignore timing errors
|
|
70188
|
+
}
|
|
70189
|
+
});
|
|
69704
70190
|
/**
|
|
69705
70191
|
* Enhanced error handler with better formatting
|
|
69706
70192
|
*/
|
|
@@ -69758,6 +70244,28 @@ dist_program
|
|
|
69758
70244
|
handleCommandError('check packages', error);
|
|
69759
70245
|
}
|
|
69760
70246
|
});
|
|
70247
|
+
// SIZE COMMAND - Show file/folder sizes
|
|
70248
|
+
dist_program
|
|
70249
|
+
.command('size')
|
|
70250
|
+
.description(source/* default */.Ay.hex('#95afc0')('📏 Show size of files or directories'))
|
|
70251
|
+
.argument('[paths...]', source/* default */.Ay.hex('#95afc0')('One or more paths to files or directories (defaults to cwd)'))
|
|
70252
|
+
.option('-a, --all', 'Show all files and folders with their sizes')
|
|
70253
|
+
.option('--json', 'Output machine-readable JSON')
|
|
70254
|
+
.option('--top <n>', 'Show top N largest files', '10')
|
|
70255
|
+
.option('-h, --help', 'Display help for this command')
|
|
70256
|
+
.on('--help', () => { showSizeHelp(); })
|
|
70257
|
+
.action(async (paths, options) => {
|
|
70258
|
+
try {
|
|
70259
|
+
if (options.help) {
|
|
70260
|
+
showSizeHelp();
|
|
70261
|
+
return;
|
|
70262
|
+
}
|
|
70263
|
+
await sizeCommand(paths, options);
|
|
70264
|
+
}
|
|
70265
|
+
catch (error) {
|
|
70266
|
+
handleCommandError('size', error);
|
|
70267
|
+
}
|
|
70268
|
+
});
|
|
69761
70269
|
// CLONE COMMAND - GitHub repository cloning
|
|
69762
70270
|
dist_program
|
|
69763
70271
|
.command('clone')
|
|
@@ -70002,6 +70510,7 @@ dist_program
|
|
|
70002
70510
|
.option('--setup', source/* default */.Ay.hex('#95afc0')('Show email configuration setup guide'))
|
|
70003
70511
|
.option('--status', source/* default */.Ay.hex('#95afc0')('Check email system status and availability'))
|
|
70004
70512
|
.option('--test', source/* default */.Ay.hex('#95afc0')('Send a test email to verify functionality'))
|
|
70513
|
+
.option('--force-html', source/* default */.Ay.hex('#95afc0')('Require HTML and fail if HTML cannot be sent (no fallback)'))
|
|
70005
70514
|
.option('--commands', source/* default */.Ay.hex('#95afc0')('Show all available Email MCP Server commands'))
|
|
70006
70515
|
.option('--dev', source/* default */.Ay.hex('#95afc0')('Show development setup information and troubleshooting'))
|
|
70007
70516
|
.option('--quick', source/* default */.Ay.hex('#95afc0')('Quick feedback mode with minimal prompts'))
|