stacks 0.53.1 → 0.56.23
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/.gitignore +4 -2
- package/README.md +71 -74
- package/api/package.json +3 -2
- package/art/logo-dark.svg +11 -0
- package/art/logo.svg +11 -0
- package/auto-imports.d.ts +1182 -841
- package/components.d.ts +7 -9
- package/core/actions/build.config.ts +181 -9
- package/core/actions/package.json +5 -8
- package/core/actions/src/build/component-libs.ts +2 -12
- package/core/actions/src/dev/index.ts +6 -5
- package/core/actions/src/generate/index.ts +2 -2
- package/core/actions/src/generate/settings.ts +1 -1
- package/core/actions/src/helpers/lib-entries.ts +43 -35
- package/core/actions/src/helpers/utils.ts +7 -9
- package/core/actions/src/lint/index.ts +14 -2
- package/core/actions/src/make.ts +7 -4
- package/core/actions/src/migrate.ts +2 -2
- package/core/actions/src/prepublish.ts +2 -2
- package/core/actions/src/release.ts +1 -1
- package/core/actions/src/seed.ts +1 -1
- package/core/actions/src/upgrade/framework.ts +1 -1
- package/core/actions/src/upgrade.ts +3 -3
- package/core/ai/build.config.ts +5 -7
- package/core/ai/package.json +5 -9
- package/core/alias/build.config.ts +5 -7
- package/core/alias/package.json +5 -4
- package/core/alias/src/index.ts +6 -7
- package/core/analytics/build.config.ts +5 -7
- package/core/analytics/package.json +6 -6
- package/core/arrays/build.config.ts +4 -7
- package/core/arrays/package.json +8 -4
- package/core/arrays/src/contains.ts +23 -0
- package/core/arrays/src/helpers.ts +206 -0
- package/core/arrays/src/index.ts +4 -226
- package/core/arrays/src/macro.ts +135 -0
- package/core/arrays/src/math.ts +19 -0
- package/core/auth/build.config.ts +4 -7
- package/core/auth/package.json +3 -3
- package/core/buddy/README.md +73 -76
- package/core/buddy/build.config.ts +1 -3
- package/core/buddy/package.json +5 -4
- package/core/buddy/src/cli.ts +10 -18
- package/core/buddy/src/commands/add.ts +2 -2
- package/core/buddy/src/commands/build.ts +23 -16
- package/core/buddy/src/commands/create.ts +2 -2
- package/core/buddy/src/commands/dev.ts +31 -30
- package/core/buddy/src/commands/example.ts +8 -14
- package/core/buddy/src/commands/generate.ts +16 -14
- package/core/buddy/src/commands/key.ts +1 -1
- package/core/buddy/src/commands/lint.ts +4 -4
- package/core/buddy/src/commands/make.ts +20 -15
- package/core/buddy/src/commands/setting.ts +2 -2
- package/core/buddy/src/commands/upgrade.ts +18 -22
- package/core/buddy/src/commands/version.ts +1 -1
- package/core/build/build.config.ts +19 -7
- package/core/build/package.json +11 -10
- package/core/build/src/desktop.ts +2 -2
- package/core/build/src/example-vue.ts +5 -4
- package/core/build/src/example-wc.ts +5 -4
- package/core/build/src/functions.ts +9 -11
- package/core/build/src/index.ts +7 -7
- package/core/build/src/stacks.ts +31 -50
- package/core/build/src/{pages.ts → views.ts} +13 -14
- package/core/build/src/vue-components.ts +73 -12
- package/core/build/src/web-components.ts +12 -11
- package/core/build/web-types.ts +3 -3
- package/core/cache/build.config.ts +7 -7
- package/core/cache/package.json +17 -17
- package/core/cache/tests/DynamoDB.test.ts +19 -33
- package/core/chat/build.config.ts +5 -7
- package/core/chat/package.json +8 -8
- package/core/cli/build.config.ts +3 -5
- package/core/cli/package.json +2 -3
- package/core/cli/src/console.ts +75 -2
- package/core/cli/src/helpers.ts +1 -1
- package/core/cli/src/parse.ts +2 -2
- package/core/cli/src/run.ts +5 -6
- package/core/cloud/build.config.ts +4 -7
- package/core/cloud/package.json +17 -3
- package/core/cloud/src/aws/index.ts +9 -0
- package/core/cloud/src/aws/logger.ts +8 -0
- package/core/cloud/src/aws/metrics.ts +8 -0
- package/core/cloud/src/aws/stack.ts +12 -0
- package/core/cloud/src/aws/tracer.ts +3 -0
- package/core/cloud/src/index.ts +1 -1
- package/core/cloud/src/runtime/nodejs/bootstrap.ts +16 -0
- package/core/cloud/src/runtime/nodejs/build.sh +1 -0
- package/core/collections/build.config.ts +3 -7
- package/core/collections/package.json +3 -3
- package/core/config/build.config.ts +33 -36
- package/core/config/package.json +4 -4
- package/core/config/src/defaults.ts +0 -3
- package/core/config/src/stacks.ts +10 -11
- package/core/database/build.config.ts +6 -7
- package/core/database/package.json +3 -3
- package/core/database/src/factory/index.ts +1 -1
- package/core/database/src/migrations/index.ts +1 -1
- package/core/datetime/build.config.ts +3 -5
- package/core/datetime/package.json +3 -3
- package/core/datetime/src/index.ts +2 -1
- package/core/desktop/build.config.ts +2 -1
- package/core/desktop/package.json +6 -6
- package/core/development/build.config.ts +18 -8
- package/core/development/package.json +11 -5
- package/core/development/src/index.ts +2 -0
- package/core/{domains → dns}/README.md +2 -2
- package/core/dns/build.config.ts +18 -0
- package/core/{domains → dns}/package.json +12 -9
- package/core/dns/src/index.ts +18 -0
- package/core/docs/build.config.ts +1 -2
- package/core/docs/package.json +4 -4
- package/core/email/build.config.ts +3 -5
- package/core/email/package.json +15 -15
- package/core/email/src/drivers/emailjs.ts +1 -1
- package/core/email/src/drivers/mailgun.ts +1 -1
- package/core/email/src/drivers/mailjet.ts +2 -2
- package/core/email/src/drivers/mandrill.ts +1 -1
- package/core/email/src/drivers/netcore.ts +1 -1
- package/core/email/src/drivers/nodemailer.ts +1 -1
- package/core/email/src/drivers/postmark.ts +1 -1
- package/core/email/src/drivers/sendgrid.ts +1 -1
- package/core/error-handling/build.config.ts +10 -5
- package/core/error-handling/package.json +5 -4
- package/core/error-handling/src/index.ts +45 -0
- package/core/events/README.md +1 -1
- package/core/events/build.config.ts +3 -6
- package/core/events/package.json +2 -4
- package/core/events/src/index.ts +8 -1
- package/core/faker/build.config.ts +3 -1
- package/core/faker/package.json +4 -4
- package/core/git/build.config.ts +3 -1
- package/core/git/package.json +4 -4
- package/core/health/build.config.ts +3 -1
- package/core/health/package.json +3 -3
- package/core/lint/build.config.ts +3 -1
- package/core/lint/package.json +7 -7
- package/core/logging/build.config.ts +15 -4
- package/core/logging/package.json +7 -9
- package/core/modules/build.config.ts +10 -7
- package/core/modules/package.json +2 -3
- package/core/notifications/README.md +1 -1
- package/core/notifications/build.config.ts +6 -4
- package/core/notifications/package.json +25 -25
- package/core/notifications/src/tailwind.config.ts +1 -1
- package/core/notifications/tests/email/Mailgun.test.ts +4 -4
- package/core/notifications/tests/email/Sendgrid.test.ts +2 -2
- package/core/objects/build.config.ts +11 -7
- package/core/objects/package.json +5 -4
- package/core/orm/build.config.ts +3 -6
- package/core/orm/package.json +3 -3
- package/core/pages/build.config.ts +4 -7
- package/core/pages/package.json +3 -3
- package/core/pages/src/index.ts +2 -2
- package/core/path/build.config.ts +5 -4
- package/core/path/package.json +3 -5
- package/core/path/src/index.ts +84 -65
- package/core/payments/build.config.ts +4 -7
- package/core/payments/package.json +5 -5
- package/core/push/build.config.ts +4 -7
- package/core/push/package.json +5 -5
- package/core/query-builder/build.config.ts +4 -7
- package/core/query-builder/package.json +7 -7
- package/core/queue/build.config.ts +4 -7
- package/core/queue/package.json +3 -3
- package/core/realtime/build.config.ts +4 -7
- package/core/realtime/package.json +3 -3
- package/core/realtime/src/index.ts +3 -1
- package/core/repl/README.md +53 -0
- package/core/repl/build.config.ts +12 -0
- package/core/repl/package.json +56 -0
- package/core/repl/src/index.ts +1 -0
- package/core/repl/tests/example.test.ts +7 -0
- package/core/router/build.config.ts +9 -7
- package/core/router/package.json +4 -4
- package/core/router/src/index.ts +2 -0
- package/core/scheduler/build.config.ts +4 -7
- package/core/scheduler/package.json +4 -4
- package/core/search-engine/build.config.ts +13 -7
- package/core/search-engine/package.json +4 -4
- package/core/search-engine/src/index.ts +2 -2
- package/core/security/build.config.ts +13 -7
- package/core/security/package.json +4 -3
- package/core/security/src/crypt.ts +11 -2
- package/core/server/build.config.ts +3 -7
- package/core/server/package.json +4 -5
- package/core/signals/README.md +2 -2
- package/core/signals/build.config.ts +4 -7
- package/core/signals/package.json +4 -4
- package/core/signals/src/index.ts +1 -1
- package/core/slug/build.config.ts +4 -7
- package/core/slug/package.json +3 -3
- package/core/slug/src/index.ts +2 -1
- package/core/sms/build.config.ts +3 -1
- package/core/sms/package.json +13 -13
- package/core/storage/build.config.ts +5 -8
- package/core/storage/package.json +4 -5
- package/core/storage/src/index.ts +2 -22
- package/core/strings/build.config.ts +3 -6
- package/core/strings/package.json +9 -3
- package/core/strings/src/case.ts +12 -0
- package/core/strings/src/index.ts +2 -1
- package/core/strings/src/is.ts +170 -0
- package/core/strings/src/macro.ts +139 -0
- package/core/strings/src/utils.ts +10 -12
- package/core/testing/build.config.ts +3 -1
- package/core/testing/package.json +8 -8
- package/core/tinker/build.config.ts +13 -0
- package/core/tinker/package.json +19 -6
- package/core/tinker/src/index.ts +1 -0
- package/core/tinker/{tinker.js → src/tinker.ts} +1 -1
- package/core/types/build.config.ts +30 -8
- package/core/types/package.json +26 -19
- package/core/types/src/app.ts +4 -4
- package/core/types/src/cli.ts +36 -34
- package/core/types/src/cron-jobs.ts +25 -4
- package/core/types/src/database.ts +12 -3
- package/core/types/src/errors.ts +19 -1
- package/core/types/src/events.ts +13 -5
- package/core/types/src/git.ts +1 -1
- package/core/types/src/index.ts +2 -1
- package/core/types/src/library.ts +0 -7
- package/core/types/src/model.ts +21 -7
- package/core/types/src/money.ts +3 -0
- package/core/types/src/notifications.ts +9 -7
- package/core/types/src/queue.ts +34 -0
- package/core/types/src/search-engine.ts +3 -3
- package/core/types/src/stacks.ts +1 -12
- package/core/ui/build.config.ts +5 -7
- package/core/ui/package.json +7 -7
- package/core/utils/build.config.ts +29 -8
- package/core/utils/package.json +15 -15
- package/core/utils/src/config.ts +88 -49
- package/core/utils/src/currency.ts +3 -0
- package/core/utils/src/delete.ts +1 -3
- package/core/utils/src/helpers.ts +11 -5
- package/core/validation/build.config.ts +14 -8
- package/core/validation/package.json +8 -6
- package/core/validation/src/index.ts +2 -0
- package/core/validation/src/is.ts +27 -174
- package/core/validation/src/rules.ts +126 -0
- package/core/validation/src/types/env.ts +147 -0
- package/core/validation/src/types/index.ts +2 -0
- package/core/validation/src/types/money.ts +17 -0
- package/core/validation/src/validate.ts +14 -25
- package/core/vite-plugin/README.md +59 -0
- package/core/vite-plugin/build.config.ts +17 -0
- package/core/vite-plugin/package.json +51 -0
- package/core/vite-plugin/src/index.ts +23 -0
- package/core/vite-plugin/tests/example.test.ts +7 -0
- package/dictionary.txt +228 -0
- package/docs/package.json +3 -2
- package/env.d.ts +7 -0
- package/ide/jetbrains/.fleet/settings.json +4 -0
- package/ide/jetbrains/.idea/.gitignore +5 -0
- package/ide/jetbrains/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/ide/jetbrains/.idea/jsLibraryMappings.xml +6 -0
- package/ide/jetbrains/.idea/jsLinters/eslint.xml +7 -0
- package/ide/jetbrains/.idea/modules.xml +8 -0
- package/ide/jetbrains/.idea/stacks.iml +69 -0
- package/ide/jetbrains/.idea/vcs.xml +6 -0
- package/ide/jetbrains/.idea/webResources.xml +14 -0
- package/ide/jetbrains/IntelliJ IDEA Global Settings +0 -0
- package/ide/jetbrains/installed.txt +4 -0
- package/ide/jetbrains/options/github-copilot.xml +5 -0
- package/ide/jetbrains/options/nodejs.xml +7 -0
- package/ide/jetbrains/options/templates.xml +124 -0
- package/ide/jetbrains/templates/JavaScript.xml +6 -0
- package/ide/jetbrains/templates/Stacks.xml +8 -0
- package/ide/vscode/.vscode/README.md +23 -0
- package/ide/vscode/.vscode/extensions.json +5 -0
- package/ide/vscode/.vscode/settings.json +123 -0
- package/ide/vscode/.vscode/stacks.code-snippets +182 -0
- package/ide/vscode/README.md +42 -0
- package/ide/vscode/logo.png +0 -0
- package/ide/vscode/package.json +64 -0
- package/{components → libs/components}/vue/main.ts +1 -1
- package/{components → libs/components}/vue/package.json +1 -1
- package/{components → libs/components}/web/package.json +1 -1
- package/libs/examples/vue/App.vue +12 -0
- package/libs/examples/vue/favicon.png +0 -0
- package/libs/examples/vue/index.html +20 -0
- package/libs/examples/web/favicon.png +0 -0
- package/libs/examples/web/index.html +13 -0
- package/libs/functions/package.json +41 -0
- package/package.json +104 -98
- package/reset.d.ts +1 -0
- package/scripts/ensure.sh +33 -0
- package/scripts/publish.sh +18 -0
- package/scripts/setup.sh +540 -0
- package/stacks/dashboard/README.md +74 -0
- package/{core/domains → stacks/dashboard}/build.config.ts +1 -1
- package/stacks/dashboard/package.json +47 -0
- package/stacks/dashboard/src/index.ts +0 -0
- package/stacks/dashboard/tests/example.test.ts +7 -0
- package/stacks/tables/README.md +109 -0
- package/stacks/tables/build.config.ts +14 -0
- package/stacks/tables/examples/vue/App.vue +12 -0
- package/stacks/tables/examples/vue/favicon.png +0 -0
- package/stacks/tables/examples/vue/index.html +20 -0
- package/stacks/tables/examples/web/favicon.png +0 -0
- package/stacks/tables/examples/web/index.html +13 -0
- package/stacks/tables/index.html +13 -0
- package/stacks/tables/package.json +57 -0
- package/stacks/tables/src/App.vue +23 -0
- package/stacks/tables/src/components/Demo.vue +84 -0
- package/stacks/tables/src/components/README.md +110 -0
- package/stacks/tables/src/components/Table.vue +342 -0
- package/stacks/tables/src/components/TableBody.vue +32 -0
- package/stacks/tables/src/components/TableCellActionItems.vue +9 -0
- package/stacks/tables/src/components/TableFilters.vue +704 -0
- package/stacks/tables/src/components/TableHead.vue +60 -0
- package/stacks/tables/src/components/TablePagination.vue +131 -0
- package/stacks/tables/src/components/TableRow.vue +73 -0
- package/stacks/tables/src/components/TableSearch.vue +39 -0
- package/stacks/tables/src/components/Tooltip.vue +10 -0
- package/stacks/tables/src/config/tables.ts +1 -0
- package/stacks/tables/src/docs/index.md +0 -0
- package/stacks/tables/src/functions/README.md +8 -0
- package/stacks/tables/src/functions/dark.ts +3 -0
- package/stacks/tables/src/functions/index.ts +2 -0
- package/stacks/tables/src/functions/table.ts +207 -0
- package/stacks/tables/src/main.ts +4 -0
- package/stacks/tables/tests/example.test.ts +7 -0
- package/stacks/tables/vite.config.ts +26 -0
- package/stacks/tinker/package.json +49 -0
- package/stacks/tinker/src/index.ts +1 -0
- package/stacks/x-ray/README.md +55 -0
- package/stacks/x-ray/build.config.ts +15 -0
- package/stacks/x-ray/index.html +13 -0
- package/stacks/x-ray/package.json +56 -0
- package/stacks/x-ray/routes/index.ts +19 -0
- package/stacks/x-ray/src/client.ts +14 -0
- package/stacks/x-ray/src/desktop/api/nitro.config.ts +19 -0
- package/stacks/x-ray/src/desktop/api/routes/api/logs.ts +7 -0
- package/stacks/x-ray/src/desktop/api/routes/api/store-logs.ts +22 -0
- package/stacks/x-ray/src/desktop/api/src/types.ts +7 -0
- package/stacks/x-ray/src/desktop/api/storage/index.ts +7 -0
- package/stacks/x-ray/src/desktop/app.vue +377 -0
- package/stacks/x-ray/src/desktop/functions/http.ts +26 -0
- package/stacks/x-ray/src/desktop/functions/types.ts +7 -0
- package/stacks/x-ray/src/desktop/main.ts +14 -0
- package/stacks/x-ray/src/desktop/modules/counter/mod.vue +44 -0
- package/stacks/x-ray/src/desktop/modules/fetcher/mod.vue +63 -0
- package/stacks/x-ray/src/desktop/plugins/unified/unified-app.ts +5 -0
- package/stacks/x-ray/src/desktop/plugins/unified/unified-styles.scss +0 -0
- package/stacks/x-ray/src/desktop/services/http.ts +45 -0
- package/stacks/x-ray/src/desktop/styles/app.scss +0 -0
- package/stacks/x-ray/src/http.ts +26 -0
- package/stacks/x-ray/src/index.ts +42 -0
- package/stacks/x-ray/src/ray.config.ts +27 -0
- package/stacks/x-ray/src/types.ts +8 -0
- package/stacks/x-ray/tests/example.test.ts +7 -0
- package/stacks.d.ts +22 -0
- package/tsconfig.json +21 -12
- package/vcs/github/CODE_OF_CONDUCT.md +83 -0
- package/vcs/github/CONTRIBUTING.md +190 -0
- package/vcs/github/EXPLANATIONS.md +41 -0
- package/vcs/github/FUNDING.yml +1 -0
- package/vcs/github/ISSUE_TEMPLATE/bug_report.yml +62 -0
- package/vcs/github/ISSUE_TEMPLATE/config.yml +10 -0
- package/vcs/github/ISSUE_TEMPLATE/feature_request.yml +44 -0
- package/vcs/github/SECURITY.md +70 -0
- package/vcs/github/renovate.json +5 -0
- package/vcs/github/stale.yml +14 -0
- package/vcs/github/workflows/README.md +16 -0
- package/vcs/github/workflows/ci.yml +173 -0
- package/vcs/github/workflows/export-size.yml +32 -0
- package/vcs/github/workflows/release.yml +57 -0
- package/{pages → views}/desktop/package.json +7 -4
- package/{pages → views}/desktop/src/Cargo.lock +363 -46
- package/{pages → views}/desktop/src/Cargo.toml +2 -2
- package/{pages → views}/web/main.ts +2 -2
- package/api/serverless.yml +0 -11
- package/core/actions/node_modules/.bin/markdown-it +0 -17
- package/core/actions/node_modules/.bin/unbuild +0 -17
- package/core/build/entries/README.md +0 -7
- package/core/build/node_modules/.bin/unbuild +0 -17
- package/core/build/node_modules/.bin/vite +0 -17
- package/core/build/node_modules/.bin/vite-ssg +0 -17
- package/core/build/node_modules/.bin/vue-docgen-web-types +0 -17
- package/core/desktop/node_modules/.bin/tauri +0 -17
- package/core/development/node_modules/.bin/tsc +0 -17
- package/core/development/node_modules/.bin/tsserver +0 -17
- package/core/development/node_modules/.bin/tsx +0 -17
- package/core/development/node_modules/.bin/unbuild +0 -17
- package/core/docs/node_modules/.bin/vitepress +0 -17
- package/core/email/node_modules/.bin/maizzle +0 -17
- package/core/git/node_modules/.bin/bumpp +0 -17
- package/core/git/node_modules/.bin/changelogen +0 -17
- package/core/git/node_modules/.bin/commitizen +0 -17
- package/core/git/node_modules/.bin/cz +0 -17
- package/core/git/node_modules/.bin/giget +0 -17
- package/core/git/node_modules/.bin/git-cz +0 -17
- package/core/git/node_modules/.bin/simple-git-hooks +0 -17
- package/core/lint/node_modules/.bin/eslint +0 -17
- package/core/lint/node_modules/.bin/lint-staged +0 -17
- package/core/lint/node_modules/.bin/publint +0 -17
- package/core/logging/node_modules/.bin/tsc +0 -17
- package/core/logging/node_modules/.bin/tsserver +0 -17
- package/core/logging/node_modules/.bin/tsx +0 -17
- package/core/logging/node_modules/.bin/unbuild +0 -17
- package/core/notifications/node_modules/.bin/maizzle +0 -17
- package/core/server/node_modules/.bin/nitro +0 -17
- package/core/server/node_modules/.bin/nitropack +0 -17
- package/core/server/node_modules/.bin/vite +0 -17
- package/core/testing/node_modules/.bin/playwright +0 -17
- package/core/testing/node_modules/.bin/tsc +0 -17
- package/core/testing/node_modules/.bin/tsserver +0 -17
- package/core/testing/node_modules/.bin/unbuild +0 -17
- package/core/testing/node_modules/.bin/vitest +0 -17
- package/core/tinker/node_modules/.bin/tsx +0 -17
- package/core/types/node_modules/.bin/markdown-it +0 -17
- package/core/types/node_modules/.bin/vite +0 -17
- package/core/types/node_modules/.bin/vite-ssg +0 -17
- package/core/types/node_modules/.bin/vitepress +0 -17
- package/core/types/src/markdown.ts +0 -198
- package/core/ui/node_modules/.bin/vue-tsc +0 -17
- package/core/utils/node_modules/.bin/rimraf +0 -17
- package/core/utils/node_modules/.bin/semver +0 -17
- package/docs/node_modules/.bin/rimraf +0 -17
- package/docs/node_modules/.bin/vitepress +0 -17
- /package/core/{domains → dns}/tests/example.test.ts +0 -0
- /package/{LICENSE.md → ide/vscode/LICENSE.md} +0 -0
- /package/{components → libs/components}/vue/index.html +0 -0
- /package/{core/domains/src → stacks/tables/src/cli}/index.ts +0 -0
- /package/{pages → views}/desktop/.gitignore +0 -0
- /package/{pages → views}/desktop/README.md +0 -0
- /package/{pages → views}/desktop/index.html +0 -0
- /package/{pages → views}/desktop/public/favicon.svg +0 -0
- /package/{pages → views}/desktop/src/.gitignore +0 -0
- /package/{pages → views}/desktop/src/build.rs +0 -0
- /package/{pages → views}/desktop/src/icons/128x128.png +0 -0
- /package/{pages → views}/desktop/src/icons/128x128@2x.png +0 -0
- /package/{pages → views}/desktop/src/icons/32x32.png +0 -0
- /package/{pages → views}/desktop/src/icons/Square107x107Logo.png +0 -0
- /package/{pages → views}/desktop/src/icons/Square142x142Logo.png +0 -0
- /package/{pages → views}/desktop/src/icons/Square150x150Logo.png +0 -0
- /package/{pages → views}/desktop/src/icons/Square284x284Logo.png +0 -0
- /package/{pages → views}/desktop/src/icons/Square30x30Logo.png +0 -0
- /package/{pages → views}/desktop/src/icons/Square310x310Logo.png +0 -0
- /package/{pages → views}/desktop/src/icons/Square44x44Logo.png +0 -0
- /package/{pages → views}/desktop/src/icons/Square71x71Logo.png +0 -0
- /package/{pages → views}/desktop/src/icons/Square89x89Logo.png +0 -0
- /package/{pages → views}/desktop/src/icons/StoreLogo.png +0 -0
- /package/{pages → views}/desktop/src/icons/icon.icns +0 -0
- /package/{pages → views}/desktop/src/icons/icon.ico +0 -0
- /package/{pages → views}/desktop/src/icons/icon.png +0 -0
- /package/{pages → views}/desktop/src/src/main.rs +0 -0
- /package/{pages → views}/desktop/src/tauri.conf.json +0 -0
- /package/{pages → views}/web/App.vue +0 -0
- /package/{pages → views}/web/index.html +0 -0
- /package/{pages → views}/web/public/_headers +0 -0
- /package/{pages → views}/web/public/favicon-dark.svg +0 -0
- /package/{pages → views}/web/public/favicon.svg +0 -0
- /package/{pages → views}/web/public/pwa-192x192.png +0 -0
- /package/{pages → views}/web/public/pwa-512x512.png +0 -0
- /package/{pages → views}/web/public/safari-pinned-tab.svg +0 -0
- /package/{pages → views}/web/styles/main.css +0 -0
- /package/{pages → views}/web/styles/markdown.css +0 -0
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
{
|
|
2
|
+
"vitest.nodeEnv": {},
|
|
3
|
+
"vitest.include": [
|
|
4
|
+
"**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}",
|
|
5
|
+
"**/src/should_included_test.ts"
|
|
6
|
+
],
|
|
7
|
+
"vitest.exclude": [
|
|
8
|
+
"**/node_modules/**",
|
|
9
|
+
"**/dist/**",
|
|
10
|
+
"**/cypress/**",
|
|
11
|
+
"**/.{idea,git,cache,output,temp}/**",
|
|
12
|
+
"**/ignored.test.ts"
|
|
13
|
+
],
|
|
14
|
+
"typescript.tsdk": "node_modules/typescript/lib",
|
|
15
|
+
"typescript.updateImportsOnFileMove.enabled": "always",
|
|
16
|
+
"editor.formatOnSave": true,
|
|
17
|
+
"eslint.format.enable": true,
|
|
18
|
+
"editor.codeActionsOnSave": {
|
|
19
|
+
"source.fixAll.eslint": true,
|
|
20
|
+
"source.organizeImports": false
|
|
21
|
+
},
|
|
22
|
+
"eslint.validate": [
|
|
23
|
+
"javascript",
|
|
24
|
+
"javascriptreact",
|
|
25
|
+
"typescript",
|
|
26
|
+
"typescriptreact",
|
|
27
|
+
"vue",
|
|
28
|
+
"html",
|
|
29
|
+
"markdown",
|
|
30
|
+
"json",
|
|
31
|
+
"jsonc",
|
|
32
|
+
"yaml"
|
|
33
|
+
],
|
|
34
|
+
"eslint.codeAction.showDocumentation": {
|
|
35
|
+
"enable": true
|
|
36
|
+
},
|
|
37
|
+
"editor.quickSuggestions": {
|
|
38
|
+
"strings": true
|
|
39
|
+
},
|
|
40
|
+
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
|
41
|
+
"[jsonc]": {
|
|
42
|
+
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
|
|
43
|
+
},
|
|
44
|
+
"[markdown]": {
|
|
45
|
+
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint",
|
|
46
|
+
"editor.formatOnSave": true,
|
|
47
|
+
"editor.formatOnPaste": true
|
|
48
|
+
},
|
|
49
|
+
"[shellscript]": {
|
|
50
|
+
"editor.defaultFormatter": "foxundermoon.shell-format"
|
|
51
|
+
},
|
|
52
|
+
"git.enableSmartCommit": true,
|
|
53
|
+
"npm.enableRunFromFolder": true,
|
|
54
|
+
"npm.packageManager": "pnpm",
|
|
55
|
+
"editor.gotoLocation.multipleDefinitions": "goto",
|
|
56
|
+
"unocss.root": "./.stacks/core/ui/unocss.ts",
|
|
57
|
+
"markdownlint.ignore": [
|
|
58
|
+
"CHANGELOG.md"
|
|
59
|
+
],
|
|
60
|
+
"markdownlint.config": {
|
|
61
|
+
"default": true,
|
|
62
|
+
"MD033": {
|
|
63
|
+
"allowed_elements": [
|
|
64
|
+
"details",
|
|
65
|
+
"summary"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
"MD041": false
|
|
69
|
+
},
|
|
70
|
+
"search.exclude": {
|
|
71
|
+
"**/*.cjs": true,
|
|
72
|
+
"**/*.mjs": true,
|
|
73
|
+
"**/node_modules": true,
|
|
74
|
+
"CHANGELOG.md": true
|
|
75
|
+
},
|
|
76
|
+
"explorer.confirmDragAndDrop": false,
|
|
77
|
+
"explorer.fileNesting.enabled": true,
|
|
78
|
+
"explorer.fileNesting.expand": false,
|
|
79
|
+
"volar.autoCompleteRefs": false,
|
|
80
|
+
"volar.completion.preferredTagNameCase": "pascal",
|
|
81
|
+
"todo-tree.highlights.enabled": true,
|
|
82
|
+
"cSpell.ignorePaths": [
|
|
83
|
+
"node_modules",
|
|
84
|
+
"lang/de.yml"
|
|
85
|
+
],
|
|
86
|
+
"explorer.fileNesting.patterns": {
|
|
87
|
+
"*.css": "$(capture).css.map, $(capture).*.css",
|
|
88
|
+
"*.js": "$(capture).js.map, $(capture).*.js, $(capture)_*.js",
|
|
89
|
+
"*.jsx": "$(capture).js, $(capture).*.jsx, $(capture)_*.js, $(capture)_*.jsx",
|
|
90
|
+
"*.ts": "$(capture).js, $(capture).*.ts, $(capture)_*.js, $(capture)_*.ts",
|
|
91
|
+
"*.tsx": "$(capture).ts, $(capture).*.tsx, $(capture)_*.ts, $(capture)_*.tsx",
|
|
92
|
+
"*.vue": "$(capture).*.ts, $(capture).*.js",
|
|
93
|
+
".env": "*.env, .env.*, .envrc, env.d.ts",
|
|
94
|
+
".gitignore": ".gitattributes, .gitmodules, .gitmessage, .mailmap, .git-blame*",
|
|
95
|
+
"cargo.toml": ".clippy.toml, .rustfmt.toml, cargo.lock, clippy.toml, cross.toml, rust-toolchain.toml, rustfmt.toml",
|
|
96
|
+
"package.json": "tea.yaml, dictionary.txt, web-types.json, simple-git-hooks.cjs, custom-elements.json, .browserslist*, .circleci*, .codecov, .commitlint*, .cz-config.js, .czrc, .editorconfig, .eslint*, .firebase*, .flowconfig, .github*, .gitlab*, .gitpod*, .huskyrc*, .jslint*, .lighthouserc.*, .lintstagedrc*, .markdownlint*, .mocha*, .node-version, .nodemon*, .npm*, .nvmrc, .pm2*, .pnp.*, .pnpm*, .prettier*, .releaserc*, .sentry*, .stackblitz*, .styleci*, .stylelint*, .tazerc*, .textlint*, .tool-versions, .travis*, .versionrc*, .vscode*, .watchman*, .xo-config*, .yamllint*, .yarnrc*, Procfile, api-extractor.json, apollo.config.*, appveyor*, ava.config.*, azure-pipelines*, bower.json, commitlint*, crowdin*, cypress.json, dangerfile*, dprint.json, firebase.json, grunt*, gulp*, jasmine.*, jenkins*, jest.config.*, jsconfig.*, karma*, lerna*, lighthouserc.*, lint-staged*, nest-cli.*, netlify*, nodemon*, nx.*, package-lock.json, package.nls*.json, phpcs.xml, playwright.config.*, pm2.*, pnpm*, prettier*, pullapprove*, puppeteer.config.*, pyrightconfig.json, release-tasks.sh, renovate*, rollup.config.*, stylelint*, tsconfig.*, tsdoc.*, tslint*, tsup.config.*, turbo*, typedoc*, vercel*, vetur.config.*, vitest.config.*, webpack*, workspace.json, xo.config.*, yarn*",
|
|
97
|
+
"readme*": "authors, backers.md, changelog.md, citation*, code_of_conduct.md, codeowners, contributing.md, contributors, copying, credits, governance.md, history.md, license*, maintainers, readme*, security.md, sponsors.md",
|
|
98
|
+
"shims.d.ts": "*.d.ts"
|
|
99
|
+
},
|
|
100
|
+
"cSpell.dictionaries": [
|
|
101
|
+
"stacks-dictionary"
|
|
102
|
+
],
|
|
103
|
+
"cSpell.diagnosticLevel": "Hint",
|
|
104
|
+
"cSpell.customDictionaries": {
|
|
105
|
+
"stacks": {
|
|
106
|
+
"name": "stacks-dictionary",
|
|
107
|
+
"path": "./.stacks/dictionary.txt",
|
|
108
|
+
"scope": "user",
|
|
109
|
+
"addWords": true
|
|
110
|
+
},
|
|
111
|
+
"custom": true // Enable the `custom` dictionary
|
|
112
|
+
},
|
|
113
|
+
"prettier.enable": false, // to ensure it is disabled
|
|
114
|
+
"terminal.integrated.scrollback": 10000,
|
|
115
|
+
"grammarly.files.include": [
|
|
116
|
+
"**/README.md",
|
|
117
|
+
"**/readme.md",
|
|
118
|
+
"**/*.txt"
|
|
119
|
+
],
|
|
120
|
+
"grammarly.files.exclude": [
|
|
121
|
+
"**/dictionary.txt"
|
|
122
|
+
]
|
|
123
|
+
}
|
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Stacks Action": {
|
|
3
|
+
"scope": "typescript",
|
|
4
|
+
"prefix": "act",
|
|
5
|
+
"body": [
|
|
6
|
+
"public function $1($2)",
|
|
7
|
+
"{",
|
|
8
|
+
" $3",
|
|
9
|
+
"}"
|
|
10
|
+
],
|
|
11
|
+
"description": "Bootstrap a Stacks Actions"
|
|
12
|
+
},
|
|
13
|
+
"Stacks Function": {
|
|
14
|
+
"scope": "typescript",
|
|
15
|
+
"prefix": "func",
|
|
16
|
+
"body": [
|
|
17
|
+
"public function $1($2)",
|
|
18
|
+
"{",
|
|
19
|
+
" $3",
|
|
20
|
+
"}"
|
|
21
|
+
],
|
|
22
|
+
"description": "Bootstrap a Stacks Function"
|
|
23
|
+
},
|
|
24
|
+
"Stacks Method": {
|
|
25
|
+
"scope": "typescript",
|
|
26
|
+
"prefix": "met",
|
|
27
|
+
"body": [
|
|
28
|
+
"public function $1($2)",
|
|
29
|
+
"{",
|
|
30
|
+
" $3",
|
|
31
|
+
"}"
|
|
32
|
+
],
|
|
33
|
+
"description": "Alias of the Stacks Function snippet"
|
|
34
|
+
},
|
|
35
|
+
"Stacks Protected Method": {
|
|
36
|
+
"scope": "typescript",
|
|
37
|
+
"prefix": "pmet",
|
|
38
|
+
"body": [
|
|
39
|
+
"protected function $1($2)",
|
|
40
|
+
"{",
|
|
41
|
+
" $3",
|
|
42
|
+
"}"
|
|
43
|
+
],
|
|
44
|
+
"description": "Bootstrap a Protected Function"
|
|
45
|
+
},
|
|
46
|
+
"Stacks Protected Function": {
|
|
47
|
+
"scope": "typescript",
|
|
48
|
+
"prefix": "pfunct",
|
|
49
|
+
"body": [
|
|
50
|
+
"protected function $1($2)",
|
|
51
|
+
"{",
|
|
52
|
+
" $3",
|
|
53
|
+
"}"
|
|
54
|
+
],
|
|
55
|
+
"description": "Alias of the Protected Function snippet"
|
|
56
|
+
},
|
|
57
|
+
"Print to console": {
|
|
58
|
+
"scope": "javascript,typescript",
|
|
59
|
+
"prefix": "clo",
|
|
60
|
+
"body": [
|
|
61
|
+
"// eslint-disable-next-line no-console",
|
|
62
|
+
"console.log('$1')$2",
|
|
63
|
+
],
|
|
64
|
+
"description": "Log output to console"
|
|
65
|
+
},
|
|
66
|
+
"Stacks Component": {
|
|
67
|
+
"prefix": "com",
|
|
68
|
+
"body": [
|
|
69
|
+
"<script setup lang=\"ts\">",
|
|
70
|
+
"\t$1",
|
|
71
|
+
"</script>",
|
|
72
|
+
"",
|
|
73
|
+
"<template>",
|
|
74
|
+
"",
|
|
75
|
+
"</template>",
|
|
76
|
+
"",
|
|
77
|
+
"<style scoped>",
|
|
78
|
+
"",
|
|
79
|
+
"</style>"
|
|
80
|
+
],
|
|
81
|
+
},
|
|
82
|
+
"Stacks v-for": {
|
|
83
|
+
"prefix": "vfor",
|
|
84
|
+
"body": [
|
|
85
|
+
"<${1:div} v-for=\"${2:item} in ${2:item}s\" :key=\"${2:item}.id\">",
|
|
86
|
+
"\t{{ ${2:item} }}",
|
|
87
|
+
"</${1:div}>"
|
|
88
|
+
],
|
|
89
|
+
"description": "vfor statement"
|
|
90
|
+
},
|
|
91
|
+
"Stacks v-model Directive": {
|
|
92
|
+
"prefix": "vmodel",
|
|
93
|
+
"body": [
|
|
94
|
+
"<input v-model=\"${1:data}\" type=\"text\" />"
|
|
95
|
+
],
|
|
96
|
+
"description": "v-model directive"
|
|
97
|
+
},
|
|
98
|
+
"Stacks v-model Number Directive": {
|
|
99
|
+
"prefix": "vmodel-num",
|
|
100
|
+
"body": [
|
|
101
|
+
"<input v-model.number=\"${1:numData}\" type=\"number\" step=\"1\" />"
|
|
102
|
+
],
|
|
103
|
+
"description": "v-model directive number input"
|
|
104
|
+
},
|
|
105
|
+
"Stacks v-on Shortcut Directive": {
|
|
106
|
+
"prefix": "von",
|
|
107
|
+
"body": [
|
|
108
|
+
"@click=\"${1:handler}(${2:arg}, $event)\""
|
|
109
|
+
],
|
|
110
|
+
"description": "v-on click handler with arguments"
|
|
111
|
+
},
|
|
112
|
+
"Stacks Component with Props Binding": {
|
|
113
|
+
"prefix": "vel-props",
|
|
114
|
+
"body": [
|
|
115
|
+
"<${1:component} :${1:propName}=\"${0}\"></${1:component}>"
|
|
116
|
+
],
|
|
117
|
+
"description": "component element with props"
|
|
118
|
+
},
|
|
119
|
+
"Stacks Named Slot": {
|
|
120
|
+
"prefix": "vslot-named",
|
|
121
|
+
"body": [
|
|
122
|
+
"<template v-slot:${0:name}>${1:defaultcontent}</template>"
|
|
123
|
+
],
|
|
124
|
+
"description": "named slot"
|
|
125
|
+
},
|
|
126
|
+
"Stacks Image Source Binding": {
|
|
127
|
+
"prefix": "vsrc",
|
|
128
|
+
"body": [
|
|
129
|
+
"<img :src=\"'/path/to/images/' + ${1:fileName}\" alt=\"${2:altText}\"/>"
|
|
130
|
+
],
|
|
131
|
+
"description": "image source binding"
|
|
132
|
+
},
|
|
133
|
+
"Stacks Style Binding": {
|
|
134
|
+
"prefix": "vstyle",
|
|
135
|
+
"body": [
|
|
136
|
+
"<${1:div} :style=\"{ fontSize: ${2:data} + 'px' }\"></${1:div}>"
|
|
137
|
+
],
|
|
138
|
+
"description": "vue inline style binding"
|
|
139
|
+
},
|
|
140
|
+
"Stacks Style Binding Object": {
|
|
141
|
+
"prefix": "vstyle-obj",
|
|
142
|
+
"body": [
|
|
143
|
+
"<${1:div} :style=\"[${2:styleObjectA}, ${3:styleObjectB]}\"></${1:div}>"
|
|
144
|
+
],
|
|
145
|
+
"description": "vue inline style binding, objects"
|
|
146
|
+
},
|
|
147
|
+
"Stacks Class Binding": {
|
|
148
|
+
"prefix": "vclass",
|
|
149
|
+
"body": [
|
|
150
|
+
"<${1:div} :class=\"{ ${2:className}: ${3:data} }\"></${1:div}>"
|
|
151
|
+
],
|
|
152
|
+
"description": "vue class binding"
|
|
153
|
+
},
|
|
154
|
+
"Stacks Class Binding Object": {
|
|
155
|
+
"prefix": "vclass-obj",
|
|
156
|
+
"body": [
|
|
157
|
+
"<${1:div} :class=\"[${2:classNameA}, ${3:classNameB}]\"></${1:div}>"
|
|
158
|
+
],
|
|
159
|
+
"description": "vue class binding"
|
|
160
|
+
},
|
|
161
|
+
"Stacks Multiple Conditional Class Bindings": {
|
|
162
|
+
"prefix": "vclass-obj-mult",
|
|
163
|
+
"body": [
|
|
164
|
+
"<${1:div} :class=\"[${2:classNameA}, {${3:classNameB} : ${4:condition}}]\"></${1:div}>"
|
|
165
|
+
],
|
|
166
|
+
"description": "vue multiple conditional class bindings"
|
|
167
|
+
},
|
|
168
|
+
"Stacks Emit from Child": {
|
|
169
|
+
"prefix": "vemit-child",
|
|
170
|
+
"body": [
|
|
171
|
+
"@change=\"$emit('change', $event.target.value)\""
|
|
172
|
+
],
|
|
173
|
+
"description": "Stacks Emit from Child Component"
|
|
174
|
+
},
|
|
175
|
+
"Stacks Emit to Parent": {
|
|
176
|
+
"prefix": "vemit-parent",
|
|
177
|
+
"body": [
|
|
178
|
+
"@change=\"${1:foo} = $$event\""
|
|
179
|
+
],
|
|
180
|
+
"description": "Stacks Emit to Parent Component"
|
|
181
|
+
}
|
|
182
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Stacks VSCode Extension Pack
|
|
2
|
+
|
|
3
|
+
A collection of extensions for working with Stacks Applications in VS Code to make application development easier and more fun.
|
|
4
|
+
|
|
5
|
+
Please note, the Stacks framework auto-configures any extension that needs to be configured.
|
|
6
|
+
|
|
7
|
+
## Extensions Included
|
|
8
|
+
|
|
9
|
+
- [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) - Vue Language Features is a language support extension built for Vue, Vitepress and petite-vue. this is based on @vue/reactivity to calculate everything on-demand, to implement native TypeScript language service level performance ⚡
|
|
10
|
+
- [Bookmarks](https://marketplace.visualstudio.com/items?itemName=alefragnani.Bookmarks) - Adds a bookmark to places you designate in your file, and allows you to quickly jump between them. Super helpful. Type `command + opt + K` to create a bookmark and `command + opt + J` to jump between them 🔖
|
|
11
|
+
- [Jumpy](https://marketplace.visualstudio.com/items?itemName=wmaurer.vscode-jumpy) - We lose a lot of time scanning with a mouse, time we can get back by using our keyboard instead. Jumpy provides fast cursor movement by giving you a couple of keys that offer a hook to get to another part of the document.
|
|
12
|
+
- [NPM Intellisense](https://marketplace.visualstudio.com/items?itemName=christian-kohler.npm-intellisense) - a plugin that auto-completes npm modules in import statements.
|
|
13
|
+
- [ES6 Snippets](https://marketplace.visualstudio.com/items?itemName=xabikos.JavaScriptSnippets) - quickly spin up ES6 JavaScript with only 3 or 4 characters.
|
|
14
|
+
- [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) - Integrates ESLint into VS Code.
|
|
15
|
+
- [Spelling Checker](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker) - A simple source code spell checker for code.
|
|
16
|
+
- [markdownlint](https://marketplace.visualstudio.com/items?itemName=DavidAnson.vscode-markdownlint) - Markdown/CommonMark linting and style checking for Visual Studio Code.
|
|
17
|
+
- [UnoCSS](https://marketplace.visualstudio.com/items?itemName=antfu.unocss) - An atomic CSS framework.
|
|
18
|
+
- [Todo Tree](https://marketplace.visualstudio.com/items?itemName=Gruntfuggly.todo-tree) - This extension quickly searches (using ripgrep) your workspace for comment tags like TODO and FIXME, and displays them in a tree view in the activity bar. The view can be dragged out of the activity bar into the explorer pane (or anywhere else you would prefer it to be).
|
|
19
|
+
- [Log Output Colorizer](https://marketplace.visualstudio.com/items?itemName=IBM.output-colorizer) - Language extension for VS Code that adds syntax colorization for both the output/debug/extensions panel and *.log files.
|
|
20
|
+
- [Vitest Explorer](https://marketplace.visualstudio.com/items?itemName=antfu.vitest-explorer) - A VS Code extension for the Vitest test runner.
|
|
21
|
+
- [PostHTML Snippets](https://marketplace.visualstudio.com/items?itemName=cossssmin.posthtml) - Quickly build HTML emails with utility-first CSS.
|
|
22
|
+
- [Goto Definition Alias](https://marketplace.visualstudio.com/items?itemName=antfu.goto-definition-alias) - An extension that allows you to jump to the definition of an aliased import.
|
|
23
|
+
|
|
24
|
+
## Contributing
|
|
25
|
+
|
|
26
|
+
We welcome contributions to this extension pack.
|
|
27
|
+
|
|
28
|
+
## Local Usage
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
pnpm run package // to create a .vsix file
|
|
32
|
+
code --install-extension stacks-vscode-0.44.2.vsix // to install the extension locally
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
_If you would like to add an extension, please open an issue or start a Discussion first 🙏🏼._
|
|
36
|
+
|
|
37
|
+
## Relevant Links
|
|
38
|
+
|
|
39
|
+
- [GitHub](https://github.com/stacksjs/stacks)
|
|
40
|
+
- [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=stacks.vscode-stacks)
|
|
41
|
+
|
|
42
|
+
**Enjoy!**
|
|
Binary file
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"publisher": "Stacks",
|
|
3
|
+
"name": "vscode-stacks",
|
|
4
|
+
"displayName": "Stacks",
|
|
5
|
+
"version": "0.52.10",
|
|
6
|
+
"description": "A modern Stacks development environment.",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"funding": "https://github.com/sponsors/chrisbbreuer",
|
|
9
|
+
"homepage": "https://github.com/stacksjs/stacks/tree/main/.stacks/vscode#readme",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/stacksjs/stacks.git",
|
|
13
|
+
"directory": "./.stacks/vscode"
|
|
14
|
+
},
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/stacksjs/stacks/issues"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"stacks",
|
|
20
|
+
"stacksjs",
|
|
21
|
+
"extension pack",
|
|
22
|
+
"stacks extension collection"
|
|
23
|
+
],
|
|
24
|
+
"categories": [
|
|
25
|
+
"Extension Packs"
|
|
26
|
+
],
|
|
27
|
+
"icon": "logo.png",
|
|
28
|
+
"engines": {
|
|
29
|
+
"vscode": "^1.79.2"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"package": "vsce package",
|
|
33
|
+
"release": "vsce publish"
|
|
34
|
+
},
|
|
35
|
+
"galleryBanner": {
|
|
36
|
+
"color": "#d7e4f5",
|
|
37
|
+
"theme": "light"
|
|
38
|
+
},
|
|
39
|
+
"extensionPack": [
|
|
40
|
+
"vue.volar",
|
|
41
|
+
"vue.vscode-typescript-vue-plugin",
|
|
42
|
+
"dbaeumer.vscode-eslint",
|
|
43
|
+
"streetsidesoftware.code-spell-checker",
|
|
44
|
+
"davidanson.vscode-markdownlint",
|
|
45
|
+
"antfu.unocss",
|
|
46
|
+
"alefragnani.Bookmarks",
|
|
47
|
+
"christian-kohler.npm-intellisense",
|
|
48
|
+
"wmaurer.vscode-jumpy",
|
|
49
|
+
"Gruntfuggly.todo-tree",
|
|
50
|
+
"IBM.output-colorizer",
|
|
51
|
+
"ZixuanChen.vitest-explorer",
|
|
52
|
+
"cossssmin.posthtml",
|
|
53
|
+
"mattpocock.ts-error-translator",
|
|
54
|
+
"amazonwebservices.aws-toolkit-vscode",
|
|
55
|
+
"rangav.vscode-thunder-client",
|
|
56
|
+
"antfu.goto-alias",
|
|
57
|
+
"mikestead.dotenv",
|
|
58
|
+
"pflannery.vscode-versionlens",
|
|
59
|
+
"foxundermoon.shell-format"
|
|
60
|
+
],
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@vscode/vsce": "^2.19.0"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { createApp } from 'vue'
|
|
2
2
|
|
|
3
3
|
// import Previewer from 'virtual:vue-component-preview'
|
|
4
|
-
import Demo from '
|
|
4
|
+
import Demo from '../../../../resources/components/Demo.vue'
|
|
5
5
|
|
|
6
6
|
// prepare the messages object from the yaml language files
|
|
7
7
|
// const messages = Object.fromEntries(
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
This is how you would implement your generated
|
|
3
|
+
library into your own frontend. You may import
|
|
4
|
+
any of the components developed.
|
|
5
|
+
-->
|
|
6
|
+
<script setup lang="ts">
|
|
7
|
+
import { Demo } from './dist/index.mjs'
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<template>
|
|
11
|
+
<Demo />
|
|
12
|
+
</template>
|
|
Binary file
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" href="./favicon.png" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title>Stacks Vue Example</title>
|
|
8
|
+
<link rel="stylesheet" href="./dist/style.css">
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<div id="app"></div>
|
|
12
|
+
|
|
13
|
+
<script type="module">
|
|
14
|
+
import { createApp } from 'vue'
|
|
15
|
+
import App from './App.vue'
|
|
16
|
+
|
|
17
|
+
createApp(App).mount('#app')
|
|
18
|
+
</script>
|
|
19
|
+
</body>
|
|
20
|
+
</html>
|
|
Binary file
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" href="./favicon.png" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title>Stacks Web Component Example</title>
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<script type="module" src="./dist/index.mjs"></script>
|
|
11
|
+
<hello-world></hello-world>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "hello-world-fx",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "",
|
|
5
|
+
"packageManager": "pnpm@8.6.5",
|
|
6
|
+
"description": "Your function library description.",
|
|
7
|
+
"author": "Chris Breuer",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"homepage": "https://github.com/stacksjs/stacks/tree/main/functions#readme",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/stacksjs/stacks.git",
|
|
13
|
+
"directory": "functions"
|
|
14
|
+
},
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/stacksjs/stacks/issues"
|
|
17
|
+
},
|
|
18
|
+
"keywords": ["functions", "composables", "library", "typescript", "javascript"],
|
|
19
|
+
"contributors": ["Chris Breuer <chris@ow3.org>"],
|
|
20
|
+
"exports": {
|
|
21
|
+
".": {
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
|
+
"require": "./dist/index.cjs",
|
|
24
|
+
"import": "./dist/index.js"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"main": "dist/index.cjs",
|
|
28
|
+
"module": "dist/index.js",
|
|
29
|
+
"types": "dist/index.d.ts",
|
|
30
|
+
"files": [
|
|
31
|
+
"dist",
|
|
32
|
+
"README.md"
|
|
33
|
+
],
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "vite build -c ../build/functions.ts",
|
|
36
|
+
"prepublishOnly": "pnpm run build"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"stacks": "workspace:*"
|
|
40
|
+
}
|
|
41
|
+
}
|