stacks 0.56.23 → 0.58.15
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.
- package/buddy +2 -0
- package/core/.env +38 -0
- package/core/.simple-git-hooks.js +3 -0
- package/core/Caddyfile +23 -0
- package/core/README.md +415 -0
- package/core/buddy +2 -0
- package/core/env.ts +42 -0
- package/core/playwright.config.ts +109 -0
- package/core/scripts/build +84 -0
- package/core/scripts/ensure +33 -0
- package/core/scripts/fresh +14 -0
- package/core/scripts/link +14 -0
- package/core/scripts/move-built-src-files.ts +28 -0
- package/core/scripts/move-dts-files.ts +35 -0
- package/core/scripts/publish.ts +32 -0
- package/core/scripts/release-core +37 -0
- package/core/scripts/setup +176 -0
- package/core/src/actions/README.md +58 -0
- package/core/src/actions/build.ts +5 -0
- package/core/src/actions/dist/src/add.js +29 -0
- package/core/src/actions/dist/src/build/component-libs.js +6 -0
- package/core/src/actions/dist/src/build/core.js +25 -0
- package/core/src/actions/dist/src/build/stacks.js +8 -0
- package/core/src/actions/dist/src/build.js +226 -0
- package/core/src/actions/dist/src/bump.js +8 -0
- package/core/src/actions/dist/src/changelog.js +9 -0
- package/core/src/actions/dist/src/clean.js +6 -0
- package/core/src/actions/dist/src/commit.js +17 -0
- package/core/src/actions/dist/src/copy-types.js +14 -0
- package/core/src/actions/dist/src/database/seed.js +4 -0
- package/core/src/actions/dist/src/deploy/index.js +31 -0
- package/core/src/actions/dist/src/dev/components.js +11 -0
- package/core/src/actions/dist/src/dev/docs.js +7 -0
- package/core/src/actions/dist/src/dev/index.js +90 -0
- package/core/src/actions/dist/src/examples.js +43 -0
- package/core/src/actions/dist/src/fresh.js +18 -0
- package/core/src/actions/dist/src/generate/component-meta.js +57 -0
- package/core/src/actions/dist/src/generate/ide-helpers.js +83 -0
- package/core/src/actions/dist/src/generate/index.js +161 -0
- package/core/src/actions/dist/src/generate/lib-entries.js +168 -0
- package/core/src/actions/dist/src/generate/vscode-custom-data.js +82 -0
- package/core/src/actions/dist/src/generate/vue-compat.js +18 -0
- package/core/src/actions/dist/src/helpers/component-meta.js +50 -0
- package/core/src/actions/dist/src/helpers/index.js +56 -0
- package/core/src/actions/dist/src/helpers/lib-entries.js +160 -0
- package/core/src/actions/dist/src/helpers/package-json.js +135 -0
- package/core/src/actions/dist/src/helpers/utils.js +56 -0
- package/core/src/actions/dist/src/helpers/vscode-custom-data.js +75 -0
- package/core/src/actions/dist/src/helpers/vue-compat.js +16 -0
- package/core/src/actions/dist/src/index.js +577 -0
- package/core/src/actions/dist/src/key-generate.js +10 -0
- package/core/src/actions/dist/src/lint/fix.js +8 -0
- package/core/src/actions/dist/src/lint/index.js +21 -0
- package/core/src/actions/dist/src/make.js +291 -0
- package/core/src/actions/dist/src/prepublish.js +14 -0
- package/core/src/actions/dist/src/release.js +545 -0
- package/core/src/actions/dist/src/test/coverage.js +6 -0
- package/core/src/actions/dist/src/test/feature.js +6 -0
- package/core/src/actions/dist/src/test/ui.js +6 -0
- package/core/src/actions/dist/src/test/unit.js +6 -0
- package/core/src/actions/dist/src/test.js +6 -0
- package/core/src/actions/dist/src/tinker.js +5 -0
- package/core/src/actions/dist/src/typecheck.js +6 -0
- package/core/src/actions/dist/src/types.js +21 -0
- package/core/src/actions/dist/src/upgrade/dependencies.js +6 -0
- package/core/src/actions/dist/src/upgrade/framework.js +1 -0
- package/core/src/actions/dist/src/upgrade/index.js +1 -0
- package/core/src/actions/dist/src/upgrade.js +39 -0
- package/core/src/actions/package.json +89 -0
- package/core/src/actions/src/action.ts +11 -0
- package/core/src/actions/src/actions.ts +2 -0
- package/core/src/actions/src/add.ts +27 -0
- package/core/src/actions/src/ai/request-model-access.ts +74 -0
- package/core/src/actions/src/build/component-libs.ts +5 -0
- package/core/src/actions/src/build/core.ts +66 -0
- package/core/src/actions/src/build/desktop.ts +7 -0
- package/core/src/actions/src/build/stacks.ts +7 -0
- package/core/src/actions/src/build.ts +89 -0
- package/core/src/actions/src/bump.ts +11 -0
- package/core/src/actions/src/cdn/invalidate-cache.ts +27 -0
- package/core/src/actions/src/changelog.ts +11 -0
- package/core/src/actions/src/clean.ts +6 -0
- package/core/src/actions/src/commit.ts +14 -0
- package/core/src/actions/src/copy-types.ts +22 -0
- package/core/src/actions/src/database/fields.ts +111 -0
- package/core/src/actions/src/database/migration-mysql.ts +72 -0
- package/core/src/actions/src/database/migration-sqlite.ts +67 -0
- package/core/src/actions/src/database/migration.ts +10 -0
- package/core/src/actions/src/database/mydb.sqlite +0 -0
- package/core/src/actions/src/database/seed.ts +4 -0
- package/core/src/actions/src/database/stacks.sqlite +0 -0
- package/core/src/actions/src/database/user-migration.ts +20 -0
- package/core/src/actions/src/deploy/create-receipt-rule.ts +55 -0
- package/core/src/actions/src/deploy/index.ts +46 -0
- package/core/src/actions/src/dev/api.ts +19 -0
- package/core/src/actions/src/dev/components.ts +14 -0
- package/core/src/actions/src/dev/desktop.ts +7 -0
- package/core/src/actions/src/dev/docs.ts +7 -0
- package/core/src/actions/src/dev/index.ts +38 -0
- package/core/src/actions/src/dev/views.ts +7 -0
- package/core/src/actions/src/domains/add.ts +82 -0
- package/core/src/actions/src/domains/purchase.ts +76 -0
- package/core/src/actions/src/domains/remove.ts +38 -0
- package/core/src/actions/src/examples.ts +46 -0
- package/core/src/actions/src/fresh.ts +20 -0
- package/core/src/actions/src/generate/caddyfile.ts +1 -0
- package/core/src/actions/src/generate/component-meta.ts +15 -0
- package/core/src/actions/src/generate/env-files.ts +89 -0
- package/core/src/actions/src/generate/ide-helpers.ts +20 -0
- package/core/src/actions/src/generate/index.ts +141 -0
- package/core/src/actions/src/generate/lib-entries.ts +17 -0
- package/core/src/actions/src/generate/model-classes.ts +299 -0
- package/core/src/actions/src/generate/model-generate.ts +12 -0
- package/core/src/actions/src/generate/pkgx-file.ts +72 -0
- package/core/src/actions/src/generate/vscode-custom-data.ts +16 -0
- package/core/src/actions/src/generate/vue-compat.ts +10 -0
- package/core/src/actions/src/helpers/component-meta.ts +93 -0
- package/core/src/actions/src/helpers/index.ts +1 -0
- package/core/src/actions/src/helpers/lib-entries.ts +139 -0
- package/core/src/actions/src/helpers/package-json.ts +96 -0
- package/core/src/actions/src/helpers/utils.ts +82 -0
- package/core/src/actions/src/helpers/vscode-custom-data.ts +28 -0
- package/core/src/actions/src/helpers/vue-compat.ts +16 -0
- package/core/src/actions/src/index.ts +29 -0
- package/core/src/actions/src/key-generate.ts +10 -0
- package/core/src/actions/src/lint/fix.ts +7 -0
- package/core/src/actions/src/lint/index.ts +19 -0
- package/core/src/actions/src/make.ts +322 -0
- package/core/src/actions/src/migrate/database.ts +1 -0
- package/core/src/actions/src/migrate/dns.ts +3 -0
- package/core/src/actions/src/prepublish.ts +17 -0
- package/core/src/actions/src/release.ts +15 -0
- package/core/src/actions/src/start-caddy.ts +13 -0
- package/core/src/actions/src/test/coverage.ts +5 -0
- package/core/src/actions/src/test/feature.ts +5 -0
- package/core/src/actions/src/test/ui.ts +5 -0
- package/core/src/actions/src/test/unit.ts +5 -0
- package/core/src/actions/src/test.ts +5 -0
- package/core/src/actions/src/tinker.ts +10 -0
- package/core/src/actions/src/typecheck.ts +5 -0
- package/core/src/actions/src/types.ts +20 -0
- package/core/src/actions/src/upgrade/bun.ts +4 -0
- package/core/src/actions/src/upgrade/framework.ts +30 -0
- package/core/src/actions/src/upgrade/index.ts +25 -0
- package/core/src/actions/src/upgrade.ts +65 -0
- package/core/src/actions/src/zip/api.ts +22 -0
- package/core/src/actions/tests/example.test.ts +5 -0
- package/core/src/ai/README.md +67 -0
- package/core/src/ai/build.ts +9 -0
- package/core/src/ai/package.json +59 -0
- package/core/src/ai/src/index.ts +8 -0
- package/core/src/ai/src/text-generation.ts +0 -0
- package/core/src/ai/src/text-summary.ts +0 -0
- package/core/src/ai/src/utils/client-bedrock-runtime.ts +38 -0
- package/core/src/ai/src/utils/client-bedrock.ts +53 -0
- package/core/src/ai/tests/example.test.ts +5 -0
- package/core/src/alias/README.md +53 -0
- package/core/src/alias/build.ts +8 -0
- package/core/src/alias/dist/index.js +218 -0
- package/core/src/alias/package.json +51 -0
- package/core/src/alias/src/index.ts +220 -0
- package/core/src/alias/tests/example.test.ts +5 -0
- package/core/src/analytics/README.md +55 -0
- package/core/src/analytics/build.ts +8 -0
- package/core/src/analytics/dist/index.js +5 -0
- package/core/src/analytics/package.json +54 -0
- package/core/src/analytics/src/drivers/fathom.ts +1 -0
- package/core/src/analytics/src/drivers/index.ts +1 -0
- package/core/src/analytics/src/index.ts +1 -0
- package/core/src/analytics/tests/example.test.ts +5 -0
- package/core/src/api/build.ts +7 -0
- package/core/src/api/package.json +61 -0
- package/core/src/api/src/index.ts +114 -0
- package/core/src/arrays/README.md +59 -0
- package/core/src/arrays/build.ts +8 -0
- package/core/src/arrays/dist/index.js +469 -0
- package/core/src/arrays/package.json +59 -0
- package/core/src/arrays/src/arr.ts +3 -0
- package/core/src/arrays/src/contains.ts +87 -0
- package/core/src/arrays/src/helpers.ts +272 -0
- package/core/src/arrays/src/index.ts +3 -0
- package/core/src/arrays/src/macro.ts +131 -0
- package/core/src/arrays/src/math.ts +220 -0
- package/core/src/arrays/tests/example.test.ts +5 -0
- package/core/src/auth/README.md +59 -0
- package/core/src/auth/build.ts +8 -0
- package/core/src/auth/dist/index.js +5 -0
- package/core/src/auth/package.json +50 -0
- package/core/src/auth/tests/example.test.ts +5 -0
- package/core/src/bud +2 -0
- package/core/src/buddy/README.md +390 -0
- package/core/src/buddy/art/social.jpg +0 -0
- package/core/src/buddy/build.ts +8 -0
- package/core/src/buddy/dist/chunk-815e657d8c6ba584.js +1677 -0
- package/core/src/buddy/dist/chunk-b75e6db0012faa55.js +22 -0
- package/core/src/buddy/dist/cli.js +49 -0
- package/core/src/buddy/dist/index.js +70 -0
- package/core/src/buddy/package.json +174 -0
- package/core/src/buddy/src/cli.ts +51 -0
- package/core/src/buddy/src/commands/add.ts +65 -0
- package/core/src/buddy/src/commands/build.ts +172 -0
- package/core/src/buddy/src/commands/changelog.ts +36 -0
- package/core/src/buddy/src/commands/clean.ts +34 -0
- package/core/src/buddy/src/commands/cloud.ts +299 -0
- package/core/src/buddy/src/commands/commit.ts +22 -0
- package/core/src/buddy/src/commands/configure.ts +65 -0
- package/core/src/buddy/src/commands/create.ts +131 -0
- package/core/src/buddy/src/commands/deploy.ts +99 -0
- package/core/src/buddy/src/commands/dev.ts +228 -0
- package/core/src/buddy/src/commands/dns.ts +78 -0
- package/core/src/buddy/src/commands/domains.ts +156 -0
- package/core/src/buddy/src/commands/example.ts +62 -0
- package/core/src/buddy/src/commands/fresh.ts +34 -0
- package/core/src/buddy/src/commands/generate.ts +142 -0
- package/core/src/buddy/src/commands/http.ts +53 -0
- package/core/src/buddy/src/commands/index.ts +30 -0
- package/core/src/buddy/src/commands/inspire.ts +24 -0
- package/core/src/buddy/src/commands/install.ts +26 -0
- package/core/src/buddy/src/commands/key.ts +32 -0
- package/core/src/buddy/src/commands/lint.ts +49 -0
- package/core/src/buddy/src/commands/make.ts +259 -0
- package/core/src/buddy/src/commands/migrate.ts +55 -0
- package/core/src/buddy/src/commands/prepublish.ts +23 -0
- package/core/src/buddy/src/commands/release.ts +33 -0
- package/core/src/buddy/src/commands/seed.ts +36 -0
- package/core/src/buddy/src/commands/setup.ts +116 -0
- package/core/src/buddy/src/commands/test.ts +122 -0
- package/core/src/buddy/src/commands/tinker.ts +34 -0
- package/core/src/buddy/src/commands/types.ts +30 -0
- package/core/src/buddy/src/commands/upgrade.ts +109 -0
- package/core/src/buddy/src/commands/version.ts +24 -0
- package/core/src/buddy/src/compile.ts +9 -0
- package/core/src/build/README.md +59 -0
- package/core/src/build/build.ts +8 -0
- package/core/src/build/dist/index.js +19 -0
- package/core/src/build/package.json +63 -0
- package/core/src/build/src/index.ts +11 -0
- package/core/src/build/tests/example.test.ts +5 -0
- package/core/src/build/web-types.ts +15 -0
- package/core/src/bun-create/bud/README.md +45 -0
- package/core/src/bun-create/bud/package.json +152 -0
- package/core/src/bun-create/buddy/README.md +45 -0
- package/core/src/bun-create/buddy/package.json +152 -0
- package/core/src/bun-create/stack/README.md +45 -0
- package/core/src/bun-create/stack/package.json +152 -0
- package/core/src/bun-create/stacks/README.md +45 -0
- package/core/src/bun-create/stacks/package.json +152 -0
- package/core/src/bun-create/stx/README.md +45 -0
- package/core/src/bun-create/stx/package.json +152 -0
- package/core/src/bun-plugin-yaml/README.md +56 -0
- package/core/src/bun-plugin-yaml/build.ts +8 -0
- package/core/src/bun-plugin-yaml/dist/index.js +2781 -0
- package/core/src/bun-plugin-yaml/package.json +57 -0
- package/core/src/bun-plugin-yaml/src/index.ts +22 -0
- package/core/src/bun-plugin-yaml/tests/example.test.ts +5 -0
- package/core/src/cache/README.md +59 -0
- package/core/src/cache/build.ts +8 -0
- package/core/src/cache/dist/index.js +88 -0
- package/core/src/cache/package.json +65 -0
- package/core/src/cache/src/drivers/index.ts +2 -0
- package/core/src/cache/src/drivers/redis.ts +37 -0
- package/core/src/cache/src/index.ts +1 -0
- package/core/src/cache/tests/DynamoDB.test.ts +135 -0
- package/core/src/cache/tests/Memcached.test.ts +51 -0
- package/core/src/cache/tests/Redis.test.ts +84 -0
- package/core/src/chat/README.md +83 -0
- package/core/src/chat/build.ts +8 -0
- package/core/src/chat/dist/index.js +42 -0
- package/core/src/chat/package.json +73 -0
- package/core/src/chat/tests/example.test.ts +5 -0
- package/core/src/cli/README.md +168 -0
- package/core/src/cli/build.ts +8 -0
- package/core/src/cli/dist/index.js +372 -0
- package/core/src/cli/package.json +90 -0
- package/core/src/cli/src/actions/install.ts +40 -0
- package/core/src/cli/src/cli.ts +52 -0
- package/core/src/cli/src/command.ts +47 -0
- package/core/src/cli/src/console.ts +79 -0
- package/core/src/cli/src/exec.ts +89 -0
- package/core/src/cli/src/helpers.ts +90 -0
- package/core/src/cli/src/index.ts +10 -0
- package/core/src/cli/src/parse.ts +101 -0
- package/core/src/cli/src/run.ts +97 -0
- package/core/src/cli/src/utilities.ts +2 -0
- package/core/src/cli/tests/example.test.ts +5 -0
- package/core/src/cloud/README.md +67 -0
- package/core/src/cloud/build-server.ts +8 -0
- package/core/src/cloud/build.ts +8 -0
- package/core/src/cloud/cdk.json +62 -0
- package/core/src/cloud/deploy.ts +75 -0
- package/core/src/cloud/dist/origin-request.js +27 -0
- package/core/src/cloud/package.json +119 -0
- package/core/src/cloud/src/cloud/ai.ts +115 -0
- package/core/src/cloud/src/cloud/aws-sdk-layer/nodejs/package-lock.json +386 -0
- package/core/src/cloud/src/cloud/aws-sdk-layer/nodejs/package.json +15 -0
- package/core/src/cloud/src/cloud/cache.ts +0 -0
- package/core/src/cloud/src/cloud/cdn.ts +335 -0
- package/core/src/cloud/src/cloud/compute.ts +79 -0
- package/core/src/cloud/src/cloud/dashboard.ts +85 -0
- package/core/src/cloud/src/cloud/database.ts +0 -0
- package/core/src/cloud/src/cloud/deployment.ts +41 -0
- package/core/src/cloud/src/cloud/dns.ts +34 -0
- package/core/src/cloud/src/cloud/docs.ts +51 -0
- package/core/src/cloud/src/cloud/email.ts +339 -0
- package/core/src/cloud/src/cloud/file-system.ts +35 -0
- package/core/src/cloud/src/cloud/index.ts +93 -0
- package/core/src/cloud/src/cloud/jump-box.ts +48 -0
- package/core/src/cloud/src/cloud/lambda/ask/index.js +35 -0
- package/core/src/cloud/src/cloud/lambda/summarize/index.js +35 -0
- package/core/src/cloud/src/cloud/network.ts +52 -0
- package/core/src/cloud/src/cloud/permissions.ts +33 -0
- package/core/src/cloud/src/cloud/queue.ts +0 -0
- package/core/src/cloud/src/cloud/redirects.ts +45 -0
- package/core/src/cloud/src/cloud/search-engine.ts +108 -0
- package/core/src/cloud/src/cloud/security.ts +259 -0
- package/core/src/cloud/src/cloud/storage.ts +168 -0
- package/core/src/cloud/src/edge/origin-request.ts +49 -0
- package/core/src/cloud/src/helpers.ts +597 -0
- package/core/src/cloud/src/index.ts +2 -0
- package/core/src/cloud/src/runtime/README.md +116 -0
- package/core/src/cloud/src/runtime/bootstrap +3 -0
- package/core/src/cloud/src/runtime/example/lambda.ts +36 -0
- package/core/src/cloud/src/runtime/runtime.ts +829 -0
- package/core/src/cloud/src/runtime/scripts/build-layer.ts +104 -0
- package/core/src/cloud/src/runtime/scripts/publish-layer.ts +110 -0
- package/core/src/cloud/src/runtime/server.ts +39 -0
- package/core/src/cloud/src/server/.dockerignore +15 -0
- package/core/src/cloud/src/server/Dockerfile +20 -0
- package/core/src/cloud/src/server/index.ts +39 -0
- package/core/src/cloud/src/server/package.json +12 -0
- package/core/src/cloud/src/server/runtime.ts +828 -0
- package/core/src/cloud/src/types.ts +28 -0
- package/core/src/cloud/tests/example.test.ts +5 -0
- package/core/src/cloud/zip.ts +8 -0
- package/core/src/collections/README.md +71 -0
- package/core/src/collections/build.ts +8 -0
- package/core/src/collections/dist/index.js +6 -0
- package/core/src/collections/package.json +57 -0
- package/core/src/collections/tests/example.test.ts +5 -0
- package/core/src/config/README.md +71 -0
- package/core/src/config/build.ts +8 -0
- package/core/src/config/dist/index.js +1670 -0
- package/core/src/config/package.json +55 -0
- package/core/src/config/src/config.ts +38 -0
- package/core/src/config/src/defaults.ts +460 -0
- package/core/src/config/src/helpers.ts +256 -0
- package/core/src/config/src/index.ts +2 -0
- package/core/src/config/src/overrides.ts +49 -0
- package/core/src/config/tests/example.test.ts +5 -0
- package/core/src/database/README.md +59 -0
- package/core/src/database/build.ts +8 -0
- package/core/src/database/dist/index.js +200 -0
- package/core/src/database/package.json +78 -0
- package/core/src/database/src/index.ts +63 -0
- package/core/src/database/src/kysely-bun-worker/driver.ts +143 -0
- package/core/src/database/src/kysely-bun-worker/index.ts +46 -0
- package/core/src/database/src/kysely-bun-worker/mitt.ts +24 -0
- package/core/src/database/src/kysely-bun-worker/type.ts +40 -0
- package/core/src/database/src/kysely-bun-worker/worker.ts +53 -0
- package/core/src/database/src/migrations/index.ts +73 -0
- package/core/src/database/src/seeder/index.ts +79 -0
- package/core/src/database/tests/example.test.ts +5 -0
- package/core/src/datetime/README.md +66 -0
- package/core/src/datetime/build.ts +8 -0
- package/core/src/datetime/dist/index.js +9 -0
- package/core/src/datetime/package.json +56 -0
- package/core/src/datetime/tests/example.test.ts +5 -0
- package/core/src/desktop/README.md +49 -0
- package/core/src/desktop/build.ts +8 -0
- package/core/src/desktop/dist/index.js +3075 -0
- package/core/src/desktop/package.json +84 -0
- package/core/src/desktop/src/index.ts +41 -0
- package/core/src/desktop/tests/example.test.ts +5 -0
- package/core/src/development/README.md +27 -0
- package/core/src/development/build.ts +8 -0
- package/core/src/development/dist/index.js +6 -0
- package/core/src/development/package.json +77 -0
- package/core/src/development/src/index.ts +0 -0
- package/core/src/development/tests/example.test.ts +5 -0
- package/core/src/dns/README.md +56 -0
- package/core/src/dns/build.ts +8 -0
- package/core/src/dns/dist/index.js +166 -0
- package/core/src/dns/package.json +76 -0
- package/core/src/dns/src/drivers/aws.ts +224 -0
- package/core/src/dns/src/index.ts +20 -0
- package/core/src/dns/tests/example.test.ts +5 -0
- package/core/src/docs/README.md +59 -0
- package/core/src/docs/build.ts +8 -0
- package/core/src/docs/dist/index.js +214608 -0
- package/core/src/docs/package.json +68 -0
- package/core/src/docs/src/index.ts +61 -0
- package/core/src/docs/src/plugins.ts +4 -0
- package/core/src/docs/tests/example.test.ts +5 -0
- package/core/src/email/README.md +155 -0
- package/core/src/email/build-inbound.ts +8 -0
- package/core/src/email/build.ts +8 -0
- package/core/src/email/dist/index.js +325 -0
- package/core/src/email/email-forwarder.cjs +406 -0
- package/core/src/email/email-forwarder.zip +0 -0
- package/core/src/email/package.json +94 -0
- package/core/src/email/src/drivers/emailjs.ts +23 -0
- package/core/src/email/src/drivers/index.ts +9 -0
- package/core/src/email/src/drivers/mailgun.ts +21 -0
- package/core/src/email/src/drivers/mailjet.ts +21 -0
- package/core/src/email/src/drivers/mandrill.ts +19 -0
- package/core/src/email/src/drivers/netcore.ts +19 -0
- package/core/src/email/src/drivers/nodemailer.ts +23 -0
- package/core/src/email/src/drivers/postmark.ts +19 -0
- package/core/src/email/src/drivers/sendgrid.ts +20 -0
- package/core/src/email/src/drivers/ses.ts +22 -0
- package/core/src/email/src/index.ts +1 -0
- package/core/src/email/src/send.ts +37 -0
- package/core/src/email/src/server/converter.ts +304 -0
- package/core/src/email/src/server/inbound.ts +389 -0
- package/core/src/email/src/server/outbound.ts +294 -0
- package/core/src/email/tests/example.test.ts +5 -0
- package/core/src/enums/README.md +54 -0
- package/core/src/enums/build.ts +8 -0
- package/core/src/enums/dist/index.js +98 -0
- package/core/src/enums/package.json +50 -0
- package/core/src/enums/src/index.ts +95 -0
- package/core/src/enums/tests/example.test.ts +5 -0
- package/core/src/env/README.md +71 -0
- package/core/src/env/build.ts +8 -0
- package/core/src/env/dist/index.js +221 -0
- package/core/src/env/package.json +55 -0
- package/core/src/env/src/index.ts +76 -0
- package/core/src/env/src/types.ts +54 -0
- package/core/src/env/tests/example.test.ts +5 -0
- package/core/src/error-handling/README.md +131 -0
- package/core/src/error-handling/build.ts +8 -0
- package/core/src/error-handling/dist/index.js +432 -0
- package/core/src/error-handling/package.json +62 -0
- package/core/src/error-handling/src/handler.ts +51 -0
- package/core/src/error-handling/src/index.ts +2 -0
- package/core/src/error-handling/tests/example.test.ts +5 -0
- package/core/src/eslint-config/.gitattributes +2 -0
- package/core/src/eslint-config/README.md +587 -0
- package/core/src/eslint-config/build.ts +8 -0
- package/core/src/eslint-config/package.json +119 -0
- package/core/src/eslint-config/src/configs/comments.ts +19 -0
- package/core/src/eslint-config/src/configs/formatters.ts +187 -0
- package/core/src/eslint-config/src/configs/ignores.ts +10 -0
- package/core/src/eslint-config/src/configs/imports.ts +37 -0
- package/core/src/eslint-config/src/configs/index.ts +21 -0
- package/core/src/eslint-config/src/configs/javascript.ts +226 -0
- package/core/src/eslint-config/src/configs/jsdoc.ts +42 -0
- package/core/src/eslint-config/src/configs/jsonc.ts +86 -0
- package/core/src/eslint-config/src/configs/markdown.ts +110 -0
- package/core/src/eslint-config/src/configs/node.ts +23 -0
- package/core/src/eslint-config/src/configs/perfectionist.ts +18 -0
- package/core/src/eslint-config/src/configs/react.ts +111 -0
- package/core/src/eslint-config/src/configs/sort.ts +223 -0
- package/core/src/eslint-config/src/configs/stylistic.ts +57 -0
- package/core/src/eslint-config/src/configs/svelte.ts +106 -0
- package/core/src/eslint-config/src/configs/test.ts +54 -0
- package/core/src/eslint-config/src/configs/toml.ts +72 -0
- package/core/src/eslint-config/src/configs/typescript.ts +156 -0
- package/core/src/eslint-config/src/configs/unicorn.ts +41 -0
- package/core/src/eslint-config/src/configs/unocss.ts +43 -0
- package/core/src/eslint-config/src/configs/vue.ts +169 -0
- package/core/src/eslint-config/src/configs/yaml.ts +72 -0
- package/core/src/eslint-config/src/factory.ts +260 -0
- package/core/src/eslint-config/src/globs.ts +92 -0
- package/core/src/eslint-config/src/index.ts +9 -0
- package/core/src/eslint-config/src/plugins.ts +10 -0
- package/core/src/eslint-config/src/stub.d.ts +3 -0
- package/core/src/eslint-config/src/types.ts +366 -0
- package/core/src/eslint-config/src/utils.ts +72 -0
- package/core/src/eslint-config/src/vendor/prettier-types.ts +136 -0
- package/core/src/eslint-config/test/cli.spec.ts +90 -0
- package/core/src/eslint-config/test/fixtures.test.ts +125 -0
- package/core/src/eslint-config/tsconfig.json +17 -0
- package/core/src/eslint-config/tsup.config.ts +8 -0
- package/core/src/events/README.md +76 -0
- package/core/src/events/build.ts +8 -0
- package/core/src/events/dist/index.js +63 -0
- package/core/src/events/package.json +52 -0
- package/core/src/events/src/index.ts +170 -0
- package/core/src/events/tests/example.test.ts +5 -0
- package/core/src/faker/README.md +53 -0
- package/core/src/faker/build.ts +8 -0
- package/core/src/faker/dist/index.js +6 -0
- package/core/src/faker/package.json +61 -0
- package/core/src/faker/tests/example.test.ts +5 -0
- package/core/src/git/README.md +65 -0
- package/core/src/git/build.ts +8 -0
- package/core/src/git/dist/index.js +6 -0
- package/core/src/git/package.json +68 -0
- package/core/src/git/src/index.ts +1 -0
- package/core/src/git/tests/example.test.ts +5 -0
- package/core/src/health/README.md +56 -0
- package/core/src/health/build.ts +8 -0
- package/core/src/health/dist/index.js +9 -0
- package/core/src/health/package.json +58 -0
- package/core/src/health/src/drivers/index.ts +1 -0
- package/core/src/health/src/drivers/ohdear.ts +1 -0
- package/core/src/health/src/index.ts +2 -0
- package/core/src/health/src/notifications/index.ts +1 -0
- package/core/src/health/tests/example.test.ts +5 -0
- package/core/src/http/README.md +59 -0
- package/core/src/http/build.ts +8 -0
- package/core/src/http/dist/index.js +65 -0
- package/core/src/http/package.json +52 -0
- package/core/src/http/src/index.ts +71 -0
- package/core/src/index.ts +57 -0
- package/core/src/lint/.eslintrc.json +3 -0
- package/core/src/lint/README.md +73 -0
- package/core/src/lint/build.ts +8 -0
- package/core/src/lint/dist/index.js +6 -0
- package/core/src/lint/package.json +69 -0
- package/core/src/lint/tests/example.test.ts +5 -0
- package/core/src/logging/README.md +58 -0
- package/core/src/logging/build.ts +8 -0
- package/core/src/logging/dist/index.js +1809 -0
- package/core/src/logging/package.json +61 -0
- package/core/src/logging/src/index.ts +27 -0
- package/core/src/logging/tests/example.test.ts +5 -0
- package/core/src/music/package.json +47 -0
- package/core/src/music/src/components/SampleComponent.stx +5 -0
- package/core/src/music/src/layouts/default.stx +3 -0
- package/core/src/music/src/pages/index.stx +10 -0
- package/core/src/music/src/pages/music.stx +10 -0
- package/core/src/music/src/styles/main.css +1 -0
- package/core/src/notifications/README.md +272 -0
- package/core/src/notifications/build.ts +8 -0
- package/core/src/notifications/dist/index.js +54 -0
- package/core/src/notifications/package.json +103 -0
- package/core/src/notifications/src/drivers/index.ts +4 -0
- package/core/src/notifications/src/index.ts +51 -0
- package/core/src/notifications/src/tailwind.config.ts +39 -0
- package/core/src/notifications/src/utils/config.ts +5 -0
- package/core/src/notifications/tests/chat/Slack.test.ts +34 -0
- package/core/src/notifications/tests/email/Mailgun.test.ts +40 -0
- package/core/src/notifications/tests/email/Sendgrid.test.ts +40 -0
- package/core/src/notifications/tests/sms/Twilio.test.ts +37 -0
- package/core/src/objects/README.md +71 -0
- package/core/src/objects/build.ts +8 -0
- package/core/src/objects/dist/index.js +64 -0
- package/core/src/objects/package.json +63 -0
- package/core/src/objects/src/index.ts +145 -0
- package/core/src/objects/tests/example.test.ts +5 -0
- package/core/src/orm/README.md +48 -0
- package/core/src/orm/build.ts +8 -0
- package/core/src/orm/dist/index.js +6 -0
- package/core/src/orm/package.json +59 -0
- package/core/src/orm/src/index.ts +49 -0
- package/core/src/orm/tests/example.test.ts +5 -0
- package/core/src/path/README.md +64 -0
- package/core/src/path/build.ts +8 -0
- package/core/src/path/dist/index.js +495 -0
- package/core/src/path/package.json +54 -0
- package/core/src/path/src/index.ts +529 -0
- package/core/src/path/tests/example.test.ts +5 -0
- package/core/src/payments/README.md +64 -0
- package/core/src/payments/build.ts +8 -0
- package/core/src/payments/dist/index.js +6261 -0
- package/core/src/payments/package.json +60 -0
- package/core/src/payments/src/drivers/stripe.ts +116 -0
- package/core/src/payments/tests/example.test.ts +5 -0
- package/core/src/push/README.md +71 -0
- package/core/src/push/build.ts +9 -0
- package/core/src/push/package.json +64 -0
- package/core/src/push/src/drivers/expo.ts +21 -0
- package/core/src/push/src/drivers/fcm.ts +21 -0
- package/core/src/push/src/drivers/index.ts +2 -0
- package/core/src/push/src/index.ts +1 -0
- package/core/src/push/tests/example.test.ts +5 -0
- package/core/src/query-builder/README.md +48 -0
- package/core/src/query-builder/build.ts +8 -0
- package/core/src/query-builder/dist/index.js +18 -0
- package/core/src/query-builder/package.json +59 -0
- package/core/src/query-builder/src/kysely.ts +38 -0
- package/core/src/query-builder/tests/example.test.ts +5 -0
- package/core/src/queue/README.md +59 -0
- package/core/src/queue/build.ts +8 -0
- package/core/src/queue/dist/index.js +19 -0
- package/core/src/queue/package.json +55 -0
- package/core/src/queue/src/index.ts +17 -0
- package/core/src/queue/tests/example.test.ts +5 -0
- package/core/src/realtime/README.md +59 -0
- package/core/src/realtime/build.ts +8 -0
- package/core/src/realtime/dist/index.js +6 -0
- package/core/src/realtime/package.json +52 -0
- package/core/src/realtime/src/drivers/index.ts +1 -0
- package/core/src/realtime/src/index.ts +1 -0
- package/core/src/realtime/tests/example.test.ts +5 -0
- package/core/src/repl/README.md +53 -0
- package/core/src/repl/build.ts +8 -0
- package/core/src/repl/dist/index.js +6 -0
- package/core/src/repl/package.json +59 -0
- package/core/src/repl/tests/example.test.ts +5 -0
- package/core/src/router/README.md +59 -0
- package/core/src/router/build.ts +8 -0
- package/core/src/router/dist/index.js +841 -0
- package/core/src/router/package.json +62 -0
- package/core/src/router/src/index.ts +4 -0
- package/core/src/router/src/middleware.ts +34 -0
- package/core/src/router/src/request.ts +44 -0
- package/core/src/router/src/router.ts +162 -0
- package/core/src/router/src/server.ts +154 -0
- package/core/src/router/tests/example.test.ts +5 -0
- package/core/src/scheduler/README.md +137 -0
- package/core/src/scheduler/build.ts +8 -0
- package/core/src/scheduler/dist/index.js +208 -0
- package/core/src/scheduler/package.json +56 -0
- package/core/src/scheduler/src/index.ts +321 -0
- package/core/src/scheduler/tests/example.test.ts +5 -0
- package/core/src/search-engine/README.md +66 -0
- package/core/src/search-engine/build.ts +8 -0
- package/core/src/search-engine/dist/index.js +89 -0
- package/core/src/search-engine/package.json +67 -0
- package/core/src/search-engine/src/drivers/index.ts +1 -0
- package/core/src/search-engine/src/drivers/meilisearch.ts +124 -0
- package/core/src/search-engine/src/drivers/opensearch.ts +59 -0
- package/core/src/search-engine/src/helpers.ts +138 -0
- package/core/src/search-engine/src/index.ts +69 -0
- package/core/src/search-engine/tests/example.test.ts +5 -0
- package/core/src/security/README.md +66 -0
- package/core/src/security/build.ts +8 -0
- package/core/src/security/dist/index.js +3288 -0
- package/core/src/security/package.json +65 -0
- package/core/src/security/src/crypt.ts +23 -0
- package/core/src/security/src/hash.ts +54 -0
- package/core/src/security/src/key.ts +11 -0
- package/core/src/security/tests/example.test.ts +5 -0
- package/core/src/server/README.md +51 -0
- package/core/src/server/build.ts +8 -0
- package/core/src/server/dist/index.js +48 -0
- package/core/src/server/package.json +67 -0
- package/core/src/server/src/api.ts +5 -0
- package/core/src/server/src/config.ts +59 -0
- package/core/src/server/src/index.ts +1 -0
- package/core/src/server/tests/example.test.ts +5 -0
- package/core/src/signals/README.md +105 -0
- package/core/src/signals/build.ts +8 -0
- package/core/src/signals/dist/index.js +9 -0
- package/core/src/signals/package.json +63 -0
- package/core/src/signals/tests/example.test.ts +5 -0
- package/core/src/slug/README.md +59 -0
- package/core/src/slug/build.ts +8 -0
- package/core/src/slug/dist/index.js +5 -0
- package/core/src/slug/package.json +65 -0
- package/core/src/slug/src/index.ts +56 -0
- package/core/src/slug/tests/example.test.ts +5 -0
- package/core/src/sms/README.md +137 -0
- package/core/src/sms/build.ts +9 -0
- package/core/src/sms/package.json +82 -0
- package/core/src/sms/src/drivers/index.ts +8 -0
- package/core/src/sms/src/index.ts +1 -0
- package/core/src/sms/tests/example.test.ts +5 -0
- package/core/src/storage/README.md +74 -0
- package/core/src/storage/build.ts +8 -0
- package/core/src/storage/dist/index.js +798 -0
- package/core/src/storage/package.json +77 -0
- package/core/src/storage/src/copy.ts +42 -0
- package/core/src/storage/src/delete.ts +131 -0
- package/core/src/storage/src/drivers/aws.ts +15 -0
- package/core/src/storage/src/drivers/index.ts +1 -0
- package/core/src/storage/src/files.ts +182 -0
- package/core/src/storage/src/folders.ts +51 -0
- package/core/src/storage/src/fs.ts +9 -0
- package/core/src/storage/src/glob.ts +1 -0
- package/core/src/storage/src/hash.ts +39 -0
- package/core/src/storage/src/helpers.ts +29 -0
- package/core/src/storage/src/index.ts +11 -0
- package/core/src/storage/src/move.ts +84 -0
- package/core/src/storage/src/storage.ts +10 -0
- package/core/src/storage/src/visibility.ts +6 -0
- package/core/src/storage/src/zip.ts +55 -0
- package/core/src/storage/tests/example.test.ts +5 -0
- package/core/src/strings/README.md +137 -0
- package/core/src/strings/build.ts +9 -0
- package/core/src/strings/dist/index.js +393 -0
- package/core/src/strings/package.json +81 -0
- package/core/src/strings/src/case.ts +27 -0
- package/core/src/strings/src/helpers.ts +3 -0
- package/core/src/strings/src/index.ts +2 -0
- package/core/src/strings/src/macro.ts +131 -0
- package/core/src/strings/src/pluralize.ts +26 -0
- package/core/src/strings/src/string.ts +5 -0
- package/core/src/strings/src/types.ts +4 -0
- package/core/src/strings/src/utils.ts +117 -0
- package/core/src/strings/tests/example.test.ts +5 -0
- package/core/src/tables/README.md +110 -0
- package/core/src/tables/examples/vue/App.stx +12 -0
- package/core/src/tables/examples/vue/favicon.png +0 -0
- package/core/src/tables/examples/vue/index.html +20 -0
- package/core/src/tables/examples/web/favicon.png +0 -0
- package/core/src/tables/examples/web/index.html +13 -0
- package/core/src/tables/package.json +57 -0
- package/core/src/tables/src/App.stx +23 -0
- package/core/src/tables/src/components/README.md +109 -0
- package/core/src/tables/src/components/Table.stx +342 -0
- package/core/src/tables/src/components/TableBody.stx +32 -0
- package/core/src/tables/src/components/TableFilters.stx +704 -0
- package/core/src/tables/src/components/TableHead.stx +60 -0
- package/core/src/tables/src/components/TablePagination.stx +131 -0
- package/core/src/tables/src/components/TableRow.stx +73 -0
- package/core/src/tables/src/components/TableSearch.stx +39 -0
- package/core/src/tables/src/components/Tooltip.stx +10 -0
- package/core/src/tables/src/components.d.ts +24 -0
- package/core/src/tables/src/config/tables.ts +2 -0
- package/core/src/tables/src/docs/index.md +0 -0
- package/core/src/tables/src/main.ts +4 -0
- package/core/src/tables/tests/example.test.ts +5 -0
- package/core/src/tables/vite.config.ts +84 -0
- package/core/src/testing/README.md +59 -0
- package/core/src/testing/build.ts +8 -0
- package/core/src/testing/dist/index.js +6 -0
- package/core/src/testing/package.json +62 -0
- package/core/src/testing/src/index.ts +3 -0
- package/core/src/tinker/package.json +46 -0
- package/core/src/tunnel/README.md +53 -0
- package/core/src/tunnel/build.ts +8 -0
- package/core/src/tunnel/dist/index.js +10 -0
- package/core/src/tunnel/package.json +57 -0
- package/core/src/tunnel/src/index.ts +6 -0
- package/core/src/tunnel/tests/example.test.ts +5 -0
- package/core/src/types/README.md +59 -0
- package/core/src/types/build.ts +8 -0
- package/core/src/types/dist/index.js +501 -0
- package/core/src/types/package.json +86 -0
- package/core/src/types/src/ai.ts +25 -0
- package/core/src/types/src/analytics.ts +21 -0
- package/core/src/types/src/api.ts +63 -0
- package/core/src/types/src/app.ts +172 -0
- package/core/src/types/src/binary.ts +12 -0
- package/core/src/types/src/cache.ts +98 -0
- package/core/src/types/src/cdn.ts +17 -0
- package/core/src/types/src/chat.ts +5 -0
- package/core/src/types/src/cli.ts +305 -0
- package/core/src/types/src/cloud.ts +82 -0
- package/core/src/types/src/components.ts +64 -0
- package/core/src/types/src/configure.ts +6 -0
- package/core/src/types/src/cron-jobs.ts +44 -0
- package/core/src/types/src/database.ts +45 -0
- package/core/src/types/src/dependencies.ts +69 -0
- package/core/src/types/src/deploy.ts +13 -0
- package/core/src/types/src/dns.ts +186 -0
- package/core/src/types/src/docs.ts +22 -0
- package/core/src/types/src/email.ts +16 -0
- package/core/src/types/src/env.ts +1 -0
- package/core/src/types/src/errors.ts +11 -0
- package/core/src/types/src/events.ts +30 -0
- package/core/src/types/src/file-systems.ts +70 -0
- package/core/src/types/src/git.ts +133 -0
- package/core/src/types/src/hashing.ts +131 -0
- package/core/src/types/src/helpers.ts +11 -0
- package/core/src/types/src/index.ts +58 -0
- package/core/src/types/src/layout.ts +8 -0
- package/core/src/types/src/library.ts +154 -0
- package/core/src/types/src/model.ts +72 -0
- package/core/src/types/src/money.ts +3 -0
- package/core/src/types/src/notifications.ts +147 -0
- package/core/src/types/src/payments.ts +65 -0
- package/core/src/types/src/push.ts +36 -0
- package/core/src/types/src/queue.ts +36 -0
- package/core/src/types/src/router.ts +70 -0
- package/core/src/types/src/scheduler.ts +1 -0
- package/core/src/types/src/search-engine.ts +136 -0
- package/core/src/types/src/security.ts +23 -0
- package/core/src/types/src/services.ts +44 -0
- package/core/src/types/src/sms.ts +5 -0
- package/core/src/types/src/ssg.ts +3 -0
- package/core/src/types/src/stacks.ts +236 -0
- package/core/src/types/src/storage.ts +13 -0
- package/core/src/types/src/team.ts +8 -0
- package/core/src/types/src/ui.ts +197 -0
- package/core/src/types/src/utils.ts +47 -0
- package/core/src/ui/README.md +66 -0
- package/core/src/ui/build.ts +8 -0
- package/core/src/ui/dist/components.js +68 -0
- package/core/src/ui/dist/index.js +69 -0
- package/core/src/ui/package.json +91 -0
- package/core/src/ui/src/components/autocomplete.ts +0 -0
- package/core/src/ui/src/components/disclosure.ts +5 -0
- package/core/src/ui/src/components/menu.ts +1 -0
- package/core/src/ui/src/components/modal.ts +6 -0
- package/core/src/ui/src/components/popover.ts +1 -0
- package/core/src/ui/src/components/radio-group.ts +5 -0
- package/core/src/ui/src/components/select.ts +6 -0
- package/core/src/ui/src/components/tabs.ts +1 -0
- package/core/src/ui/src/components/toggle.ts +1 -0
- package/core/src/ui/src/components/transition.ts +1 -0
- package/core/src/ui/src/components.ts +10 -0
- package/core/src/ui/src/index.ts +15 -0
- package/core/src/ui/src/uno.config.ts +64 -0
- package/core/src/ui/tests/example.test.ts +5 -0
- package/core/src/utils/build.ts +8 -0
- package/core/src/utils/dist/index.js +1276 -0
- package/core/src/utils/package.json +110 -0
- package/core/src/utils/scripts/export-size.ts +94 -0
- package/core/src/utils/src/base.ts +12 -0
- package/core/src/utils/src/clean.ts +17 -0
- package/core/src/utils/src/config.ts +25 -0
- package/core/src/utils/src/delete.ts +1 -0
- package/core/src/utils/src/equal.ts +27 -0
- package/core/src/utils/src/export-size.ts +1 -0
- package/core/src/utils/src/git.ts +11 -0
- package/core/src/utils/src/glob.ts +1 -0
- package/core/src/utils/src/hash.ts +17 -0
- package/core/src/utils/src/helpers.ts +187 -0
- package/core/src/utils/src/index.ts +22 -0
- package/core/src/utils/src/macroable.ts +1 -0
- package/core/src/utils/src/math.ts +30 -0
- package/core/src/utils/src/promise.ts +117 -0
- package/core/src/utils/src/regex.ts +2 -0
- package/core/src/utils/src/sleep.ts +60 -0
- package/core/src/utils/src/throttle.ts +44 -0
- package/core/src/utils/src/vendors.ts +258 -0
- package/core/src/utils/src/versions.ts +6 -0
- package/core/src/utils/tests/example.test.ts +5 -0
- package/core/src/validation/README.md +53 -0
- package/core/src/validation/build.ts +5 -0
- package/core/src/validation/dist/index.js +187 -0
- package/core/src/validation/package.json +63 -0
- package/core/src/validation/src/is.ts +111 -0
- package/core/src/validation/src/rules.ts +126 -0
- package/core/src/validation/src/types/index.ts +7 -0
- package/core/src/validation/src/types/money.ts +17 -0
- package/core/src/validation/src/validate.ts +33 -0
- package/core/src/validation/tests/example.test.ts +5 -0
- package/core/src/vite/README.md +59 -0
- package/core/src/vite/build.ts +9 -0
- package/core/src/vite/dist/index.js +649 -0
- package/core/src/vite/package.json +122 -0
- package/core/src/vite/src/api.ts +19 -0
- package/core/src/vite/src/components.ts +79 -0
- package/core/src/vite/src/desktop.ts +59 -0
- package/core/src/vite/src/example-vue.ts +27 -0
- package/core/src/vite/src/example-wc.ts +27 -0
- package/core/src/vite/src/functions.ts +55 -0
- package/core/src/vite/src/index.ts +20 -0
- package/core/src/vite/src/plugin/auto-imports.ts +40 -0
- package/core/src/vite/src/plugin/components.ts +18 -0
- package/core/src/vite/src/plugin/css-engine.ts +16 -0
- package/core/src/vite/src/plugin/devtools.ts +1 -0
- package/core/src/vite/src/plugin/docs.ts +16 -0
- package/core/src/vite/src/plugin/fonts.ts +6 -0
- package/core/src/vite/src/plugin/i18n.ts +13 -0
- package/core/src/vite/src/plugin/index.ts +21 -0
- package/core/src/vite/src/plugin/inspect.ts +6 -0
- package/core/src/vite/src/plugin/layouts.ts +21 -0
- package/core/src/vite/src/plugin/markdown.ts +26 -0
- package/core/src/vite/src/plugin/pages.ts +34 -0
- package/core/src/vite/src/plugin/presets.ts +17 -0
- package/core/src/vite/src/plugin/pwa.ts +33 -0
- package/core/src/vite/src/plugin/router.ts +15 -0
- package/core/src/vite/src/plugin/stacks.ts +149 -0
- package/core/src/vite/src/plugin/ui-engine.ts +19 -0
- package/core/src/vite/src/stacks.ts +12 -0
- package/core/src/vite/src/views.ts +86 -0
- package/core/src/vite/src/web-components.ts +67 -0
- package/core/src/vite/tests/example.test.ts +5 -0
- package/core/src/vite-plugin-vue-layouts/README.md +59 -0
- package/core/src/vite-plugin-vue-layouts/build.ts +8 -0
- package/core/src/vite-plugin-vue-layouts/client.d.ts +5 -0
- package/core/src/vite-plugin-vue-layouts/dist/index.js +271 -0
- package/core/src/vite-plugin-vue-layouts/package.json +64 -0
- package/core/src/vite-plugin-vue-layouts/src/RouteLayout.ts +26 -0
- package/core/src/vite-plugin-vue-layouts/src/clientSide.ts +99 -0
- package/core/src/vite-plugin-vue-layouts/src/files.ts +24 -0
- package/core/src/vite-plugin-vue-layouts/src/importCode.ts +32 -0
- package/core/src/vite-plugin-vue-layouts/src/index.ts +150 -0
- package/core/src/vite-plugin-vue-layouts/src/types.ts +53 -0
- package/core/src/vite-plugin-vue-layouts/src/utils.ts +15 -0
- package/core/src/vite-plugin-vue-layouts/tests/example.test.ts +5 -0
- package/core/src/whois/README.md +55 -0
- package/core/src/whois/build.ts +8 -0
- package/core/src/whois/dist/index.js +601 -0
- package/core/src/whois/package.json +60 -0
- package/core/src/whois/src/index.ts +497 -0
- package/core/src/whois/src/parameters.ts +4 -0
- package/core/src/whois/src/servers.ts +318 -0
- package/core/src/whois/src/test.ts +5 -0
- package/core/src/whois/tests/example.test.ts +5 -0
- package/core/src/x-ray/README.md +55 -0
- package/core/src/x-ray/package.json +53 -0
- package/core/src/x-ray/src/client.ts +14 -0
- package/core/src/x-ray/src/desktop/api/nitro.config.ts +19 -0
- package/core/src/x-ray/src/desktop/api/storage/index.ts +7 -0
- package/core/src/x-ray/src/desktop/app.stx +377 -0
- package/core/src/x-ray/src/desktop/functions/http.ts +26 -0
- package/core/src/x-ray/src/desktop/main.ts +14 -0
- package/core/src/x-ray/src/desktop/plugins/unified/unified-styles.scss +0 -0
- package/core/src/x-ray/src/desktop/styles/app.scss +0 -0
- package/core/src/x-ray/src/http.ts +26 -0
- package/core/src/x-ray/src/index.ts +42 -0
- package/core/src/x-ray/tests/example.test.ts +5 -0
- package/core/tsconfig.json +73 -0
- package/core/web-types.json +67 -0
- package/ide/dictionary.txt +306 -0
- package/ide/jetbrains/.idea/jsLinters/eslint.xml +1 -1
- package/ide/jetbrains/.idea/stacks.iml +56 -56
- package/ide/jetbrains/options/nodejs.xml +3 -3
- package/ide/vscode/.vscode/settings.json +55 -51
- package/ide/vscode/LICENSE.md +1 -1
- package/ide/vscode/README.md +1 -2
- package/ide/vscode/package.json +10 -9
- package/package.json +477 -201
- package/stubs/.gitkeep +0 -0
- package/stubs/TODO.md +18 -0
- package/vcs/github/CODE_OF_CONDUCT.md +1 -1
- package/vcs/github/CONTRIBUTING.md +6 -8
- package/vcs/github/EXPLANATIONS.md +2 -2
- package/vcs/github/ISSUE_TEMPLATE/bug_report.yml +1 -14
- package/vcs/github/ISSUE_TEMPLATE/config.yml +1 -1
- package/vcs/github/SECURITY.md +1 -1
- package/vcs/github/workflows/README.md +1 -1
- package/vcs/github/workflows/ci.yml +26 -47
- package/vcs/github/workflows/export-size.yml +5 -14
- package/vcs/github/workflows/labeler.yml +13 -0
- package/vcs/github/workflows/release.yml +21 -21
- package/.gitignore +0 -18
- package/README.md +0 -416
- package/api/nitro.config.ts +0 -17
- package/api/package.json +0 -43
- package/api/routes/index.ts +0 -1
- package/art/logo-dark.svg +0 -11
- package/art/logo.svg +0 -11
- package/auto-imports.d.ts +0 -2572
- package/components.d.ts +0 -19
- package/core/actions/README.md +0 -58
- package/core/actions/build.config.ts +0 -187
- package/core/actions/package.json +0 -276
- package/core/actions/src/add.ts +0 -32
- package/core/actions/src/build/component-libs.ts +0 -5
- package/core/actions/src/build/core.ts +0 -6
- package/core/actions/src/build/stacks.ts +0 -9
- package/core/actions/src/build.ts +0 -93
- package/core/actions/src/bump.ts +0 -7
- package/core/actions/src/changelog.ts +0 -7
- package/core/actions/src/clean.ts +0 -12
- package/core/actions/src/commit.ts +0 -19
- package/core/actions/src/copy-types.ts +0 -22
- package/core/actions/src/deploy/domains.ts +0 -8
- package/core/actions/src/deploy.ts +0 -8
- package/core/actions/src/dev/components.ts +0 -5
- package/core/actions/src/dev/docs.ts +0 -5
- package/core/actions/src/dev/index.ts +0 -25
- package/core/actions/src/examples.ts +0 -48
- package/core/actions/src/fresh.ts +0 -7
- package/core/actions/src/generate/component-meta.ts +0 -15
- package/core/actions/src/generate/ide-helpers.ts +0 -20
- package/core/actions/src/generate/index.ts +0 -134
- package/core/actions/src/generate/lib-entries.ts +0 -17
- package/core/actions/src/generate/settings.ts +0 -4
- package/core/actions/src/generate/vscode-custom-data.ts +0 -16
- package/core/actions/src/generate/vue-compat.ts +0 -10
- package/core/actions/src/helpers/component-meta.ts +0 -93
- package/core/actions/src/helpers/index.ts +0 -6
- package/core/actions/src/helpers/lib-entries.ts +0 -138
- package/core/actions/src/helpers/package-json.ts +0 -96
- package/core/actions/src/helpers/utils.ts +0 -76
- package/core/actions/src/helpers/vscode-custom-data.ts +0 -28
- package/core/actions/src/helpers/vue-compat.ts +0 -17
- package/core/actions/src/index.ts +0 -1
- package/core/actions/src/key-generate.ts +0 -10
- package/core/actions/src/lint/fix.ts +0 -5
- package/core/actions/src/lint/index.ts +0 -17
- package/core/actions/src/make.ts +0 -328
- package/core/actions/src/migrate.ts +0 -3
- package/core/actions/src/preinstall.ts +0 -27
- package/core/actions/src/prepublish.ts +0 -16
- package/core/actions/src/release.ts +0 -15
- package/core/actions/src/seed.ts +0 -3
- package/core/actions/src/test/coverage.ts +0 -5
- package/core/actions/src/test/feature.ts +0 -5
- package/core/actions/src/test/ui.ts +0 -5
- package/core/actions/src/test/unit.ts +0 -5
- package/core/actions/src/test.ts +0 -5
- package/core/actions/src/tinker.ts +0 -10
- package/core/actions/src/typecheck.ts +0 -5
- package/core/actions/src/types.ts +0 -23
- package/core/actions/src/upgrade/framework.ts +0 -29
- package/core/actions/src/upgrade/index.ts +0 -25
- package/core/actions/src/upgrade/node.ts +0 -4
- package/core/actions/src/upgrade/package-manager.ts +0 -4
- package/core/actions/src/upgrade.ts +0 -75
- package/core/actions/tests/example.test.ts +0 -7
- package/core/ai/README.md +0 -62
- package/core/ai/build.config.ts +0 -13
- package/core/ai/package.json +0 -54
- package/core/ai/src/drivers/openai.ts +0 -1
- package/core/ai/tests/example.test.ts +0 -7
- package/core/alias/README.md +0 -62
- package/core/alias/build.config.ts +0 -13
- package/core/alias/package.json +0 -51
- package/core/alias/src/index.ts +0 -108
- package/core/alias/tests/example.test.ts +0 -7
- package/core/analytics/README.md +0 -62
- package/core/analytics/build.config.ts +0 -13
- package/core/analytics/package.json +0 -64
- package/core/analytics/src/drivers/fathom.ts +0 -1
- package/core/analytics/tests/example.test.ts +0 -7
- package/core/arrays/README.md +0 -59
- package/core/arrays/build.config.ts +0 -12
- package/core/arrays/package.json +0 -60
- package/core/arrays/src/contains.ts +0 -23
- package/core/arrays/src/helpers.ts +0 -206
- package/core/arrays/src/index.ts +0 -4
- package/core/arrays/src/macro.ts +0 -135
- package/core/arrays/src/math.ts +0 -19
- package/core/arrays/tests/example.test.ts +0 -7
- package/core/auth/README.md +0 -59
- package/core/auth/build.config.ts +0 -12
- package/core/auth/package.json +0 -48
- package/core/auth/tests/example.test.ts +0 -7
- package/core/buddy/README.md +0 -416
- package/core/buddy/art/social.png +0 -0
- package/core/buddy/build.config.ts +0 -14
- package/core/buddy/package.json +0 -128
- package/core/buddy/src/cli.ts +0 -65
- package/core/buddy/src/commands/add.ts +0 -62
- package/core/buddy/src/commands/build.ts +0 -149
- package/core/buddy/src/commands/changelog.ts +0 -31
- package/core/buddy/src/commands/clean.ts +0 -29
- package/core/buddy/src/commands/commit.ts +0 -18
- package/core/buddy/src/commands/create.ts +0 -126
- package/core/buddy/src/commands/deploy.ts +0 -29
- package/core/buddy/src/commands/dev.ts +0 -142
- package/core/buddy/src/commands/example.ts +0 -59
- package/core/buddy/src/commands/fresh.ts +0 -29
- package/core/buddy/src/commands/generate.ts +0 -118
- package/core/buddy/src/commands/index.ts +0 -27
- package/core/buddy/src/commands/inspire.ts +0 -24
- package/core/buddy/src/commands/key.ts +0 -28
- package/core/buddy/src/commands/lint.ts +0 -45
- package/core/buddy/src/commands/make.ts +0 -257
- package/core/buddy/src/commands/migrate.ts +0 -31
- package/core/buddy/src/commands/onboarding.ts +0 -22
- package/core/buddy/src/commands/preinstall.ts +0 -18
- package/core/buddy/src/commands/prepublish.ts +0 -19
- package/core/buddy/src/commands/release.ts +0 -28
- package/core/buddy/src/commands/seed.ts +0 -31
- package/core/buddy/src/commands/setting.ts +0 -26
- package/core/buddy/src/commands/setup.ts +0 -26
- package/core/buddy/src/commands/test.ts +0 -118
- package/core/buddy/src/commands/tinker.ts +0 -29
- package/core/buddy/src/commands/types.ts +0 -26
- package/core/buddy/src/commands/upgrade.ts +0 -134
- package/core/buddy/src/commands/version.ts +0 -28
- package/core/build/README.md +0 -59
- package/core/build/build.config.ts +0 -27
- package/core/build/package.json +0 -77
- package/core/build/src/desktop.ts +0 -152
- package/core/build/src/example-vue.ts +0 -25
- package/core/build/src/example-wc.ts +0 -25
- package/core/build/src/functions.ts +0 -54
- package/core/build/src/index.ts +0 -7
- package/core/build/src/stacks.ts +0 -200
- package/core/build/src/views.ts +0 -50
- package/core/build/src/vue-components.ts +0 -137
- package/core/build/src/web-components.ts +0 -62
- package/core/build/tests/example.test.ts +0 -7
- package/core/build/web-types.ts +0 -14
- package/core/cache/README.md +0 -59
- package/core/cache/build.config.ts +0 -15
- package/core/cache/package.json +0 -77
- package/core/cache/src/drivers/memcached.ts +0 -21
- package/core/cache/src/drivers/redis.ts +0 -44
- package/core/cache/src/drivers/upstash.ts +0 -2
- package/core/cache/src/index.ts +0 -4
- package/core/cache/tests/DynamoDB.test.ts +0 -135
- package/core/cache/tests/Memcached.test.ts +0 -52
- package/core/cache/tests/Redis.test.ts +0 -82
- package/core/cache/vite.config.ts +0 -7
- package/core/chat/README.md +0 -83
- package/core/chat/build.config.ts +0 -13
- package/core/chat/package.json +0 -60
- package/core/chat/tests/example.test.ts +0 -7
- package/core/cli/README.md +0 -129
- package/core/cli/build.config.ts +0 -12
- package/core/cli/package.json +0 -71
- package/core/cli/src/actions/install.ts +0 -40
- package/core/cli/src/command.ts +0 -2
- package/core/cli/src/console.ts +0 -78
- package/core/cli/src/helpers.ts +0 -74
- package/core/cli/src/index.ts +0 -10
- package/core/cli/src/parse.ts +0 -99
- package/core/cli/src/run.ts +0 -100
- package/core/cli/src/utilities.ts +0 -1
- package/core/cli/tests/example.test.ts +0 -7
- package/core/cloud/README.md +0 -59
- package/core/cloud/build.config.ts +0 -12
- package/core/cloud/netlify.toml +0 -18
- package/core/cloud/package.json +0 -66
- package/core/cloud/src/aws/index.ts +0 -9
- package/core/cloud/src/aws/logger.ts +0 -8
- package/core/cloud/src/aws/metrics.ts +0 -8
- package/core/cloud/src/aws/stack.ts +0 -12
- package/core/cloud/src/aws/tracer.ts +0 -3
- package/core/cloud/src/index.ts +0 -1
- package/core/cloud/src/runtime/nodejs/bootstrap.ts +0 -16
- package/core/cloud/src/runtime/nodejs/build.sh +0 -1
- package/core/cloud/tests/example.test.ts +0 -7
- package/core/collections/README.md +0 -71
- package/core/collections/build.config.ts +0 -11
- package/core/collections/package.json +0 -55
- package/core/collections/tests/example.test.ts +0 -7
- package/core/config/README.md +0 -71
- package/core/config/build.config.ts +0 -46
- package/core/config/package.json +0 -54
- package/core/config/src/defaults.ts +0 -17
- package/core/config/src/index.ts +0 -4
- package/core/config/src/stacks.ts +0 -48
- package/core/config/tests/example.test.ts +0 -7
- package/core/database/README.md +0 -59
- package/core/database/build.config.ts +0 -16
- package/core/database/package.json +0 -64
- package/core/database/src/factory/index.ts +0 -24
- package/core/database/src/index.ts +0 -3
- package/core/database/src/migrations/index.ts +0 -148
- package/core/database/src/seeder/index.ts +0 -79
- package/core/database/tests/example.test.ts +0 -7
- package/core/datetime/README.md +0 -66
- package/core/datetime/build.config.ts +0 -12
- package/core/datetime/package.json +0 -54
- package/core/datetime/tests/example.test.ts +0 -7
- package/core/desktop/README.md +0 -49
- package/core/desktop/build.config.ts +0 -16
- package/core/desktop/package.json +0 -68
- package/core/desktop/src/drivers/tauri/index.ts +0 -1
- package/core/desktop/src/index.ts +0 -1
- package/core/desktop/tests/example.test.ts +0 -7
- package/core/development/README.md +0 -27
- package/core/development/build.config.ts +0 -25
- package/core/development/package.json +0 -68
- package/core/development/src/index.ts +0 -4
- package/core/development/tests/example.test.ts +0 -7
- package/core/dns/README.md +0 -56
- package/core/dns/build.config.ts +0 -18
- package/core/dns/package.json +0 -55
- package/core/dns/src/index.ts +0 -18
- package/core/dns/tests/example.test.ts +0 -7
- package/core/docs/README.md +0 -59
- package/core/docs/build.config.ts +0 -15
- package/core/docs/package.json +0 -54
- package/core/docs/src/index.ts +0 -5
- package/core/docs/tests/example.test.ts +0 -7
- package/core/email/README.md +0 -155
- package/core/email/build.config.ts +0 -12
- package/core/email/package.json +0 -82
- package/core/email/src/actions/send.ts +0 -38
- package/core/email/src/drivers/emailjs.ts +0 -23
- package/core/email/src/drivers/mailgun.ts +0 -21
- package/core/email/src/drivers/mailjet.ts +0 -21
- package/core/email/src/drivers/mandrill.ts +0 -19
- package/core/email/src/drivers/netcore.ts +0 -19
- package/core/email/src/drivers/nodemailer.ts +0 -23
- package/core/email/src/drivers/postmark.ts +0 -19
- package/core/email/src/drivers/sendgrid.ts +0 -20
- package/core/email/src/drivers/ses.ts +0 -22
- package/core/email/src/index.ts +0 -9
- package/core/email/tests/example.test.ts +0 -7
- package/core/error-handling/README.md +0 -131
- package/core/error-handling/build.config.ts +0 -19
- package/core/error-handling/package.json +0 -58
- package/core/error-handling/src/index.ts +0 -58
- package/core/error-handling/tests/example.test.ts +0 -7
- package/core/events/README.md +0 -76
- package/core/events/build.config.ts +0 -12
- package/core/events/package.json +0 -53
- package/core/events/src/index.ts +0 -38
- package/core/events/tests/example.test.ts +0 -7
- package/core/faker/README.md +0 -62
- package/core/faker/build.config.ts +0 -17
- package/core/faker/package.json +0 -55
- package/core/faker/tests/example.test.ts +0 -7
- package/core/git/README.md +0 -69
- package/core/git/build.config.ts +0 -17
- package/core/git/package.json +0 -58
- package/core/git/src/index.ts +0 -1
- package/core/git/tests/example.test.ts +0 -7
- package/core/health/README.md +0 -56
- package/core/health/build.config.ts +0 -17
- package/core/health/package.json +0 -53
- package/core/health/src/drivers/ohdear.ts +0 -1
- package/core/health/src/index.ts +0 -1
- package/core/health/src/notifications/index.ts +0 -1
- package/core/health/tests/example.test.ts +0 -7
- package/core/lint/README.md +0 -73
- package/core/lint/build.config.ts +0 -17
- package/core/lint/package.json +0 -58
- package/core/lint/tests/example.test.ts +0 -7
- package/core/logging/README.md +0 -58
- package/core/logging/build.config.ts +0 -26
- package/core/logging/package.json +0 -61
- package/core/logging/src/index.ts +0 -11
- package/core/logging/tests/example.test.ts +0 -7
- package/core/modules/README.md +0 -51
- package/core/modules/build.config.ts +0 -18
- package/core/modules/package.json +0 -61
- package/core/modules/src/i18n.ts +0 -23
- package/core/modules/src/nprogress.ts +0 -14
- package/core/modules/src/pwa.ts +0 -12
- package/core/modules/tests/example.test.ts +0 -7
- package/core/notifications/README.md +0 -272
- package/core/notifications/build.config.ts +0 -16
- package/core/notifications/package.json +0 -93
- package/core/notifications/src/index.ts +0 -51
- package/core/notifications/src/tailwind.config.ts +0 -39
- package/core/notifications/src/utils/config.ts +0 -5
- package/core/notifications/tests/chat/Slack.test.ts +0 -35
- package/core/notifications/tests/email/Mailgun.test.ts +0 -41
- package/core/notifications/tests/email/Sendgrid.test.ts +0 -41
- package/core/notifications/tests/sms/Twilio.test.ts +0 -38
- package/core/objects/README.md +0 -71
- package/core/objects/build.config.ts +0 -19
- package/core/objects/package.json +0 -55
- package/core/objects/src/index.ts +0 -147
- package/core/objects/tests/example.test.ts +0 -7
- package/core/orm/README.md +0 -48
- package/core/orm/build.config.ts +0 -12
- package/core/orm/package.json +0 -52
- package/core/orm/src/index.ts +0 -43
- package/core/orm/tests/example.test.ts +0 -7
- package/core/pages/build.config.ts +0 -12
- package/core/pages/package.json +0 -57
- package/core/pages/src/index.ts +0 -39
- package/core/pages/tests/example.test.ts +0 -7
- package/core/path/README.md +0 -64
- package/core/path/build.config.ts +0 -16
- package/core/path/package.json +0 -55
- package/core/path/src/index.ts +0 -486
- package/core/path/tests/example.test.ts +0 -7
- package/core/payments/README.md +0 -64
- package/core/payments/build.config.ts +0 -12
- package/core/payments/package.json +0 -58
- package/core/payments/src/drivers/stripe.ts +0 -137
- package/core/payments/tests/example.test.ts +0 -7
- package/core/push/README.md +0 -71
- package/core/push/build.config.ts +0 -12
- package/core/push/package.json +0 -56
- package/core/push/src/drivers/expo.ts +0 -21
- package/core/push/src/drivers/fcm.ts +0 -21
- package/core/push/src/index.ts +0 -2
- package/core/push/tests/example.test.ts +0 -7
- package/core/query-builder/README.md +0 -48
- package/core/query-builder/build.config.ts +0 -12
- package/core/query-builder/package.json +0 -56
- package/core/query-builder/src/kysely.ts +0 -37
- package/core/query-builder/tests/example.test.ts +0 -7
- package/core/queue/README.md +0 -59
- package/core/queue/build.config.ts +0 -12
- package/core/queue/package.json +0 -53
- package/core/queue/src/index.ts +0 -1
- package/core/queue/tests/example.test.ts +0 -7
- package/core/realtime/README.md +0 -59
- package/core/realtime/build.config.ts +0 -12
- package/core/realtime/package.json +0 -50
- package/core/realtime/src/drivers/index.ts +0 -3
- package/core/realtime/src/index.ts +0 -5
- package/core/realtime/tests/example.test.ts +0 -7
- package/core/repl/README.md +0 -53
- package/core/repl/build.config.ts +0 -12
- package/core/repl/package.json +0 -56
- package/core/repl/tests/example.test.ts +0 -7
- package/core/router/README.md +0 -59
- package/core/router/build.config.ts +0 -17
- package/core/router/package.json +0 -53
- package/core/router/src/index.ts +0 -120
- package/core/router/tests/example.test.ts +0 -7
- package/core/scheduler/README.md +0 -137
- package/core/scheduler/build.config.ts +0 -12
- package/core/scheduler/package.json +0 -51
- package/core/scheduler/src/index.ts +0 -120
- package/core/scheduler/tests/example.test.ts +0 -7
- package/core/search-engine/README.md +0 -66
- package/core/search-engine/build.config.ts +0 -20
- package/core/search-engine/package.json +0 -65
- package/core/search-engine/src/drivers/meilisearch.ts +0 -39
- package/core/search-engine/src/helpers.ts +0 -134
- package/core/search-engine/src/index.ts +0 -67
- package/core/search-engine/tests/example.test.ts +0 -7
- package/core/security/README.md +0 -66
- package/core/security/build.config.ts +0 -21
- package/core/security/package.json +0 -57
- package/core/security/src/crypt.ts +0 -23
- package/core/security/src/hash.ts +0 -52
- package/core/security/src/key.ts +0 -11
- package/core/security/tests/example.test.ts +0 -7
- package/core/server/README.md +0 -51
- package/core/server/build.config.ts +0 -11
- package/core/server/package.json +0 -59
- package/core/server/src/config.ts +0 -7
- package/core/server/src/index.ts +0 -2
- package/core/server/src/nitro.config.ts +0 -7
- package/core/server/tests/example.test.ts +0 -7
- package/core/signals/README.md +0 -105
- package/core/signals/build.config.ts +0 -12
- package/core/signals/package.json +0 -55
- package/core/signals/tests/example.test.ts +0 -7
- package/core/slug/README.md +0 -59
- package/core/slug/build.config.ts +0 -12
- package/core/slug/package.json +0 -55
- package/core/slug/src/index.ts +0 -57
- package/core/slug/tests/example.test.ts +0 -7
- package/core/sms/README.md +0 -137
- package/core/sms/build.config.ts +0 -17
- package/core/sms/package.json +0 -72
- package/core/sms/src/index.ts +0 -8
- package/core/sms/tests/example.test.ts +0 -7
- package/core/storage/README.md +0 -74
- package/core/storage/build.config.ts +0 -12
- package/core/storage/package.json +0 -61
- package/core/storage/src/index.ts +0 -208
- package/core/storage/tests/example.test.ts +0 -7
- package/core/strings/README.md +0 -77
- package/core/strings/build.config.ts +0 -12
- package/core/strings/package.json +0 -78
- package/core/strings/src/case.ts +0 -27
- package/core/strings/src/index.ts +0 -4
- package/core/strings/src/macro.ts +0 -139
- package/core/strings/src/pluralize.ts +0 -5
- package/core/strings/src/utils.ts +0 -120
- package/core/strings/tests/example.test.ts +0 -7
- package/core/testing/README.md +0 -59
- package/core/testing/build.config.ts +0 -17
- package/core/testing/package.json +0 -62
- package/core/testing/src/index.ts +0 -3
- package/core/tinker/README.md +0 -61
- package/core/tinker/build.config.ts +0 -13
- package/core/tinker/package.json +0 -58
- package/core/tinker/src/index.ts +0 -1
- package/core/tinker/src/tinker.ts +0 -2
- package/core/types/README.md +0 -59
- package/core/types/build.config.ts +0 -37
- package/core/types/package.json +0 -88
- package/core/types/src/app.ts +0 -119
- package/core/types/src/cache.ts +0 -78
- package/core/types/src/cdn.ts +0 -15
- package/core/types/src/cli.ts +0 -303
- package/core/types/src/components.ts +0 -64
- package/core/types/src/cron-jobs.ts +0 -38
- package/core/types/src/database.ts +0 -49
- package/core/types/src/debug.ts +0 -6
- package/core/types/src/deploy.ts +0 -8
- package/core/types/src/dns.ts +0 -49
- package/core/types/src/docs.ts +0 -5
- package/core/types/src/errors.ts +0 -24
- package/core/types/src/events.ts +0 -30
- package/core/types/src/fs.ts +0 -30
- package/core/types/src/git.ts +0 -131
- package/core/types/src/hashing.ts +0 -122
- package/core/types/src/index.ts +0 -40
- package/core/types/src/layout.ts +0 -8
- package/core/types/src/library.ts +0 -146
- package/core/types/src/model.ts +0 -59
- package/core/types/src/money.ts +0 -3
- package/core/types/src/notifications.ts +0 -205
- package/core/types/src/payments.ts +0 -63
- package/core/types/src/queue.ts +0 -34
- package/core/types/src/router.ts +0 -52
- package/core/types/src/search-engine.ts +0 -166
- package/core/types/src/ssg.ts +0 -3
- package/core/types/src/stacks.ts +0 -192
- package/core/types/src/ui.ts +0 -193
- package/core/types/src/utils.ts +0 -43
- package/core/ui/README.md +0 -66
- package/core/ui/build.config.ts +0 -13
- package/core/ui/package.json +0 -69
- package/core/ui/src/index.ts +0 -20
- package/core/ui/src/unocss.config.ts +0 -47
- package/core/ui/src/unocss.ts +0 -45
- package/core/ui/tests/example.test.ts +0 -7
- package/core/utils/build.config.ts +0 -36
- package/core/utils/package.json +0 -102
- package/core/utils/src/base.ts +0 -25
- package/core/utils/src/config.ts +0 -135
- package/core/utils/src/delete.ts +0 -1
- package/core/utils/src/equal.ts +0 -27
- package/core/utils/src/helpers.ts +0 -169
- package/core/utils/src/index.ts +0 -15
- package/core/utils/src/math.ts +0 -30
- package/core/utils/src/promise.ts +0 -124
- package/core/utils/src/throttle.ts +0 -42
- package/core/utils/src/vendors.ts +0 -222
- package/core/utils/src/versions.ts +0 -1
- package/core/utils/tests/example.test.ts +0 -7
- package/core/validation/README.md +0 -53
- package/core/validation/build.config.ts +0 -21
- package/core/validation/package.json +0 -56
- package/core/validation/src/is.ts +0 -110
- package/core/validation/src/rules.ts +0 -126
- package/core/validation/src/types/env.ts +0 -147
- package/core/validation/src/types/index.ts +0 -2
- package/core/validation/src/types/money.ts +0 -17
- package/core/validation/src/validate.ts +0 -18
- package/core/validation/tests/example.test.ts +0 -7
- package/core/vite-plugin/README.md +0 -59
- package/core/vite-plugin/build.config.ts +0 -17
- package/core/vite-plugin/package.json +0 -51
- package/core/vite-plugin/src/index.ts +0 -23
- package/core/vite-plugin/tests/example.test.ts +0 -7
- package/dictionary.txt +0 -228
- package/docs/.vitepress/config.ts +0 -9
- package/docs/README.md +0 -13
- package/docs/package.json +0 -47
- package/env.d.ts +0 -7
- package/ide/jetbrains/.idea/.gitignore +0 -5
- package/libs/components/vue/index.html +0 -13
- package/libs/components/vue/main.ts +0 -19
- package/libs/components/vue/package.json +0 -41
- package/libs/components/web/package.json +0 -41
- package/libs/examples/vue/App.vue +0 -12
- package/libs/examples/vue/favicon.png +0 -0
- package/libs/examples/vue/index.html +0 -20
- package/libs/examples/web/favicon.png +0 -0
- package/libs/examples/web/index.html +0 -13
- package/libs/functions/package.json +0 -41
- package/reset.d.ts +0 -1
- package/scripts/ensure.sh +0 -33
- package/scripts/publish.sh +0 -18
- package/scripts/setup.sh +0 -540
- package/shims.d.ts +0 -17
- package/simple-git-hooks.cjs +0 -5
- package/stacks/dashboard/README.md +0 -74
- package/stacks/dashboard/build.config.ts +0 -15
- package/stacks/dashboard/package.json +0 -47
- package/stacks/dashboard/tests/example.test.ts +0 -7
- package/stacks/tables/README.md +0 -109
- package/stacks/tables/build.config.ts +0 -14
- package/stacks/tables/examples/vue/App.vue +0 -12
- package/stacks/tables/examples/vue/favicon.png +0 -0
- package/stacks/tables/examples/vue/index.html +0 -20
- package/stacks/tables/examples/web/favicon.png +0 -0
- package/stacks/tables/examples/web/index.html +0 -13
- package/stacks/tables/package.json +0 -57
- package/stacks/tables/src/App.vue +0 -23
- package/stacks/tables/src/cli/index.ts +0 -1
- package/stacks/tables/src/components/README.md +0 -110
- package/stacks/tables/src/components/Table.vue +0 -342
- package/stacks/tables/src/components/TableBody.vue +0 -32
- package/stacks/tables/src/components/TableFilters.vue +0 -704
- package/stacks/tables/src/components/TableHead.vue +0 -60
- package/stacks/tables/src/components/TablePagination.vue +0 -131
- package/stacks/tables/src/components/TableRow.vue +0 -73
- package/stacks/tables/src/components/TableSearch.vue +0 -39
- package/stacks/tables/src/components/Tooltip.vue +0 -10
- package/stacks/tables/src/config/tables.ts +0 -1
- package/stacks/tables/src/main.ts +0 -4
- package/stacks/tables/tests/example.test.ts +0 -7
- package/stacks/tables/vite.config.ts +0 -26
- package/stacks/tinker/package.json +0 -49
- package/stacks/tinker/src/index.ts +0 -1
- package/stacks/x-ray/README.md +0 -55
- package/stacks/x-ray/build.config.ts +0 -15
- package/stacks/x-ray/package.json +0 -56
- package/stacks/x-ray/src/client.ts +0 -14
- package/stacks/x-ray/src/desktop/api/nitro.config.ts +0 -19
- package/stacks/x-ray/src/desktop/api/storage/index.ts +0 -7
- package/stacks/x-ray/src/desktop/app.vue +0 -377
- package/stacks/x-ray/src/desktop/functions/http.ts +0 -26
- package/stacks/x-ray/src/desktop/main.ts +0 -14
- package/stacks/x-ray/src/http.ts +0 -26
- package/stacks/x-ray/src/index.ts +0 -42
- package/stacks/x-ray/tests/example.test.ts +0 -7
- package/stacks.d.ts +0 -22
- package/tsconfig.json +0 -159
- package/views/desktop/.gitignore +0 -24
- package/views/desktop/README.md +0 -73
- package/views/desktop/index.html +0 -13
- package/views/desktop/package.json +0 -29
- package/views/desktop/public/favicon.svg +0 -1
- package/views/desktop/src/.gitignore +0 -3
- package/views/desktop/src/Cargo.lock +0 -3916
- package/views/desktop/src/Cargo.toml +0 -28
- package/views/desktop/src/build.rs +0 -3
- package/views/desktop/src/icons/128x128.png +0 -0
- package/views/desktop/src/icons/128x128@2x.png +0 -0
- package/views/desktop/src/icons/32x32.png +0 -0
- package/views/desktop/src/icons/Square107x107Logo.png +0 -0
- package/views/desktop/src/icons/Square142x142Logo.png +0 -0
- package/views/desktop/src/icons/Square150x150Logo.png +0 -0
- package/views/desktop/src/icons/Square284x284Logo.png +0 -0
- package/views/desktop/src/icons/Square30x30Logo.png +0 -0
- package/views/desktop/src/icons/Square310x310Logo.png +0 -0
- package/views/desktop/src/icons/Square44x44Logo.png +0 -0
- package/views/desktop/src/icons/Square71x71Logo.png +0 -0
- package/views/desktop/src/icons/Square89x89Logo.png +0 -0
- package/views/desktop/src/icons/StoreLogo.png +0 -0
- package/views/desktop/src/icons/icon.icns +0 -0
- package/views/desktop/src/icons/icon.ico +0 -0
- package/views/desktop/src/icons/icon.png +0 -0
- package/views/desktop/src/src/main.rs +0 -10
- package/views/desktop/src/tauri.conf.json +0 -73
- package/views/web/App.vue +0 -26
- package/views/web/index.html +0 -23
- package/views/web/main.ts +0 -26
- package/views/web/public/_headers +0 -3
- package/views/web/public/favicon-dark.svg +0 -3
- package/views/web/public/favicon.svg +0 -3
- package/views/web/public/pwa-192x192.png +0 -0
- package/views/web/public/pwa-512x512.png +0 -0
- package/views/web/public/safari-pinned-tab.svg +0 -41
- package/views/web/styles/main.css +0 -29
- package/views/web/styles/markdown.css +0 -28
- package/vitest.config.ts +0 -31
- package/web-types.json +0 -67
- /package/{custom-elements.json → core/custom-elements.json} +0 -0
- /package/core/{actions → src/actions}/src/upgrade/dependencies.ts +0 -0
- /package/{stacks/dashboard/src/index.ts → core/src/ai/src/chatbots.ts} +0 -0
- /package/{stacks/tables/src/docs/index.md → core/src/ai/src/image-generation.ts} +0 -0
- /package/{stacks/x-ray/src/desktop/plugins/unified/unified-styles.scss → core/src/ai/src/personalization.ts} +0 -0
- /package/{stacks/x-ray/src/desktop/styles/app.scss → core/src/ai/src/search.ts} +0 -0
- /package/core/{auth → src/auth}/src/index.ts +0 -0
- /package/core/{buddy → src/buddy}/src/index.ts +0 -0
- /package/core/{build → src/build}/web-types.config.cjs +0 -0
- /package/core/{cache → src/cache}/src/drivers/dynamodb.ts +0 -0
- /package/core/{chat → src/chat}/src/drivers/discord.ts +0 -0
- /package/core/{chat → src/chat}/src/drivers/slack.ts +0 -0
- /package/core/{chat → src/chat}/src/drivers/teams.ts +0 -0
- /package/core/{chat → src/chat}/src/index.ts +0 -0
- /package/core/{cli → src/cli}/src/actions/index.ts +0 -0
- /package/core/{cli → src/cli}/src/spinner.ts +0 -0
- /package/core/{collections → src/collections}/src/index.ts +0 -0
- /package/core/{datetime → src/datetime}/src/index.ts +0 -0
- /package/core/{email → src/email}/src/tailwind.config.ts +0 -0
- /package/core/{email → src/email}/src/utils/config.ts +0 -0
- /package/core/{email → src/email}/src/utils/template.html +0 -0
- /package/core/{faker → src/faker}/src/index.ts +0 -0
- /package/core/{lint → src/lint}/src/index.ts +0 -0
- /package/core/{notifications → src/notifications}/src/drivers/chat.ts +0 -0
- /package/core/{notifications → src/notifications}/src/drivers/email.ts +0 -0
- /package/core/{notifications → src/notifications}/src/drivers/push.ts +0 -0
- /package/core/{notifications → src/notifications}/src/drivers/sms.ts +0 -0
- /package/core/{notifications → src/notifications}/src/utils/template.html +0 -0
- /package/core/{payments → src/payments}/src/index.ts +0 -0
- /package/core/{query-builder → src/query-builder}/src/index.ts +0 -0
- /package/core/{repl → src/repl}/src/index.ts +0 -0
- /package/core/{security → src/security}/src/index.ts +0 -0
- /package/core/{signals → src/signals}/src/index.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/gupshup.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/nexmo.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/plivo.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/sms77.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/sns.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/telnyx.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/termii.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/twilio.ts +0 -0
- /package/core/{strings → src/strings}/src/is.ts +0 -0
- /package/{stacks → core/src}/tables/index.html +0 -0
- /package/core/{ai/src → src/tables/src/commands}/index.ts +0 -0
- /package/{stacks/tables/src/components/Demo.vue → core/src/tables/src/components/Demo.stx} +0 -0
- /package/{stacks/tables/src/components/TableCellActionItems.vue → core/src/tables/src/components/TableCellActionItems.stx} +0 -0
- /package/{stacks → core/src}/tables/src/functions/README.md +0 -0
- /package/{stacks → core/src}/tables/src/functions/dark.ts +0 -0
- /package/{stacks → core/src}/tables/src/functions/index.ts +0 -0
- /package/{stacks → core/src}/tables/src/functions/table.ts +0 -0
- /package/core/{analytics → src/tinker}/src/index.ts +0 -0
- /package/core/{types → src/types}/src/auto-imports.ts +0 -0
- /package/core/{types → src/types}/src/build.ts +0 -0
- /package/core/{types → src/types}/src/exit-code.ts +0 -0
- /package/core/{types → src/types}/src/i18n.ts +0 -0
- /package/core/{types → src/types}/src/inspect.ts +0 -0
- /package/core/{types → src/types}/src/manifest.ts +0 -0
- /package/core/{types → src/types}/src/pages.ts +0 -0
- /package/core/{types → src/types}/src/promise.ts +0 -0
- /package/core/{types → src/types}/src/pwa.ts +0 -0
- /package/core/{types → src/types}/src/reactivity.ts +0 -0
- /package/core/{types → src/types}/src/tables.ts +0 -0
- /package/core/{utils → src/utils}/src/currency.ts +0 -0
- /package/core/{utils → src/utils}/src/debounce.ts +0 -0
- /package/core/{utils → src/utils}/src/function.ts +0 -0
- /package/core/{utils → src/utils}/src/guards.ts +0 -0
- /package/core/{utils → src/utils}/src/p.ts +0 -0
- /package/core/{validation → src/validation}/src/index.ts +0 -0
- /package/{stacks → core/src}/x-ray/index.html +0 -0
- /package/{stacks → core/src}/x-ray/routes/index.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/api/routes/api/logs.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/api/routes/api/store-logs.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/api/src/types.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/functions/types.ts +0 -0
- /package/{stacks/x-ray/src/desktop/modules/counter/mod.vue → core/src/x-ray/src/desktop/modules/counter/mod.stx} +0 -0
- /package/{stacks/x-ray/src/desktop/modules/fetcher/mod.vue → core/src/x-ray/src/desktop/modules/fetcher/mod.stx} +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/plugins/unified/unified-app.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/services/http.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/ray.config.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/types.ts +0 -0
package/buddy
ADDED
package/core/.env
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
APP_NAME="Danyel Group"
|
|
2
|
+
APP_ENV=development
|
|
3
|
+
APP_KEY=base64:NTksOTksMjUyLDE2MywyMjcsMTI1LDIyLDgwLDIwNCwxMDIsNTUsOTAsNSw2MSwxODksMjAyLDM4LDE2NiwyMjAsNDcsNzgsMTExLDg3LDMsMzcsMTU0LDEzMywxMzIsNTMsNTIsMjksMjM0
|
|
4
|
+
APP_DEBUG=false
|
|
5
|
+
APP_URL=danyelgroup.com
|
|
6
|
+
APP_PORT=3333
|
|
7
|
+
APP_MAINTENANCE=false
|
|
8
|
+
|
|
9
|
+
DB_CONNECTION=sqlite
|
|
10
|
+
DB_HOST=127.0.0.1
|
|
11
|
+
DB_PORT=3306
|
|
12
|
+
DB_DATABASE=stacks
|
|
13
|
+
DB_USERNAME=root
|
|
14
|
+
DB_PASSWORD=
|
|
15
|
+
|
|
16
|
+
AWS_ACCOUNT_ID=575299561803
|
|
17
|
+
AWS_ACCESS_KEY_ID=AKIAYL4UGVFF6OKPPZHZ
|
|
18
|
+
AWS_SECRET_ACCESS_KEY=RAEAtoguBKWQG9Cp48PbxS1uZnt538ya0xbcM8bM
|
|
19
|
+
AWS_DEFAULT_PASSWORD=Verysecret123-
|
|
20
|
+
AWS_REGION=us-east-1
|
|
21
|
+
AWS_PROFILE=danyelgroup.com
|
|
22
|
+
|
|
23
|
+
MAIL_MAILER=smtp
|
|
24
|
+
MAIL_HOST=mailpit
|
|
25
|
+
MAIL_PORT=1025
|
|
26
|
+
MAIL_USERNAME=null
|
|
27
|
+
MAIL_PASSWORD=null
|
|
28
|
+
MAIL_ENCRYPTION=null
|
|
29
|
+
MAIL_FROM_NAME="${APP_NAME}"
|
|
30
|
+
MAIL_FROM_ADDRESS="no-reply@stacksjs.org"
|
|
31
|
+
|
|
32
|
+
SEARCH_ENGINE_DRIVER=meilisearch
|
|
33
|
+
MEILISEARCH_HOST=http://127.0.0.1:7700
|
|
34
|
+
MEILISEARCH_KEY=masterKey
|
|
35
|
+
|
|
36
|
+
# FRONTEND_* variables should not contain any sensitive information
|
|
37
|
+
FRONTEND_APP_ENV="${APP_ENV}"
|
|
38
|
+
FRONTEND_APP_URL="${APP_URL}"
|
package/core/Caddyfile
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
stacksjs.localhost {
|
|
2
|
+
route {
|
|
3
|
+
@libs {
|
|
4
|
+
path /libs/*
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
handle @libs {
|
|
8
|
+
reverse_proxy localhost:3336
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@api {
|
|
12
|
+
path /api/*
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
handle @api {
|
|
16
|
+
reverse_proxy localhost:3999
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
handle {
|
|
20
|
+
reverse_proxy localhost:3333
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
package/core/README.md
ADDED
|
@@ -0,0 +1,415 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
# Rapid App Development
|
|
4
|
+
|
|
5
|
+
[![npm version][npm-version-src]][npm-version-href]
|
|
6
|
+
[![GitHub Actions][github-actions-src]][github-actions-href]
|
|
7
|
+
[](http://commitizen.github.io/cz-cli/)
|
|
8
|
+
[![npm downloads][npm-downloads-src]][npm-downloads-href]
|
|
9
|
+
<!-- [![Codecov][codecov-src]][codecov-href] -->
|
|
10
|
+
|
|
11
|
+
_Beta coming soon._
|
|
12
|
+
|
|
13
|
+
The goal of the framework is to _help you_ create & maintain frontends, backends, and clouds—without having to worry about the boilerplate. Stacks is a rapid application development framework, meeting all your full stack needs.
|
|
14
|
+
|
|
15
|
+
- Web & Desktop applications
|
|
16
|
+
- Serverless & traditional APIs
|
|
17
|
+
- Cloud infrastructure creation & maintenance
|
|
18
|
+
- Interactive CLIs
|
|
19
|
+
- Framework-agnostic component & function libraries
|
|
20
|
+
- Deployment & Release Manager _(CI & CD)_
|
|
21
|
+
|
|
22
|
+
Stacks helps you every step along the way—in beginner & expert-friendly ways, allowing you to focus on the _what_ and _why_ of your project.
|
|
23
|
+
|
|
24
|
+
> “Convention over configuration” is the Stacks mantra. _- Chris_
|
|
25
|
+
|
|
26
|
+
<!--  -->
|
|
27
|
+
|
|
28
|
+
## Features
|
|
29
|
+
|
|
30
|
+
The Stacks framework is a harmony of several “engines” to build any web and/or desktop application, in highly scalable & privacy-friendly ways. It consists of the following engines:
|
|
31
|
+
|
|
32
|
+
### Stacks UI
|
|
33
|
+
|
|
34
|
+
_Develop dynamic UIs with helpers for atomic design, and much more._
|
|
35
|
+
|
|
36
|
+
- 🧩 **Components** _a primitive to develop user interfaces_
|
|
37
|
+
- 🤖 **Functions** _a primitive to develop business logic (and grant your UI superpowers)_
|
|
38
|
+
- 🌐 **Web** _"a routing & templating engine that makes sense" using components—SSG & PWA ready_
|
|
39
|
+
- 🖥️ **Desktop** _automagically build a desktop app out of your web app_
|
|
40
|
+
- 📚 **Library** _auto-builds component & function libraries_
|
|
41
|
+
- ⚡️ Powered by Bun, Nitro, Tauri, UnoCSS, Vite & Vue
|
|
42
|
+
|
|
43
|
+
### Stacks Functions
|
|
44
|
+
|
|
45
|
+
_Develop serverless (or server) functions with countless helpers to build scalable & fast APIs._
|
|
46
|
+
|
|
47
|
+
- 🪄 **AI** _deep AI integration_
|
|
48
|
+
- 🤖 **APIs** _scalability & maintainability built-in_
|
|
49
|
+
- 🏎️ **Cache** _Redis, DynamoDB, Upstash, SingleStore, and more—serverless_
|
|
50
|
+
- ⚙️ **CLIs** _create beautiful CLIs for Linux, Windows, and Mac—without requirements_
|
|
51
|
+
- 📀 **Database** _MySQL, Postgres, PlanetScale, Supabase, Prisma, ..._
|
|
52
|
+
- 👾 **Errors** _native type-safe error handling_
|
|
53
|
+
- 🗓️ **Events** _functional event (front & backend) communication_
|
|
54
|
+
- 📢 **Notifications** _emails, SMSs, direct, and push notifications & webhooks_
|
|
55
|
+
- 🗺️ **ORM** _supercharged, fully-typed models & relations (including automated migrations)_
|
|
56
|
+
- 💳 **Payments** _unified API for one-off & subscription billing methods for Stripe_
|
|
57
|
+
- ⚙️ **Queues** _run any heavy workload in the background_
|
|
58
|
+
- 🛠️ **Query Builder** _powerful, type-safe SQL query builder_
|
|
59
|
+
- 💬 **Realtime** _“everything you need to build dynamic real-time apps”_
|
|
60
|
+
- 🧭 **Router** _smart routing, file-based or Laravel-like_
|
|
61
|
+
- 🔎 **Search Engine** _smart searching, advanced filtering & sorting, pagination, headless UI_
|
|
62
|
+
- 💾 **Storage** _easily create & make use of local & remote storages/file systems_
|
|
63
|
+
- 🧪 **Tinker** _a powerful TypeScript REPL_
|
|
64
|
+
- 🌪️ **Validation** _e2e type-safety (true frontend & backend harmony)_
|
|
65
|
+
- 🎯 **X-Ray** _all you need to debug, log & analyze_
|
|
66
|
+
|
|
67
|
+
### Stacks Cloud
|
|
68
|
+
|
|
69
|
+
_Create your personal or professional Vercel-like cloud, based on MIT-licensed OSS._
|
|
70
|
+
|
|
71
|
+
- ☁️ **Server** _local development server & production-ready servers_
|
|
72
|
+
- ⛅️ **Serverless** _on-demand, auto-scaling, zero maintenance_
|
|
73
|
+
- 🚏 **CDN** _zero-config low-latency CDN, including request life-cycle hooks & optimized request compressions (Brotli & gzip)_
|
|
74
|
+
- 🔀 **Domain** _version-controlled & zero-config domain management (e.g. DNS management)_
|
|
75
|
+
- 📧 **Email** _secure & simplistic <easy-peasy@custom-domains.com> mail_
|
|
76
|
+
- 🔐 **Firewall** _native web application firewall support_
|
|
77
|
+
- 🚜 **Maintenance** _maintain your cloud infrastructure with ease using Buddy & Stacks_
|
|
78
|
+
- 🤖 **Infrastructure as Code** _version-controlled cloud infrastructure_
|
|
79
|
+
|
|
80
|
+
### Stacks CI/CD
|
|
81
|
+
|
|
82
|
+
_Focus on coding, not publishing._
|
|
83
|
+
|
|
84
|
+
- 🚀 **Deployment Manager** _take the sweat out of production deployments (AWS, Vercel, Netlify, and more)_
|
|
85
|
+
- 📫 **Release Manager** _libraries (component & function) auto-published to npm, git helpers, and more_
|
|
86
|
+
|
|
87
|
+
### Stacks DX
|
|
88
|
+
|
|
89
|
+
_Enhanced productivity for developers. No more creating boilerplate._
|
|
90
|
+
|
|
91
|
+
- 💡 **IDE Integration** _auto-completions, inline docs & a powerful VS Code setup_
|
|
92
|
+
- 🪄 **Zero-Config** _yet highly configurable—convention over configuration_
|
|
93
|
+
- 👩🏽🔧 **Linter & Formatter** _auto-configured & built into your IDE_
|
|
94
|
+
- 💪🏼 **Type Strong** _built-in e2e type-safety_
|
|
95
|
+
- ✨ **Git Workflows** _committing with ease_
|
|
96
|
+
- 🚗 **Auto Imports** _your components & functions, including date, string, array, & object helpers_
|
|
97
|
+
- ⏩ **Code Snippets** _say goodbye to the boilerplate—thank you Sarah Drasner_
|
|
98
|
+
- 🔤 **Spell Checker** _be notified once there are typos_
|
|
99
|
+
- 🛠️ **Utilities** _Collections, VueUse, and more_
|
|
100
|
+
- 🧪 **Testing** _unit & e2e tests powered by Bun & Playwright_
|
|
101
|
+
|
|
102
|
+
No matter whether you are a beginner or an expert, the approachable Stacks design allows you to learn at your own pace, using our thorough documentation covering every aspect of the framework. Stacks is extremely beginner & expert-friendly.
|
|
103
|
+
|
|
104
|
+
Develop beautiful, reactive, composable UIs without learning a new set of languages. HTML, CSS, and minimal JavaScript—that's all you need to dive in now! _Or TypeScript ✌🏼_
|
|
105
|
+
|
|
106
|
+
> _A true rapid application development framework for all Full Stack needs. Next-level simplicity & helpful DX._
|
|
107
|
+
|
|
108
|
+
## Get Started
|
|
109
|
+
|
|
110
|
+
It's incredibly easy to get started with this framework. Simply run the following command in your terminal:
|
|
111
|
+
|
|
112
|
+
```bash
|
|
113
|
+
sh <(curl stacksjs.org) my-project
|
|
114
|
+
|
|
115
|
+
# alternatively, if Node.js >= v18.16 is installed already,
|
|
116
|
+
# you may also get started via:
|
|
117
|
+
bunx stacks new my-project
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
## 🤖 Usage
|
|
121
|
+
|
|
122
|
+
The following list includes some of the most common ways to interact with the Stacks API. Meet the toolkit, Buddy:
|
|
123
|
+
|
|
124
|
+
```bash
|
|
125
|
+
buddy install # installs all dependencies
|
|
126
|
+
buddy dev # starts one of the dev servers (components, functions, views, or docs)
|
|
127
|
+
buddy build # follow CLI prompts to select which library (or server) to build
|
|
128
|
+
buddy commit # follow CLI prompts for committing changes
|
|
129
|
+
buddy release # creates the releases for the stack & consequently, publishes them to npm
|
|
130
|
+
buddy upgrade # auto-update all deps & the Stacks framework
|
|
131
|
+
|
|
132
|
+
buddy make:component HelloWorld # scaffolds a component
|
|
133
|
+
buddy make:function HelloWorld # scaffolds a function
|
|
134
|
+
buddy make:view hello-world # scaffolds a page (https://my-project.test/hello-world)
|
|
135
|
+
|
|
136
|
+
buddy --help
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
<details>
|
|
140
|
+
<summary>View the complete Buddy Toolkit</summary>
|
|
141
|
+
|
|
142
|
+
```bash
|
|
143
|
+
buddy --version # get the Stacks version
|
|
144
|
+
buddy --help # view help menu
|
|
145
|
+
# please note: you may suffix any command with the
|
|
146
|
+
# `command --help` flag to review the help menu
|
|
147
|
+
|
|
148
|
+
buddy install # installs dependencies
|
|
149
|
+
buddy add # adds a stack or dependency
|
|
150
|
+
buddy fresh # fresh reinstall of all deps
|
|
151
|
+
buddy clean # removes all deps
|
|
152
|
+
|
|
153
|
+
buddy upgrade # auto-upgrades deps, Stacks, and Bun
|
|
154
|
+
buddy upgrade:dependencies # auto-upgrades deps & the Stacks framework
|
|
155
|
+
buddy upgrade:framework # auto-upgrades deps & the Stacks framework
|
|
156
|
+
buddy upgrade:search-engine # auto-upgrades configured search engine
|
|
157
|
+
buddy upgrade:bun # upgrades to latest project-defined Bun version
|
|
158
|
+
buddy upgrade:all # upgrades Node, package manager, framework, dependencies
|
|
159
|
+
|
|
160
|
+
# if you need any more info on any command listed here, you may suffix
|
|
161
|
+
# any of them via the "help option", i.e. `buddy ... --help`
|
|
162
|
+
|
|
163
|
+
buddy dev # starts one of the dev servers (components, functions, views, or docs)
|
|
164
|
+
buddy dev:components # starts local playground dev server
|
|
165
|
+
buddy dev:desktop # starts the Desktop playground
|
|
166
|
+
buddy dev:views # starts local playground views dev server
|
|
167
|
+
buddy dev:functions # stubs local the functions
|
|
168
|
+
buddy dev:docs # starts local docs dev server
|
|
169
|
+
buddy development # `buddy dev` alias
|
|
170
|
+
|
|
171
|
+
# for Laravel folks, `serve` may ring more familiar than the `dev` name. Hence, we aliased it:
|
|
172
|
+
buddy serve
|
|
173
|
+
buddy serve:components
|
|
174
|
+
buddy serve:desktop
|
|
175
|
+
buddy serve:views
|
|
176
|
+
buddy serve:functions
|
|
177
|
+
buddy serve:docs
|
|
178
|
+
|
|
179
|
+
# building for production (e.g. AWS, Google Cloud, npm, Vercel, Netlify, et al.)
|
|
180
|
+
buddy build # select a specific build (follow CLI prompts)
|
|
181
|
+
buddy build:views # builds SSG views
|
|
182
|
+
buddy build:desktop # builds Desktop application
|
|
183
|
+
buddy build:library # builds any or all libraries
|
|
184
|
+
buddy build:functions # builds function library
|
|
185
|
+
buddy build:components # builds Vue component library & Web Component library
|
|
186
|
+
buddy build:web-components # builds framework agnostic Web Component library (i.e. Custom Elements)
|
|
187
|
+
buddy build:vue-components # builds Vue 2 & 3-ready Component library
|
|
188
|
+
buddy build:all # builds all your code
|
|
189
|
+
|
|
190
|
+
# `buddy build` aliases
|
|
191
|
+
buddy prod
|
|
192
|
+
buddy prod:components
|
|
193
|
+
buddy prod:desktop
|
|
194
|
+
buddy prod:library
|
|
195
|
+
buddy prod:views
|
|
196
|
+
buddy prod:functions
|
|
197
|
+
buddy prod:vue-components
|
|
198
|
+
buddy prod:web-components
|
|
199
|
+
buddy prod:all
|
|
200
|
+
buddy production # `buddy prod` alias
|
|
201
|
+
|
|
202
|
+
# sets your application key
|
|
203
|
+
buddy key:generate
|
|
204
|
+
|
|
205
|
+
buddy make:component HelloWorld # bootstraps a HelloWorld component
|
|
206
|
+
buddy make:function hello-world # bootstraps a hello-world function
|
|
207
|
+
buddy make:view hello-world # bootstraps a hello-word page
|
|
208
|
+
buddy make:model Car # bootstraps a Car model
|
|
209
|
+
buddy make:database cars # creates a cars database
|
|
210
|
+
buddy make:migration create_cars_table # creates a cars migration file
|
|
211
|
+
buddy make:factory cars # creates a Car factory file
|
|
212
|
+
buddy make:seed cars # creates a Car seed file
|
|
213
|
+
buddy make:table cars # boostraps a cars data table
|
|
214
|
+
buddy make:notification welcome-email # bootstraps a welcome-email notification
|
|
215
|
+
buddy make:lang de # bootstraps a lang/de.yml language file
|
|
216
|
+
buddy make:stack my-project # shares logic with `bunx stacks new my-project`
|
|
217
|
+
|
|
218
|
+
buddy lint # runs linter
|
|
219
|
+
buddy lint:fix # runs linter and fixes issues
|
|
220
|
+
|
|
221
|
+
buddy commit # follow CLI prompts for committing staged changes
|
|
222
|
+
buddy release # creates the releases for the stack & triggers the Release Action (workflow)
|
|
223
|
+
buddy changelog # generates CHANGELOG.md
|
|
224
|
+
|
|
225
|
+
# when deploying your app/s to a remote server or cloud provider
|
|
226
|
+
buddy deploy # select a specific deployment (follow CLI prompts)
|
|
227
|
+
buddy deploy:docs # deploys docs to AWS (or other configured provider)
|
|
228
|
+
buddy deploy:functions # deploys functions to AWS (or other configured provider)
|
|
229
|
+
buddy deploy:views # deploys views to AWS (or other configured provider)
|
|
230
|
+
buddy deploy:all # deploys all your code
|
|
231
|
+
|
|
232
|
+
# select the example to run (follow CLI prompts)
|
|
233
|
+
buddy example # prompts you to select which example to run
|
|
234
|
+
buddy example:vue # runs the Vue example
|
|
235
|
+
buddy example:web-components # runs the Web Component example
|
|
236
|
+
|
|
237
|
+
# you likely won't need to run these commands as they are auto-triggered, but they are available
|
|
238
|
+
buddy generate # prompts you to select which generator to run
|
|
239
|
+
buddy generate:entries # generates entry files for components, functions, & views
|
|
240
|
+
buddy generate:vue-compat # generates Vue 2 compatibility layer
|
|
241
|
+
buddy generate:web-types # generates Web Component types
|
|
242
|
+
buddy generate:vscode-custom-data # generates VSCode custom data
|
|
243
|
+
buddy generate:ide-helpers # generates IDE helpers
|
|
244
|
+
buddy generate:component-meta # generates component meta
|
|
245
|
+
buddy generate:all # runs all generators
|
|
246
|
+
|
|
247
|
+
# generates your application key
|
|
248
|
+
buddy key:generate # generates your application key
|
|
249
|
+
|
|
250
|
+
# generate your TypeScript declarations
|
|
251
|
+
buddy types:generate # generates types for your components, functions, & views
|
|
252
|
+
buddy types:fix # auto-fixes types for your components, functions, & views
|
|
253
|
+
|
|
254
|
+
# test your stack
|
|
255
|
+
buddy test # runs test suite (unit & e2e)
|
|
256
|
+
buddy test:coverage # runs test coverage
|
|
257
|
+
buddy test:types # runs typecheck
|
|
258
|
+
|
|
259
|
+
# the CLI may be triggered in any
|
|
260
|
+
# of the following syntax:
|
|
261
|
+
stx fresh
|
|
262
|
+
buddy fresh
|
|
263
|
+
bud fresh
|
|
264
|
+
buddy fresh
|
|
265
|
+
```
|
|
266
|
+
|
|
267
|
+
</details>
|
|
268
|
+
|
|
269
|
+
Read more here about the Stacks CLI in the documentation.
|
|
270
|
+
|
|
271
|
+
## 📚 Utilizing the Built Libraries
|
|
272
|
+
|
|
273
|
+
Because Stacks optimizes the development of easily reusable & composable component & function libraries, the primary intention is to always _keep it simple, yet configurable._
|
|
274
|
+
|
|
275
|
+
By default, Stacks realizes whether your Stack includes components, functions, and/or views. Based on that determination, Stacks builds your outputs.
|
|
276
|
+
|
|
277
|
+
The UI libraries that automatically get built are: a Web Component (Custom Elements) & Vue Component library.
|
|
278
|
+
|
|
279
|
+
<details>
|
|
280
|
+
<summary>Web Component usage</summary>
|
|
281
|
+
|
|
282
|
+
```bash
|
|
283
|
+
npm install my-awesome-library
|
|
284
|
+
```
|
|
285
|
+
|
|
286
|
+
After you installed your Stacks generated library, you can use a "Custom Element" (Web Component) in the following way:
|
|
287
|
+
|
|
288
|
+
```html
|
|
289
|
+
<html>
|
|
290
|
+
<body>
|
|
291
|
+
<hello-world name="Jane Doe"></hello-world>
|
|
292
|
+
<script src="my-awesome-library.js"></script>
|
|
293
|
+
</body>
|
|
294
|
+
</html>
|
|
295
|
+
```
|
|
296
|
+
|
|
297
|
+
</details>
|
|
298
|
+
|
|
299
|
+
<details>
|
|
300
|
+
<summary>Vue 2 & 3 usage</summary>
|
|
301
|
+
|
|
302
|
+
```bash
|
|
303
|
+
npm install my-awesome-library
|
|
304
|
+
```
|
|
305
|
+
|
|
306
|
+
After you installed your Stacks generated library, you can use your Vue Components in the following way:
|
|
307
|
+
|
|
308
|
+
```vue
|
|
309
|
+
<script setup lang="ts">
|
|
310
|
+
import HelloWorld from 'my-awesome-library'
|
|
311
|
+
</script>
|
|
312
|
+
|
|
313
|
+
<template>
|
|
314
|
+
<HelloWorld name="J Doe" />
|
|
315
|
+
</template>
|
|
316
|
+
```
|
|
317
|
+
|
|
318
|
+
</details>
|
|
319
|
+
|
|
320
|
+
_A function library may also be automatically generated._
|
|
321
|
+
|
|
322
|
+
<details>
|
|
323
|
+
<summary>Functions usage</summary>
|
|
324
|
+
|
|
325
|
+
```bash
|
|
326
|
+
npm install hello-world-library
|
|
327
|
+
```
|
|
328
|
+
|
|
329
|
+
After you installed your Stacks generated library, you can use your functions in the following way:
|
|
330
|
+
|
|
331
|
+
```ts
|
|
332
|
+
import { count, increment } from 'hello-world-fx'
|
|
333
|
+
|
|
334
|
+
console.log('count is', count)
|
|
335
|
+
increment()
|
|
336
|
+
console.log('increased count is', count)
|
|
337
|
+
```
|
|
338
|
+
|
|
339
|
+
</details>
|
|
340
|
+
|
|
341
|
+
You may view this framework as an incredibly “useful set of frames” to assist in efficiently bootstrapping, designing, and managing component & function libraries—using industry best practices, to reach one of the broadest user bases possible.
|
|
342
|
+
|
|
343
|
+
## 🎯 Roadmap
|
|
344
|
+
|
|
345
|
+
Part of the Stacks ecosystem are the following first-party supported stacks:
|
|
346
|
+
|
|
347
|
+
- [Table](https://github.com/stacksjs/stacks/tree/main/storage/framework/core/stacks/tables) (Data tables with ease)
|
|
348
|
+
- [Calendar](https://github.com/stacksjs/calendar) (Add to Calendar utilities—iCal, Google, and more)
|
|
349
|
+
- [Command Palette](https://github.com/stacksjs/command-palette) (`⌘ + k` for the web)
|
|
350
|
+
- [Date Picker](https://github.com/stacksjs/date-picker) (Beautiful, modern date picker)
|
|
351
|
+
- [File Manager](https://github.com/stacksjs/file-manager) (Build your own file manager—like Dropbox or Google Drive)
|
|
352
|
+
- [Image](https://github.com/stacksjs/image) (Modern image experience)
|
|
353
|
+
- [Video](https://github.com/stacksjs/video) (Modern video experience)
|
|
354
|
+
- [Audio](https://github.com/stacksjs/audio) (Modern audio experience)
|
|
355
|
+
- [Identity](https://github.com/stacksjs/identity) (Identity providers & wallet integrations)
|
|
356
|
+
- [Digital Ownership](https://github.com/stacksjs/ownership) (Public ownership protocol integrations)
|
|
357
|
+
- [Payments](https://github.com/stacksjs/payments) (Unified payment APIs)
|
|
358
|
+
- [Governance](https://github.com/stacksjs/governance) (Powerful toolkit for democratic governance)
|
|
359
|
+
|
|
360
|
+
View our detailed roadmap/s [here](https://github.com/stacksjs/stacks/projects?query=is%3Aopen), for more information. Additionally, you may find interesting stacks, information & examples over at [Awesome Stacks](https://github.com/stacksjs/awesome-stacks).
|
|
361
|
+
|
|
362
|
+
## 🧪 Testing
|
|
363
|
+
|
|
364
|
+
```bash
|
|
365
|
+
bun test
|
|
366
|
+
```
|
|
367
|
+
|
|
368
|
+
## 📈 Changelog
|
|
369
|
+
|
|
370
|
+
Please see our [releases](https://github.com/stacksjs/stacks/releases) page for more information on what has changed recently.
|
|
371
|
+
|
|
372
|
+
## 🚜 Contributing
|
|
373
|
+
|
|
374
|
+
Please see the [Contributing Guide](https://github.com/stacksjs/contributing) for details.
|
|
375
|
+
|
|
376
|
+
## 🏝 Community
|
|
377
|
+
|
|
378
|
+
For help, discussion about best practices, or any other conversation that would benefit from being searchable:
|
|
379
|
+
|
|
380
|
+
[Discussions on GitHub](https://github.com/stacksjs/stacks/discussions)
|
|
381
|
+
|
|
382
|
+
For casual chit-chat with others using this package:
|
|
383
|
+
|
|
384
|
+
[Join the Stacks Discord Server](https://discord.gg/stacksjs)
|
|
385
|
+
|
|
386
|
+
## 📄 Sponsors
|
|
387
|
+
|
|
388
|
+
Once we launch a usable Stacks version, we hope people will start enjoying it! Coming soon.
|
|
389
|
+
|
|
390
|
+
## 🙏🏼 Credits
|
|
391
|
+
|
|
392
|
+
Many thanks to the following core technologies & people who have contributed to this package:
|
|
393
|
+
|
|
394
|
+
- [Chris Breuer](https://github.com/chrisbbreuer)
|
|
395
|
+
- [Dan Scanlon](https://twitter.com/danscan) _many thanks for donating the `stacks` name on npm_
|
|
396
|
+
- [All Contributors](../../contributors)
|
|
397
|
+
|
|
398
|
+
## 📄 License
|
|
399
|
+
|
|
400
|
+
The MIT License (MIT). Please see [LICENSE](LICENSE.md) for more information.
|
|
401
|
+
|
|
402
|
+
Made with 💙
|
|
403
|
+
|
|
404
|
+
<!-- Badges -->
|
|
405
|
+
[npm-version-src]: https://img.shields.io/npm/v/stacks?style=flat-square
|
|
406
|
+
[npm-version-href]: https://npmjs.com/package/stacks
|
|
407
|
+
|
|
408
|
+
[npm-downloads-src]: https://img.shields.io/npm/dm/stacks?style=flat-square
|
|
409
|
+
[npm-downloads-href]: https://npmjs.com/package/stacks
|
|
410
|
+
|
|
411
|
+
[github-actions-src]: https://img.shields.io/github/actions/workflow/status/stacksjs/stacks/ci.yml?style=flat-square&branch=main
|
|
412
|
+
[github-actions-href]: https://github.com/stacksjs/stacks/actions?query=workflow%3Aci
|
|
413
|
+
|
|
414
|
+
<!-- [codecov-src]: https://img.shields.io/codecov/c/gh/stacksjs/stacks/main?style=flat-square
|
|
415
|
+
[codecov-href]: https://codecov.io/gh/stacksjs/buddy -->
|
package/core/buddy
ADDED
package/core/env.ts
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
// This file is auto-generated by Stacks. Do not edit this file manually.
|
|
2
|
+
// If you want to change the environment variables, please edit the .env file.
|
|
3
|
+
//
|
|
4
|
+
// For more information, please visit: https://stacksjs.org/docs
|
|
5
|
+
|
|
6
|
+
export const envKeys = [
|
|
7
|
+
'APP_NAME',
|
|
8
|
+
'APP_ENV',
|
|
9
|
+
'APP_KEY',
|
|
10
|
+
'APP_URL',
|
|
11
|
+
'APP_PORT',
|
|
12
|
+
'APP_MAINTENANCE',
|
|
13
|
+
'API_PREFIX',
|
|
14
|
+
'DOCS_PREFIX',
|
|
15
|
+
'DEBUG',
|
|
16
|
+
'DB_CONNECTION',
|
|
17
|
+
'DB_HOST',
|
|
18
|
+
'DB_PORT',
|
|
19
|
+
'DB_DATABASE',
|
|
20
|
+
'DB_USERNAME',
|
|
21
|
+
'DB_PASSWORD',
|
|
22
|
+
'AWS_ACCOUNT_ID',
|
|
23
|
+
'AWS_ACCESS_KEY_ID',
|
|
24
|
+
'AWS_SECRET_ACCESS_KEY',
|
|
25
|
+
'AWS_DEFAULT_REGION',
|
|
26
|
+
'AWS_DEFAULT_PASSWORD',
|
|
27
|
+
'MAIL_MAILER',
|
|
28
|
+
'MAIL_HOST',
|
|
29
|
+
'MAIL_PORT',
|
|
30
|
+
'MAIL_USERNAME',
|
|
31
|
+
'MAIL_PASSWORD',
|
|
32
|
+
'MAIL_ENCRYPTION',
|
|
33
|
+
'MAIL_FROM_NAME',
|
|
34
|
+
'MAIL_FROM_ADDRESS',
|
|
35
|
+
'SEARCH_ENGINE_DRIVER',
|
|
36
|
+
'MEILISEARCH_HOST',
|
|
37
|
+
'MEILISEARCH_KEY',
|
|
38
|
+
'FRONTEND_APP_ENV',
|
|
39
|
+
'FRONTEND_APP_URL',
|
|
40
|
+
] as const
|
|
41
|
+
|
|
42
|
+
export type EnvKey = typeof envKeys[number]
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import process from 'node:process'
|
|
2
|
+
import type { PlaywrightTestConfig } from '@playwright/test'
|
|
3
|
+
import { devices } from '@playwright/test'
|
|
4
|
+
import { projectPath, testsPath } from '@stacksjs/path'
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Read environment variables from file.
|
|
8
|
+
* https://github.com/motdotla/dotenv
|
|
9
|
+
*/
|
|
10
|
+
// require('dotenv').config();
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* See https://playwright.dev/docs/test-configuration.
|
|
14
|
+
*/
|
|
15
|
+
const config: PlaywrightTestConfig = {
|
|
16
|
+
testDir: projectPath('tests/feature'),
|
|
17
|
+
/* Maximum time one test can run for. */
|
|
18
|
+
timeout: 30 * 1000,
|
|
19
|
+
expect: {
|
|
20
|
+
/**
|
|
21
|
+
* Maximum time expect() should wait for the condition to be met.
|
|
22
|
+
* For example in `await expect(locator).toHaveText();`
|
|
23
|
+
*/
|
|
24
|
+
timeout: 5000,
|
|
25
|
+
},
|
|
26
|
+
/* Run tests in files in parallel */
|
|
27
|
+
fullyParallel: true,
|
|
28
|
+
/* Fail the build on CI if you accidentally left test.only in the source code. */
|
|
29
|
+
forbidOnly: !!process.env.CI,
|
|
30
|
+
/* Retry on CI only */
|
|
31
|
+
retries: process.env.CI ? 2 : 0,
|
|
32
|
+
/* Opt out of parallel tests on CI. */
|
|
33
|
+
workers: process.env.CI ? 1 : undefined,
|
|
34
|
+
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
|
|
35
|
+
reporter: [['html', { outputFolder: testsPath('feature') }]],
|
|
36
|
+
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
|
|
37
|
+
use: {
|
|
38
|
+
/* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */
|
|
39
|
+
actionTimeout: 0,
|
|
40
|
+
/* Base URL to use in actions like `await page.goto('/')`. */
|
|
41
|
+
// baseURL: 'http://localhost:3000',
|
|
42
|
+
|
|
43
|
+
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
|
|
44
|
+
trace: 'on-first-retry',
|
|
45
|
+
},
|
|
46
|
+
|
|
47
|
+
/* Configure projects for major browsers */
|
|
48
|
+
projects: [
|
|
49
|
+
{
|
|
50
|
+
name: 'chromium',
|
|
51
|
+
use: {
|
|
52
|
+
...devices['Desktop Chrome'],
|
|
53
|
+
},
|
|
54
|
+
},
|
|
55
|
+
|
|
56
|
+
{
|
|
57
|
+
name: 'firefox',
|
|
58
|
+
use: {
|
|
59
|
+
...devices['Desktop Firefox'],
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
|
|
63
|
+
{
|
|
64
|
+
name: 'webkit',
|
|
65
|
+
use: {
|
|
66
|
+
...devices['Desktop Safari'],
|
|
67
|
+
},
|
|
68
|
+
},
|
|
69
|
+
|
|
70
|
+
/* Test against mobile viewports. */
|
|
71
|
+
// {
|
|
72
|
+
// name: 'Mobile Chrome',
|
|
73
|
+
// use: {
|
|
74
|
+
// ...devices['Pixel 5'],
|
|
75
|
+
// },
|
|
76
|
+
// },
|
|
77
|
+
// {
|
|
78
|
+
// name: 'Mobile Safari',
|
|
79
|
+
// use: {
|
|
80
|
+
// ...devices['iPhone 12'],
|
|
81
|
+
// },
|
|
82
|
+
// },
|
|
83
|
+
|
|
84
|
+
/* Test against branded browsers. */
|
|
85
|
+
// {
|
|
86
|
+
// name: 'Microsoft Edge',
|
|
87
|
+
// use: {
|
|
88
|
+
// channel: 'msedge',
|
|
89
|
+
// },
|
|
90
|
+
// },
|
|
91
|
+
// {
|
|
92
|
+
// name: 'Google Chrome',
|
|
93
|
+
// use: {
|
|
94
|
+
// channel: 'chrome',
|
|
95
|
+
// },
|
|
96
|
+
// },
|
|
97
|
+
],
|
|
98
|
+
|
|
99
|
+
/* Folder for test artifacts such as screenshots, videos, traces, etc. */
|
|
100
|
+
// outputDir: 'test-results/',
|
|
101
|
+
|
|
102
|
+
/* Run your local dev server before starting the tests */
|
|
103
|
+
// webServer: {
|
|
104
|
+
// command: 'npm run start',
|
|
105
|
+
// port: 3000,
|
|
106
|
+
// },
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export default config
|