package-installer-cli 2.2.0 → 2.3.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 +500 -190
- data/bundle-standalone/template.json +737 -108
- data/bundle-standalone/templates/template.json +813 -0
- metadata +1080 -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/apple-touch-icon-precomposed.png +0 -0
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/apple-touch-icon.png +0 -0
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/favicon.ico +0 -0
- 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/esbuild.js +0 -0
- 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/apple-touch-icon-precomposed.png +0 -0
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/public/apple-touch-icon.png +0 -0
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/public/favicon.ico +0 -0
- 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/{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/no-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/no-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/no-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/no-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/no-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/{nextjs/typescript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-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-basic-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-basic-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-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/{nextjs/typescript/src-shadcn-tailwind-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-advance-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-advance-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-advance-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-advance-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-advance-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-expressjs-shadcn/typescript/react-basic-express-shadcn-template → desktop/tauri/typescript/react-fronend}/src/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template → desktop/tauri/typescript/react-fronend}/src/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template → desktop/tauri/typescript/react-fronend}/src/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template → desktop/tauri/typescript/react-fronend}/src/components/ui/textarea.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-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/{angularjs → 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/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/nextjs}/javascript/no-src-no-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → 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/nextjs}/javascript/no-src-shadcn-tailwind-template/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → 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/nextjs}/javascript/no-src-shadcn-tailwind-template/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → 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/nextjs}/javascript/no-src-tailwind-template/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → 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 → javascript/nextjs}/javascript/no-src-tailwind-template/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → 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 → javascript/nextjs}/javascript/src-no-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → 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 → javascript/nextjs}/javascript/src-shadcn-tailwind-template/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/src/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → 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 → javascript/nextjs}/javascript/src-tailwind-template/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/src/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → 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 → javascript/nextjs}/typescript/no-src-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → 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 → javascript/nextjs}/typescript/no-src-no-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → 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 → javascript/nextjs}/typescript/no-src-no-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → 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 → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → 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-nestjs-shadcn/typescript/react-nest-shadcn-template/src → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/src → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/src → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-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 → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/src → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/lib/utils.ts +0 -0
- /data/bundle-standalone/templates/{nextjs → 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 → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → 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 → javascript/nextjs}/typescript/no-src-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → 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/globals.css +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 → javascript/nextjs}/typescript/no-src-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → 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 → javascript/nextjs}/typescript/no-src-tailwind-template/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → 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/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/next.config.ts +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/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/src/app/favicon.ico +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-no-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/components.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/next.config.ts +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/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/src/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/src/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/src/app/layout.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/src/app/page.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → javascript/nextjs/typescript/src-shadcn-tailwind-template}/src/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → javascript/nextjs/typescript/src-shadcn-tailwind-template}/src/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → javascript/nextjs/typescript/src-shadcn-tailwind-template}/src/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → javascript/nextjs/typescript/src-shadcn-tailwind-template}/src/components/ui/textarea.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → javascript/nextjs/typescript/src-shadcn-tailwind-template}/src/lib/utils.ts +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/next.config.ts +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/src/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/src/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/src/app/layout.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/src/app/page.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/tsconfig.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 → 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/javascript/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 → 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/no-shadcn-no-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/{reactjs/vite/typescript/no-shadcn-tailwind-template → 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/{reactjs/vite/typescript/shadcn-tailwind-template → 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/index.css +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 → 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/{tauri/javascript/react-frontend → javascript/reactjs/vite/typescript/no-shadcn-tailwind-template}/public/vite.svg +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/index.css +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.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/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/shadcn-tailwind-template}/public/vite.svg +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/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/shadcn-tailwind-template}/src/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/shadcn-tailwind-template}/src/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/shadcn-tailwind-template}/src/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/shadcn-tailwind-template}/src/components/ui/textarea.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{remixjs/typescript/shadcn-tailwind-template/app → 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/{tauri/typescript/react-fronend/src → javascript/remixjs/typescript/shadcn-tailwind-template/app}/lib/utils.ts +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 → mobile/react-native}/javascript/template/App.jsx +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/Gemfile +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/README.md +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/__tests__/App.test.tsx +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/build.gradle +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/debug.keystore +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/proguard-rules.pro +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/AndroidManifest.xml +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/java/com/template/MainActivity.kt +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/java/com/template/MainApplication.kt +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/drawable/rn_edit_text_material.xml +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/values/strings.xml +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/values/styles.xml +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/build.gradle +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/gradle/wrapper/gradle-wrapper.properties +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/gradle.properties +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/gradlew +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/gradlew.bat +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/settings.gradle +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/app.json +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/babel.config.js +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/index.js +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/ios/Podfile +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/ios/template/AppDelegate.swift +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/ios/template/Images.xcassets/AppIcon.appiconset/Contents.json +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/ios/template/Images.xcassets/Contents.json +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/ios/template/Info.plist +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/ios/template/LaunchScreen.storyboard +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/ios/template/PrivacyInfo.xcprivacy +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/ios/template.xcodeproj/project.pbxproj +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/ios/template.xcodeproj/xcshareddata/xcschemes/template.xcscheme +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/jest.config.js +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/metro.config.js +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/package.json +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/App.tsx +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/Gemfile +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/README.md +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/__tests__/App.test.tsx +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/build.gradle +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/debug.keystore +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/proguard-rules.pro +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/AndroidManifest.xml +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/java/com/template/MainActivity.kt +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/java/com/template/MainApplication.kt +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/drawable/rn_edit_text_material.xml +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/values/strings.xml +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/values/styles.xml +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/build.gradle +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/gradle/wrapper/gradle-wrapper.properties +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/gradle.properties +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/gradlew +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/gradlew.bat +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/settings.gradle +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/app.json +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/babel.config.js +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/index.js +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/ios/Podfile +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/ios/template/AppDelegate.swift +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/ios/template/Images.xcassets/AppIcon.appiconset/Contents.json +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/ios/template/Images.xcassets/Contents.json +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/ios/template/Info.plist +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/ios/template/LaunchScreen.storyboard +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/ios/template/PrivacyInfo.xcprivacy +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/ios/template.xcodeproj/project.pbxproj +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/ios/template.xcodeproj/xcshareddata/xcschemes/template.xcscheme +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/jest.config.js +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/metro.config.js +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/package.json +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{django → 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/{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/{flask → 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/{flask → 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/{flask → 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
|
@@ -667,7 +667,7 @@ 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
672
|
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
673
|
padding: { top: 0, bottom: 0, left: 2, right: 2 },
|
|
@@ -51392,40 +51392,376 @@ var lib = __webpack_require__(6824);
|
|
|
51392
51392
|
var fs_extra_lib = __webpack_require__(7187);
|
|
51393
51393
|
// EXTERNAL MODULE: ./dist/utils/pathResolver.js
|
|
51394
51394
|
var pathResolver = __webpack_require__(3294);
|
|
51395
|
-
;// ./dist/utils/
|
|
51395
|
+
;// ./dist/utils/templateResolver.js
|
|
51396
51396
|
/**
|
|
51397
|
-
*
|
|
51398
|
-
* Handles
|
|
51397
|
+
* Template path resolution utilities for Package Installer CLI v3.2.0
|
|
51398
|
+
* Handles template name generation and path resolution based on template.json
|
|
51399
51399
|
*/
|
|
51400
51400
|
|
|
51401
51401
|
|
|
51402
51402
|
|
|
51403
|
-
|
|
51404
|
-
|
|
51405
51403
|
// Helper functions to read template.json
|
|
51406
|
-
function
|
|
51404
|
+
function templateResolver_getTemplateConfig() {
|
|
51407
51405
|
const cliDir = (0,pathResolver/* getCliRootPath */.mw)();
|
|
51408
|
-
const templatePath = external_path_.join(cliDir, 'template.json');
|
|
51406
|
+
const templatePath = external_path_.join(cliDir, '/templates/template.json');
|
|
51409
51407
|
if (!fs_extra_lib.existsSync(templatePath)) {
|
|
51410
51408
|
throw new Error(`template.json not found at: ${templatePath}`);
|
|
51411
51409
|
}
|
|
51412
51410
|
return JSON.parse(fs_extra_lib.readFileSync(templatePath, 'utf-8'));
|
|
51413
51411
|
}
|
|
51414
|
-
|
|
51412
|
+
// Export getTemplateConfig for other modules to reuse
|
|
51413
|
+
|
|
51414
|
+
function templateResolver_getFrameworkConfig(framework) {
|
|
51415
|
+
const config = templateResolver_getTemplateConfig();
|
|
51416
|
+
// New template.json structure groups frameworks under top-level categories
|
|
51417
|
+
for (const categoryKey of Object.keys(config)) {
|
|
51418
|
+
const cat = config[categoryKey];
|
|
51419
|
+
if (cat && typeof cat === 'object' && Object.prototype.hasOwnProperty.call(cat, framework)) {
|
|
51420
|
+
return cat[framework];
|
|
51421
|
+
}
|
|
51422
|
+
}
|
|
51423
|
+
return undefined;
|
|
51424
|
+
}
|
|
51425
|
+
// Export for use in other modules
|
|
51426
|
+
|
|
51427
|
+
/**
|
|
51428
|
+
* Generate template name based on framework options - use exact template names from template.json
|
|
51429
|
+
* Only generates for frameworks that HAVE options
|
|
51430
|
+
*/
|
|
51431
|
+
function generateTemplateName(framework, options) {
|
|
51432
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51433
|
+
// Only generate template names for frameworks that have options
|
|
51434
|
+
if (!config?.options && !config?.ui && !config?.bundlers) {
|
|
51435
|
+
return '';
|
|
51436
|
+
}
|
|
51437
|
+
// If framework has predefined templates, select the matching one based on options
|
|
51438
|
+
if (config.templates && config.templates.length > 0) {
|
|
51439
|
+
// Build template name based on selected options
|
|
51440
|
+
const parts = [];
|
|
51441
|
+
// Handle src option (only for nextjs and reactjs)
|
|
51442
|
+
if ((framework === 'nextjs' || framework === 'reactjs') && config.options?.includes('src')) {
|
|
51443
|
+
if (options.src) {
|
|
51444
|
+
parts.push('src');
|
|
51445
|
+
}
|
|
51446
|
+
else {
|
|
51447
|
+
parts.push('no-src');
|
|
51448
|
+
}
|
|
51449
|
+
}
|
|
51450
|
+
// Handle UI library - only add if actually selected (not "none")
|
|
51451
|
+
// When UI is "none", templates simply omit the UI part from their names
|
|
51452
|
+
if (config.ui && config.ui.length > 0) {
|
|
51453
|
+
if (options.ui && options.ui !== 'none') {
|
|
51454
|
+
parts.push(options.ui);
|
|
51455
|
+
}
|
|
51456
|
+
// For "none" selection, don't add any UI part to the template name
|
|
51457
|
+
}
|
|
51458
|
+
// Handle tailwind option
|
|
51459
|
+
if (config.options?.includes('tailwind')) {
|
|
51460
|
+
if (options.tailwind) {
|
|
51461
|
+
parts.push('tailwind');
|
|
51462
|
+
}
|
|
51463
|
+
else {
|
|
51464
|
+
parts.push('no-tailwind');
|
|
51465
|
+
}
|
|
51466
|
+
}
|
|
51467
|
+
const generatedName = parts.join('-') + '-template';
|
|
51468
|
+
// Find exact match in templates array
|
|
51469
|
+
const exactMatch = config.templates.find((template) => template === generatedName);
|
|
51470
|
+
if (exactMatch) {
|
|
51471
|
+
return exactMatch;
|
|
51472
|
+
}
|
|
51473
|
+
// If no exact match, return the first template as fallback
|
|
51474
|
+
return config.templates[0];
|
|
51475
|
+
}
|
|
51476
|
+
return '';
|
|
51477
|
+
}
|
|
51478
|
+
/**
|
|
51479
|
+
* Resolve template directory path based on framework and template name
|
|
51480
|
+
*/
|
|
51481
|
+
function resolveTemplatePath(projectInfo) {
|
|
51482
|
+
const { framework, language, templateName } = projectInfo;
|
|
51483
|
+
const templatesRoot = (0,pathResolver/* getTemplatesPath */.vD)();
|
|
51484
|
+
// Helper: find category that contains the framework
|
|
51485
|
+
function findCategoryForFramework(frameworkName) {
|
|
51486
|
+
const config = templateResolver_getTemplateConfig();
|
|
51487
|
+
for (const categoryKey of Object.keys(config)) {
|
|
51488
|
+
const cat = config[categoryKey];
|
|
51489
|
+
if (cat && typeof cat === 'object' && Object.prototype.hasOwnProperty.call(cat, frameworkName)) {
|
|
51490
|
+
return categoryKey;
|
|
51491
|
+
}
|
|
51492
|
+
}
|
|
51493
|
+
return null;
|
|
51494
|
+
}
|
|
51495
|
+
// Combination templates are stored under a special category (e.g., combination-templates)
|
|
51496
|
+
if (framework.includes('+')) {
|
|
51497
|
+
const frameworkDir = framework.replace(/\+/g, '-');
|
|
51498
|
+
const combCategory = 'combination-templates';
|
|
51499
|
+
const combinationPath = external_path_.join(templatesRoot, combCategory, frameworkDir);
|
|
51500
|
+
if (fs_extra_lib.existsSync(combinationPath)) {
|
|
51501
|
+
if (language) {
|
|
51502
|
+
const langPath = external_path_.join(combinationPath, language);
|
|
51503
|
+
if (fs_extra_lib.existsSync(langPath)) {
|
|
51504
|
+
if (templateName) {
|
|
51505
|
+
const templatePath = external_path_.join(langPath, templateName);
|
|
51506
|
+
if (fs_extra_lib.existsSync(templatePath))
|
|
51507
|
+
return templatePath;
|
|
51508
|
+
}
|
|
51509
|
+
return langPath;
|
|
51510
|
+
}
|
|
51511
|
+
}
|
|
51512
|
+
if (templateName) {
|
|
51513
|
+
const templatePath = external_path_.join(combinationPath, templateName);
|
|
51514
|
+
if (fs_extra_lib.existsSync(templatePath))
|
|
51515
|
+
return templatePath;
|
|
51516
|
+
}
|
|
51517
|
+
return combinationPath;
|
|
51518
|
+
}
|
|
51519
|
+
}
|
|
51520
|
+
// Regular frameworks
|
|
51521
|
+
const category = findCategoryForFramework(framework);
|
|
51522
|
+
let baseFrameworkPath = external_path_.join(templatesRoot, framework); // default fallback
|
|
51523
|
+
if (category) {
|
|
51524
|
+
baseFrameworkPath = external_path_.join(templatesRoot, category, framework);
|
|
51525
|
+
// If the expected folder doesn't exist on disk (config/fs mismatch), try scanning categories
|
|
51526
|
+
if (!fs_extra_lib.existsSync(baseFrameworkPath)) {
|
|
51527
|
+
const topLevelItems = fs_extra_lib.readdirSync(templatesRoot, { withFileTypes: true });
|
|
51528
|
+
for (const dirent of topLevelItems) {
|
|
51529
|
+
if (!dirent.isDirectory())
|
|
51530
|
+
continue;
|
|
51531
|
+
const candidate = external_path_.join(templatesRoot, dirent.name, framework);
|
|
51532
|
+
if (fs_extra_lib.existsSync(candidate)) {
|
|
51533
|
+
baseFrameworkPath = candidate;
|
|
51534
|
+
break;
|
|
51535
|
+
}
|
|
51536
|
+
}
|
|
51537
|
+
}
|
|
51538
|
+
}
|
|
51539
|
+
else {
|
|
51540
|
+
// Fallback 1: try to find the framework directory under any category on disk
|
|
51541
|
+
let found = false;
|
|
51542
|
+
const topLevelItems = fs_extra_lib.readdirSync(templatesRoot, { withFileTypes: true });
|
|
51543
|
+
for (const dirent of topLevelItems) {
|
|
51544
|
+
if (!dirent.isDirectory())
|
|
51545
|
+
continue;
|
|
51546
|
+
const candidate = external_path_.join(templatesRoot, dirent.name, framework);
|
|
51547
|
+
if (fs_extra_lib.existsSync(candidate)) {
|
|
51548
|
+
baseFrameworkPath = candidate;
|
|
51549
|
+
found = true;
|
|
51550
|
+
break;
|
|
51551
|
+
}
|
|
51552
|
+
}
|
|
51553
|
+
if (!found) {
|
|
51554
|
+
// keep default baseFrameworkPath (top-level legacy location)
|
|
51555
|
+
}
|
|
51556
|
+
}
|
|
51557
|
+
// If a language-specific folder exists, prefer it
|
|
51558
|
+
// Use template.json config to resolve paths when available
|
|
51559
|
+
const fwConfig = templateResolver_getFrameworkConfig(framework);
|
|
51560
|
+
if (fwConfig) {
|
|
51561
|
+
const templatesEntry = fwConfig.templates;
|
|
51562
|
+
// Helper to test candidate paths
|
|
51563
|
+
const testCandidates = (candidates) => {
|
|
51564
|
+
for (const c of candidates) {
|
|
51565
|
+
if (fs_extra_lib.existsSync(c))
|
|
51566
|
+
return c;
|
|
51567
|
+
}
|
|
51568
|
+
return null;
|
|
51569
|
+
};
|
|
51570
|
+
// If templates is an object keyed by language
|
|
51571
|
+
if (templatesEntry && typeof templatesEntry === 'object' && !Array.isArray(templatesEntry)) {
|
|
51572
|
+
// templatesEntry is like { "typescript": ["a","b"], "javascript": [...] }
|
|
51573
|
+
const langKey = language || Object.keys(templatesEntry)[0];
|
|
51574
|
+
const list = templatesEntry[langKey] || templatesEntry[Object.keys(templatesEntry)[0]] || [];
|
|
51575
|
+
if (templateName && list.includes(templateName)) {
|
|
51576
|
+
// Prefer language folder then direct
|
|
51577
|
+
const candidates = [
|
|
51578
|
+
external_path_.join(baseFrameworkPath, langKey, templateName),
|
|
51579
|
+
external_path_.join(baseFrameworkPath, templateName)
|
|
51580
|
+
];
|
|
51581
|
+
const found = testCandidates(candidates);
|
|
51582
|
+
if (found)
|
|
51583
|
+
return found;
|
|
51584
|
+
}
|
|
51585
|
+
// If no specific templateName, prefer language folder if exists
|
|
51586
|
+
const langDir = external_path_.join(baseFrameworkPath, langKey);
|
|
51587
|
+
if (fs_extra_lib.existsSync(langDir))
|
|
51588
|
+
return langDir;
|
|
51589
|
+
// fallback to first template folder for any language
|
|
51590
|
+
const anyTemplate = list[0];
|
|
51591
|
+
if (anyTemplate) {
|
|
51592
|
+
const candidates = [
|
|
51593
|
+
external_path_.join(baseFrameworkPath, langKey, anyTemplate),
|
|
51594
|
+
external_path_.join(baseFrameworkPath, anyTemplate)
|
|
51595
|
+
];
|
|
51596
|
+
const found = testCandidates(candidates);
|
|
51597
|
+
if (found)
|
|
51598
|
+
return found;
|
|
51599
|
+
}
|
|
51600
|
+
}
|
|
51601
|
+
// If templates is an array
|
|
51602
|
+
if (Array.isArray(templatesEntry)) {
|
|
51603
|
+
if (templateName && templatesEntry.includes(templateName)) {
|
|
51604
|
+
const candidates = [
|
|
51605
|
+
external_path_.join(baseFrameworkPath, language || '', templateName),
|
|
51606
|
+
external_path_.join(baseFrameworkPath, templateName)
|
|
51607
|
+
];
|
|
51608
|
+
const found = testCandidates(candidates);
|
|
51609
|
+
if (found)
|
|
51610
|
+
return found;
|
|
51611
|
+
}
|
|
51612
|
+
// if no templateName, prefer language subdir if it exists
|
|
51613
|
+
if (language) {
|
|
51614
|
+
const langDir = external_path_.join(baseFrameworkPath, language);
|
|
51615
|
+
if (fs_extra_lib.existsSync(langDir))
|
|
51616
|
+
return langDir;
|
|
51617
|
+
}
|
|
51618
|
+
// fallback to first template folder if it exists
|
|
51619
|
+
const first = templatesEntry[0];
|
|
51620
|
+
if (first) {
|
|
51621
|
+
const candidates = [
|
|
51622
|
+
external_path_.join(baseFrameworkPath, language || '', first),
|
|
51623
|
+
external_path_.join(baseFrameworkPath, first)
|
|
51624
|
+
];
|
|
51625
|
+
const found = testCandidates(candidates);
|
|
51626
|
+
if (found)
|
|
51627
|
+
return found;
|
|
51628
|
+
}
|
|
51629
|
+
}
|
|
51630
|
+
// If templates not declared or nothing matched, prefer language dir if exists
|
|
51631
|
+
if (language) {
|
|
51632
|
+
const langDir = external_path_.join(baseFrameworkPath, language);
|
|
51633
|
+
if (fs_extra_lib.existsSync(langDir))
|
|
51634
|
+
return langDir;
|
|
51635
|
+
}
|
|
51636
|
+
// Direct templateName fallback
|
|
51637
|
+
if (templateName) {
|
|
51638
|
+
const candidate = external_path_.join(baseFrameworkPath, templateName);
|
|
51639
|
+
if (fs_extra_lib.existsSync(candidate))
|
|
51640
|
+
return candidate;
|
|
51641
|
+
}
|
|
51642
|
+
// finally, return baseFrameworkPath (may or may not exist)
|
|
51643
|
+
return baseFrameworkPath;
|
|
51644
|
+
}
|
|
51645
|
+
// If no fwConfig available, fallback to previously implemented resolution (language dir, templateName, base)
|
|
51646
|
+
if (language) {
|
|
51647
|
+
const langDir = external_path_.join(baseFrameworkPath, language);
|
|
51648
|
+
if (fs_extra_lib.existsSync(langDir)) {
|
|
51649
|
+
if (templateName) {
|
|
51650
|
+
const candidate = external_path_.join(langDir, templateName);
|
|
51651
|
+
if (fs_extra_lib.existsSync(candidate))
|
|
51652
|
+
return candidate;
|
|
51653
|
+
}
|
|
51654
|
+
return langDir;
|
|
51655
|
+
}
|
|
51656
|
+
}
|
|
51657
|
+
if (templateName) {
|
|
51658
|
+
const candidate = external_path_.join(baseFrameworkPath, templateName);
|
|
51659
|
+
if (fs_extra_lib.existsSync(candidate))
|
|
51660
|
+
return candidate;
|
|
51661
|
+
}
|
|
51662
|
+
return baseFrameworkPath;
|
|
51663
|
+
}
|
|
51664
|
+
/**
|
|
51665
|
+
* Check if template directory exists
|
|
51666
|
+
*/
|
|
51667
|
+
function templateExists(templatePath) {
|
|
51668
|
+
return fs_extra_lib.existsSync(templatePath) && fs_extra_lib.statSync(templatePath).isDirectory();
|
|
51669
|
+
}
|
|
51670
|
+
|
|
51671
|
+
;// ./dist/utils/prompts.js
|
|
51672
|
+
/**
|
|
51673
|
+
* User interaction prompts for Package Installer CLI v3.2.0
|
|
51674
|
+
* Handles framework selection and template configuration based on template.json
|
|
51675
|
+
*/
|
|
51676
|
+
|
|
51677
|
+
|
|
51678
|
+
|
|
51679
|
+
|
|
51680
|
+
|
|
51681
|
+
// Reuse centralized getTemplateConfig from templateResolver
|
|
51682
|
+
function getAvailableFrameworks(typeFilter) {
|
|
51415
51683
|
const config = getTemplateConfig();
|
|
51416
|
-
|
|
51684
|
+
const frameworks = [];
|
|
51685
|
+
// template.json groups frameworks by top-level categories
|
|
51686
|
+
for (const categoryKey of Object.keys(config)) {
|
|
51687
|
+
const cat = config[categoryKey];
|
|
51688
|
+
if (cat && typeof cat === 'object') {
|
|
51689
|
+
for (const fw of Object.keys(cat)) {
|
|
51690
|
+
// If a typeFilter is provided, check the framework's declared 'type' or the category key
|
|
51691
|
+
if (typeFilter) {
|
|
51692
|
+
const fwConfig = cat[fw];
|
|
51693
|
+
const declaredType = (fwConfig && fwConfig.type) || categoryKey;
|
|
51694
|
+
if (declaredType === typeFilter) {
|
|
51695
|
+
frameworks.push(fw);
|
|
51696
|
+
}
|
|
51697
|
+
}
|
|
51698
|
+
else {
|
|
51699
|
+
frameworks.push(fw);
|
|
51700
|
+
}
|
|
51701
|
+
}
|
|
51702
|
+
}
|
|
51703
|
+
}
|
|
51704
|
+
return frameworks;
|
|
51417
51705
|
}
|
|
51418
|
-
|
|
51706
|
+
/**
|
|
51707
|
+
* Return a list of unique 'type' values available in template.json (e.g., 'mobile','desktop','frontend')
|
|
51708
|
+
*/
|
|
51709
|
+
function getAvailableTypes() {
|
|
51419
51710
|
const config = getTemplateConfig();
|
|
51420
|
-
|
|
51711
|
+
const types = new Set();
|
|
51712
|
+
for (const categoryKey of Object.keys(config)) {
|
|
51713
|
+
const cat = config[categoryKey];
|
|
51714
|
+
if (cat && typeof cat === 'object') {
|
|
51715
|
+
for (const fw of Object.keys(cat)) {
|
|
51716
|
+
const fwConfig = cat[fw];
|
|
51717
|
+
if (fwConfig && fwConfig.type) {
|
|
51718
|
+
types.add(fwConfig.type);
|
|
51719
|
+
}
|
|
51720
|
+
else {
|
|
51721
|
+
// fallback to top-level category as type
|
|
51722
|
+
types.add(categoryKey);
|
|
51723
|
+
}
|
|
51724
|
+
}
|
|
51725
|
+
}
|
|
51726
|
+
}
|
|
51727
|
+
// Filter out types that should not be shown to the user
|
|
51728
|
+
const blacklist = new Set(['api', 'frontend', 'backend', 'fullstack']);
|
|
51729
|
+
return Array.from(types).filter(t => !blacklist.has(String(t).toLowerCase())).sort();
|
|
51730
|
+
}
|
|
51731
|
+
// `getFrameworkConfig` is provided by `templateResolver.ts` and imported above.
|
|
51732
|
+
function getCategories() {
|
|
51733
|
+
const config = templateResolver_getTemplateConfig();
|
|
51734
|
+
return Object.keys(config);
|
|
51735
|
+
}
|
|
51736
|
+
function getFrameworksForCategory(category) {
|
|
51737
|
+
const config = templateResolver_getTemplateConfig();
|
|
51738
|
+
const cat = config[category];
|
|
51739
|
+
if (!cat || typeof cat !== 'object')
|
|
51740
|
+
return [];
|
|
51741
|
+
return Object.keys(cat);
|
|
51421
51742
|
}
|
|
51422
51743
|
function getFrameworkDescription(framework) {
|
|
51423
|
-
const config =
|
|
51744
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51424
51745
|
return config?.description || 'Modern framework';
|
|
51425
51746
|
}
|
|
51426
51747
|
function capitalize(str) {
|
|
51427
51748
|
return str.charAt(0).toUpperCase() + str.slice(1);
|
|
51428
51749
|
}
|
|
51750
|
+
// Human-friendly display names for types/categories
|
|
51751
|
+
const DISPLAY_NAME_MAP = {
|
|
51752
|
+
'c++_c': 'C++/C',
|
|
51753
|
+
'combination-templates': 'Combination Templates',
|
|
51754
|
+
'javascript': 'JavaScript',
|
|
51755
|
+
'go': 'Go',
|
|
51756
|
+
'mobile': 'Mobile',
|
|
51757
|
+
'desktop': 'Desktop',
|
|
51758
|
+
'rust': 'Rust',
|
|
51759
|
+
'python': 'Python',
|
|
51760
|
+
'ruby': 'Ruby'
|
|
51761
|
+
};
|
|
51762
|
+
function displayTypeName(key) {
|
|
51763
|
+
return DISPLAY_NAME_MAP[key] || capitalize(key.replace(/[-_]/g, ' '));
|
|
51764
|
+
}
|
|
51429
51765
|
/**
|
|
51430
51766
|
* Project name prompt with enhanced styling
|
|
51431
51767
|
*/
|
|
@@ -51461,7 +51797,28 @@ async function promptProjectName() {
|
|
|
51461
51797
|
* Framework selection prompt with enhanced styling
|
|
51462
51798
|
*/
|
|
51463
51799
|
async function promptFrameworkSelection() {
|
|
51464
|
-
|
|
51800
|
+
// First prompt: category selection (top-level keys from template.json)
|
|
51801
|
+
const categories = getCategories();
|
|
51802
|
+
console.log(source/* default */.Ay.hex('#00d2d3')('\n🚀 Choose a category\n'));
|
|
51803
|
+
const { category } = await lib["default"].prompt([
|
|
51804
|
+
{
|
|
51805
|
+
type: 'list',
|
|
51806
|
+
name: 'category',
|
|
51807
|
+
message: `${source/* default */.Ay.blue('❯')} Choose a category:`,
|
|
51808
|
+
choices: categories.map(cat => ({
|
|
51809
|
+
name: `${source/* default */.Ay.green('●')} ${source/* default */.Ay.bold(displayTypeName(cat))}`,
|
|
51810
|
+
value: cat,
|
|
51811
|
+
short: displayTypeName(cat)
|
|
51812
|
+
})),
|
|
51813
|
+
pageSize: 12
|
|
51814
|
+
}
|
|
51815
|
+
]);
|
|
51816
|
+
// Then prompt frameworks within the selected category
|
|
51817
|
+
const frameworks = getFrameworksForCategory(category);
|
|
51818
|
+
if (!frameworks || frameworks.length === 0) {
|
|
51819
|
+
console.log(source/* default */.Ay.yellow('⚠️ No frameworks found in selected category'));
|
|
51820
|
+
return '';
|
|
51821
|
+
}
|
|
51465
51822
|
console.log(source/* default */.Ay.hex('#00d2d3')('\n🚀 Framework Selection\n'));
|
|
51466
51823
|
const { framework } = await lib["default"].prompt([
|
|
51467
51824
|
{
|
|
@@ -51469,7 +51826,7 @@ async function promptFrameworkSelection() {
|
|
|
51469
51826
|
name: 'framework',
|
|
51470
51827
|
message: `${source/* default */.Ay.blue('❯')} Choose your framework:`,
|
|
51471
51828
|
choices: frameworks.map(fw => ({
|
|
51472
|
-
name: `${source/* default */.Ay.green('●')} ${source/* default */.Ay.bold(capitalize(fw))} ${source/* default */.Ay.gray('- ' + getFrameworkDescription(fw))}`,
|
|
51829
|
+
name: `${source/* default */.Ay.green('●')} ${source/* default */.Ay.bold(capitalize(fw))} ${source/* default */.Ay.gray('- ' + (getFrameworkDescription(fw) || ''))}`,
|
|
51473
51830
|
value: fw,
|
|
51474
51831
|
short: capitalize(fw)
|
|
51475
51832
|
})),
|
|
@@ -51482,7 +51839,7 @@ async function promptFrameworkSelection() {
|
|
|
51482
51839
|
* Language selection prompt - framework specific from template.json
|
|
51483
51840
|
*/
|
|
51484
51841
|
async function promptLanguageSelection(framework) {
|
|
51485
|
-
const config =
|
|
51842
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51486
51843
|
if (!config.languages || config.languages.length <= 1) {
|
|
51487
51844
|
const defaultLang = config.languages?.[0] || 'javascript';
|
|
51488
51845
|
console.log(source/* default */.Ay.cyan(`💻 Using ${source/* default */.Ay.bold(defaultLang)} as default language`));
|
|
@@ -51514,36 +51871,88 @@ async function promptLanguageSelection(framework) {
|
|
|
51514
51871
|
/**
|
|
51515
51872
|
* Template selection with enhanced styling
|
|
51516
51873
|
*/
|
|
51517
|
-
async function promptTemplateSelection(framework) {
|
|
51518
|
-
const config =
|
|
51874
|
+
async function promptTemplateSelection(framework, language) {
|
|
51875
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51519
51876
|
if (!config || !config.templates) {
|
|
51520
51877
|
return '';
|
|
51521
51878
|
}
|
|
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
|
|
51879
|
+
const templatesEntry = config.templates;
|
|
51880
|
+
// If templates is an array
|
|
51881
|
+
if (Array.isArray(templatesEntry)) {
|
|
51882
|
+
if (templatesEntry.length === 1) {
|
|
51883
|
+
console.log(source/* default */.Ay.cyan(`📋 Using ${source/* default */.Ay.bold(templatesEntry[0])} template`));
|
|
51884
|
+
return templatesEntry[0];
|
|
51538
51885
|
}
|
|
51539
|
-
|
|
51540
|
-
|
|
51886
|
+
console.log(source/* default */.Ay.hex('#00d2d3')('\n📋 Template Selection\n'));
|
|
51887
|
+
const { template } = await lib["default"].prompt([
|
|
51888
|
+
{
|
|
51889
|
+
type: 'list',
|
|
51890
|
+
name: 'template',
|
|
51891
|
+
message: `${source/* default */.Ay.blue('❯')} Choose a template for ${source/* default */.Ay.bold(framework)}:`,
|
|
51892
|
+
choices: templatesEntry.map((template) => ({
|
|
51893
|
+
name: `${source/* default */.Ay.green('▸')} ${template.replace(/-/g, ' ').replace(/\b\w/g, (l) => l.toUpperCase())}`,
|
|
51894
|
+
value: template,
|
|
51895
|
+
short: template
|
|
51896
|
+
})),
|
|
51897
|
+
pageSize: 8
|
|
51898
|
+
}
|
|
51899
|
+
]);
|
|
51900
|
+
return template;
|
|
51901
|
+
}
|
|
51902
|
+
// If templates is an object keyed by language
|
|
51903
|
+
if (typeof templatesEntry === 'object') {
|
|
51904
|
+
const langKey = language || Object.keys(templatesEntry)[0];
|
|
51905
|
+
const list = templatesEntry[langKey] || [];
|
|
51906
|
+
if (list.length === 0) {
|
|
51907
|
+
// Fallback: flatten all templates across languages
|
|
51908
|
+
const flattenedAny = Object.values(templatesEntry).flat();
|
|
51909
|
+
const flattened = flattenedAny.map(String);
|
|
51910
|
+
if (flattened.length === 0)
|
|
51911
|
+
return '';
|
|
51912
|
+
console.log(source/* default */.Ay.hex('#00d2d3')('\n📋 Template Selection\n'));
|
|
51913
|
+
const unique = Array.from(new Set(flattened));
|
|
51914
|
+
const { template } = await lib["default"].prompt([
|
|
51915
|
+
{
|
|
51916
|
+
type: 'list',
|
|
51917
|
+
name: 'template',
|
|
51918
|
+
message: `${source/* default */.Ay.blue('❯')} Choose a template for ${source/* default */.Ay.bold(framework)}:`,
|
|
51919
|
+
choices: unique.map((template) => ({
|
|
51920
|
+
name: `${source/* default */.Ay.green('▸')} ${template.replace(/-/g, ' ').replace(/\b\w/g, (l) => l.toUpperCase())}`,
|
|
51921
|
+
value: template,
|
|
51922
|
+
short: template
|
|
51923
|
+
})),
|
|
51924
|
+
pageSize: 8
|
|
51925
|
+
}
|
|
51926
|
+
]);
|
|
51927
|
+
return template;
|
|
51928
|
+
}
|
|
51929
|
+
if (list.length === 1) {
|
|
51930
|
+
console.log(source/* default */.Ay.cyan(`📋 Using ${source/* default */.Ay.bold(list[0])} template`));
|
|
51931
|
+
return list[0];
|
|
51932
|
+
}
|
|
51933
|
+
console.log(source/* default */.Ay.hex('#00d2d3')('\n📋 Template Selection\n'));
|
|
51934
|
+
const { template } = await lib["default"].prompt([
|
|
51935
|
+
{
|
|
51936
|
+
type: 'list',
|
|
51937
|
+
name: 'template',
|
|
51938
|
+
message: `${source/* default */.Ay.blue('❯')} Choose a template for ${source/* default */.Ay.bold(framework)} (${source/* default */.Ay.bold(langKey)}):`,
|
|
51939
|
+
choices: list.map((template) => ({
|
|
51940
|
+
name: `${source/* default */.Ay.green('▸')} ${template.replace(/-/g, ' ').replace(/\b\w/g, (l) => l.toUpperCase())}`,
|
|
51941
|
+
value: template,
|
|
51942
|
+
short: template
|
|
51943
|
+
})),
|
|
51944
|
+
pageSize: 8
|
|
51945
|
+
}
|
|
51946
|
+
]);
|
|
51947
|
+
return template;
|
|
51948
|
+
}
|
|
51949
|
+
return '';
|
|
51541
51950
|
}
|
|
51542
51951
|
/**
|
|
51543
51952
|
* Framework options prompt - handles UI, bundlers, and other options
|
|
51544
51953
|
*/
|
|
51545
51954
|
async function promptFrameworkOptions(framework) {
|
|
51546
|
-
const config =
|
|
51955
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51547
51956
|
if (!config || (!config.ui && !config.options && !config.bundlers)) {
|
|
51548
51957
|
return {};
|
|
51549
51958
|
}
|
|
@@ -51722,15 +52131,15 @@ async function promptFeatureProvider(category, framework) {
|
|
|
51722
52131
|
* Helper functions to check framework capabilities
|
|
51723
52132
|
*/
|
|
51724
52133
|
function hasFrameworkOptions(framework) {
|
|
51725
|
-
const config =
|
|
52134
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51726
52135
|
return !!(config?.options && config.options.length > 0);
|
|
51727
52136
|
}
|
|
51728
52137
|
function hasUIOptions(framework) {
|
|
51729
|
-
const config =
|
|
52138
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51730
52139
|
return !!(config?.ui && config.ui.length > 0);
|
|
51731
52140
|
}
|
|
51732
52141
|
function hasBundlerOptions(framework) {
|
|
51733
|
-
const config =
|
|
52142
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51734
52143
|
return !!(config?.bundlers && config.bundlers.length > 0);
|
|
51735
52144
|
}
|
|
51736
52145
|
function hasTemplateSelection(framework) {
|
|
@@ -51738,7 +52147,7 @@ function hasTemplateSelection(framework) {
|
|
|
51738
52147
|
return !!(config?.templates && config.templates.length > 0);
|
|
51739
52148
|
}
|
|
51740
52149
|
function shouldShowTemplates(framework) {
|
|
51741
|
-
const config =
|
|
52150
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51742
52151
|
// Show templates ONLY for frameworks that have templates but NO options/ui/bundlers
|
|
51743
52152
|
// Frameworks WITH options should generate template names based on user choices
|
|
51744
52153
|
const hasOptions = !!(config?.options || config?.ui || config?.bundlers);
|
|
@@ -51746,154 +52155,6 @@ function shouldShowTemplates(framework) {
|
|
|
51746
52155
|
return hasTemplates && !hasOptions;
|
|
51747
52156
|
}
|
|
51748
52157
|
|
|
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
52158
|
// EXTERNAL MODULE: external "child_process"
|
|
51898
52159
|
var external_child_process_ = __webpack_require__(5317);
|
|
51899
52160
|
// EXTERNAL MODULE: external "util"
|
|
@@ -52535,7 +52796,7 @@ async function createProject(providedName, options) {
|
|
|
52535
52796
|
let templateName = '';
|
|
52536
52797
|
if (shouldShowTemplates(selectedFramework)) {
|
|
52537
52798
|
// For frameworks WITHOUT options - show template selection list
|
|
52538
|
-
templateName = await promptTemplateSelection(selectedFramework);
|
|
52799
|
+
templateName = await promptTemplateSelection(selectedFramework, selectedLanguage);
|
|
52539
52800
|
}
|
|
52540
52801
|
else if (hasFrameworkOptions(selectedFramework) || hasUIOptions(selectedFramework) || hasBundlerOptions(selectedFramework)) {
|
|
52541
52802
|
// For frameworks WITH options - generate template name from user choices
|
|
@@ -69589,6 +69850,36 @@ function showAuthHelp() {
|
|
|
69589
69850
|
(0,helpFormatter/* createStandardHelp */.ht)(cfg);
|
|
69590
69851
|
}
|
|
69591
69852
|
|
|
69853
|
+
;// ./dist/utils/timer.js
|
|
69854
|
+
const timers = {};
|
|
69855
|
+
function startTimer(key = 'default') {
|
|
69856
|
+
timers[key] = { start: Date.now() };
|
|
69857
|
+
}
|
|
69858
|
+
function stopTimer(key = 'default') {
|
|
69859
|
+
const rec = timers[key];
|
|
69860
|
+
if (!rec)
|
|
69861
|
+
return undefined;
|
|
69862
|
+
rec.end = Date.now();
|
|
69863
|
+
return rec.end - rec.start;
|
|
69864
|
+
}
|
|
69865
|
+
function getTimer(key = 'default') {
|
|
69866
|
+
return timers[key];
|
|
69867
|
+
}
|
|
69868
|
+
function formatDuration(ms) {
|
|
69869
|
+
if (ms === undefined)
|
|
69870
|
+
return 'N/A';
|
|
69871
|
+
if (ms < 1000)
|
|
69872
|
+
return `${ms}ms`;
|
|
69873
|
+
const s = Math.floor(ms / 1000);
|
|
69874
|
+
const m = Math.floor(s / 60);
|
|
69875
|
+
if (m > 0)
|
|
69876
|
+
return `${m}m ${s % 60}s`;
|
|
69877
|
+
return `${s}s`;
|
|
69878
|
+
}
|
|
69879
|
+
function nowIso() {
|
|
69880
|
+
return new Date().toISOString();
|
|
69881
|
+
}
|
|
69882
|
+
|
|
69592
69883
|
;// ./dist/index.js
|
|
69593
69884
|
//#!/usr/bin/env node
|
|
69594
69885
|
|
|
@@ -69622,6 +69913,7 @@ globalThis.path = external_path_;
|
|
|
69622
69913
|
|
|
69623
69914
|
|
|
69624
69915
|
|
|
69916
|
+
|
|
69625
69917
|
// Get current file directory for ESM
|
|
69626
69918
|
const dist_filename = (0,external_url_.fileURLToPath)("file:///home/sharique/desktop/shariq-projects/package-installer-cli/dist/index.js");
|
|
69627
69919
|
const dist_dirname = (0,external_path_.dirname)(dist_filename);
|
|
@@ -69666,6 +69958,10 @@ dist_program
|
|
|
69666
69958
|
// Global preAction: enforce login for most commands, whitelist a few
|
|
69667
69959
|
dist_program.hook('preAction', async (thisCommand, actionCommand) => {
|
|
69668
69960
|
const name = actionCommand.name();
|
|
69961
|
+
// start a timer for this command
|
|
69962
|
+
startTimer(name);
|
|
69963
|
+
// record user input time
|
|
69964
|
+
actionCommand.__userInputTime = nowIso();
|
|
69669
69965
|
// Commands allowed without login (help, version, auth, cache --help etc.)
|
|
69670
69966
|
const allowed = ['auth', 'help', 'version', 'cache'];
|
|
69671
69967
|
if (allowed.includes(name))
|
|
@@ -69701,6 +69997,20 @@ dist_program.hook('preAction', async (thisCommand, actionCommand) => {
|
|
|
69701
69997
|
}
|
|
69702
69998
|
}
|
|
69703
69999
|
});
|
|
70000
|
+
// postAction: stop timers and print execution times
|
|
70001
|
+
dist_program.hook('postAction', async (thisCommand, actionCommand) => {
|
|
70002
|
+
const name = actionCommand.name();
|
|
70003
|
+
try {
|
|
70004
|
+
const durationMs = stopTimer(name);
|
|
70005
|
+
const userInputTime = actionCommand.__userInputTime || 'N/A';
|
|
70006
|
+
console.log('\n' + source/* default */.Ay.hex('#00d2d3')('⏱️ Command timing'));
|
|
70007
|
+
console.log(` ${source/* default */.Ay.gray('User input time:')} ${source/* default */.Ay.cyan(userInputTime)}`);
|
|
70008
|
+
console.log(` ${source/* default */.Ay.gray('Execution time:')} ${source/* default */.Ay.green(formatDuration(durationMs))}`);
|
|
70009
|
+
}
|
|
70010
|
+
catch (err) {
|
|
70011
|
+
// ignore timing errors
|
|
70012
|
+
}
|
|
70013
|
+
});
|
|
69704
70014
|
/**
|
|
69705
70015
|
* Enhanced error handler with better formatting
|
|
69706
70016
|
*/
|