stacks 0.53.1 → 0.56.3
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 +6 -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 +3 -6
- 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 -2
- package/core/buddy/package.json +4 -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 +22 -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 -2
- package/core/cli/package.json +3 -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 -33
- 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 +1 -2
- 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 +1 -2
- 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 +15 -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 +22 -0
- package/core/{domains → dns}/package.json +13 -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 +1 -2
- 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 +7 -2
- package/core/error-handling/package.json +6 -4
- package/core/error-handling/src/index.ts +45 -0
- package/core/events/README.md +1 -1
- package/core/events/build.config.ts +1 -2
- package/core/events/package.json +3 -3
- 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 +6 -6
- package/core/logging/build.config.ts +5 -3
- package/core/logging/package.json +6 -6
- package/core/modules/build.config.ts +10 -7
- package/core/modules/package.json +3 -3
- package/core/notifications/README.md +1 -1
- package/core/notifications/build.config.ts +2 -1
- 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 +15 -7
- package/core/objects/package.json +5 -4
- package/core/orm/build.config.ts +1 -2
- 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 +1 -2
- package/core/path/package.json +4 -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 +13 -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 +17 -7
- package/core/search-engine/package.json +4 -4
- package/core/search-engine/src/index.ts +2 -2
- package/core/security/build.config.ts +17 -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 +5 -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 +3 -7
- package/core/storage/package.json +5 -5
- package/core/storage/src/index.ts +2 -22
- package/core/strings/build.config.ts +1 -2
- 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 +12 -0
- package/core/tinker/package.json +15 -3
- package/core/tinker/src/index.ts +1 -0
- package/core/types/build.config.ts +17 -8
- package/core/types/package.json +25 -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 +32 -7
- package/core/utils/package.json +16 -16
- 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 +18 -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 +21 -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/run.json +5 -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/.idea/workspace.xml +225 -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 +111 -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 +46 -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 +16 -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 +48 -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 +55 -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/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/package.json +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,225 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="AutoImportSettings">
|
|
4
|
+
<option name="autoReloadType" value="SELECTIVE" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="ChangeListManager">
|
|
7
|
+
<list default="true" id="1e4f8639-3b28-4ad5-b700-fe4733d6bc57" name="Changes" comment="chore: wip">
|
|
8
|
+
<change beforePath="$PROJECT_DIR$/.stacks/core/types/src/model.ts" beforeDir="false" afterPath="$PROJECT_DIR$/.stacks/core/types/src/model.ts" afterDir="false" />
|
|
9
|
+
<change beforePath="$PROJECT_DIR$/.stacks/core/validation/src/validate.ts" beforeDir="false" afterPath="$PROJECT_DIR$/.stacks/core/validation/src/validate.ts" afterDir="false" />
|
|
10
|
+
<change beforePath="$PROJECT_DIR$/app/jobs/index.ts" beforeDir="false" afterPath="$PROJECT_DIR$/app/jobs/index.ts" afterDir="false" />
|
|
11
|
+
<change beforePath="$PROJECT_DIR$/app/models/User.ts" beforeDir="false" afterPath="$PROJECT_DIR$/app/models/User.ts" afterDir="false" />
|
|
12
|
+
</list>
|
|
13
|
+
<option name="SHOW_DIALOG" value="false" />
|
|
14
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
15
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
16
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
17
|
+
</component>
|
|
18
|
+
<component name="ChangesViewManager">
|
|
19
|
+
<option name="groupingKeys">
|
|
20
|
+
<option value="directory" />
|
|
21
|
+
</option>
|
|
22
|
+
</component>
|
|
23
|
+
<component name="Git.Settings">
|
|
24
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
25
|
+
</component>
|
|
26
|
+
<component name="GitHubPullRequestSearchHistory">{
|
|
27
|
+
"lastFilter": {
|
|
28
|
+
"state": "OPEN"
|
|
29
|
+
}
|
|
30
|
+
}</component>
|
|
31
|
+
<component name="HighlightingSettingsPerFile">
|
|
32
|
+
<setting file="file://$PROJECT_DIR$/node_modules/.pnpm/@types+fs-extra@11.0.1/node_modules/@types/fs-extra/index.d.ts" root0="SKIP_INSPECTION" />
|
|
33
|
+
<setting file="file://$PROJECT_DIR$/node_modules/.pnpm/@vinejs+vine@1.4.1/node_modules/@vinejs/vine/build/src/schema/builder.d.ts" root0="SKIP_INSPECTION" />
|
|
34
|
+
<setting file="file://$PROJECT_DIR$/node_modules/.pnpm/@vinejs+vine@1.4.1/node_modules/@vinejs/vine/build/src/types.d.ts" root0="SKIP_INSPECTION" />
|
|
35
|
+
<setting file="file://$PROJECT_DIR$/node_modules/.pnpm/@vinejs+vine@1.4.1/node_modules/@vinejs/vine/build/src/vine/main.d.ts" root0="SKIP_INSPECTION" />
|
|
36
|
+
<setting file="file://$PROJECT_DIR$/node_modules/.pnpm/unbuild@1.2.1/node_modules/unbuild/dist/index.d.ts" root0="SKIP_INSPECTION" />
|
|
37
|
+
<setting file="file://$PROJECT_DIR$/node_modules/.pnpm/unplugin-auto-import@0.16.4_rollup@2.79.1/node_modules/unplugin-auto-import/dist/types.d.ts" root0="SKIP_INSPECTION" />
|
|
38
|
+
<setting file="file://$PROJECT_DIR$/node_modules/.pnpm/vite@4.3.9_@types+node@18.16.18/node_modules/vite/dist/node/index.d.ts" root0="SKIP_INSPECTION" />
|
|
39
|
+
<setting file="file://$USER_HOME$/Library/Caches/JetBrains/WebStorm2023.1/javascript/typings/node/18.16.0/node_modules/@types/node/ts4.8/fs.d.ts" root0="SKIP_INSPECTION" />
|
|
40
|
+
</component>
|
|
41
|
+
<component name="MarkdownSettingsMigration">
|
|
42
|
+
<option name="stateVersion" value="1" />
|
|
43
|
+
</component>
|
|
44
|
+
<component name="ProblemsViewState">
|
|
45
|
+
<option name="selectedTabId" value="CurrentFile" />
|
|
46
|
+
</component>
|
|
47
|
+
<component name="ProjectId" id="2R5jM1bslBOLyX6060vyUO2sSxF" />
|
|
48
|
+
<component name="ProjectLevelVcsManager">
|
|
49
|
+
<ConfirmationsSetting value="2" id="Add" />
|
|
50
|
+
</component>
|
|
51
|
+
<component name="ProjectViewState">
|
|
52
|
+
<option name="hideEmptyMiddlePackages" value="true" />
|
|
53
|
+
<option name="showLibraryContents" value="true" />
|
|
54
|
+
</component>
|
|
55
|
+
<component name="PropertiesComponent"><![CDATA[{
|
|
56
|
+
"keyToString": {
|
|
57
|
+
"ASKED_SHARE_PROJECT_CONFIGURATION_FILES": "true",
|
|
58
|
+
"RunOnceActivity.OpenProjectViewOnStart": "true",
|
|
59
|
+
"RunOnceActivity.ShowReadmeOnStart": "true",
|
|
60
|
+
"SHARE_PROJECT_CONFIGURATION_FILES": "true",
|
|
61
|
+
"WebServerToolWindowFactoryState": "false",
|
|
62
|
+
"git-widget-placeholder": "main",
|
|
63
|
+
"javascript.nodejs.core.library.configured.version": "18.16.0",
|
|
64
|
+
"javascript.nodejs.core.library.typings.version": "18.16.0",
|
|
65
|
+
"last_opened_file_path": "/Users/ChrisBreuer/Code/stacks/.stacks/core/actions",
|
|
66
|
+
"node.js.detected.package.eslint": "true",
|
|
67
|
+
"node.js.detected.package.standard": "true",
|
|
68
|
+
"node.js.detected.package.tslint": "true",
|
|
69
|
+
"node.js.selected.package.eslint": "(autodetect)",
|
|
70
|
+
"node.js.selected.package.standard": "",
|
|
71
|
+
"node.js.selected.package.tslint": "(autodetect)",
|
|
72
|
+
"nodejs_interpreter_path": "/Users/ChrisBreuer/.stacks/nodejs.org/v18.16.0/bin/node",
|
|
73
|
+
"nodejs_package_manager_path": "~/.stacks/pnpm.io/v8.6.2/bin/pnpm",
|
|
74
|
+
"settings.editor.selected.configurable": "editing.templates",
|
|
75
|
+
"ts.external.directory.path": "/Users/ChrisBreuer/Code/stacks/.stacks/core/development/node_modules/typescript/lib",
|
|
76
|
+
"vue.rearranger.settings.migration": "true"
|
|
77
|
+
}
|
|
78
|
+
}]]></component>
|
|
79
|
+
<component name="RecentsManager">
|
|
80
|
+
<key name="CopyFile.RECENT_KEYS">
|
|
81
|
+
<recent name="$PROJECT_DIR$/.stacks/core/actions" />
|
|
82
|
+
<recent name="$PROJECT_DIR$/config" />
|
|
83
|
+
<recent name="$PROJECT_DIR$/.stacks/core/build/src" />
|
|
84
|
+
<recent name="$PROJECT_DIR$/.stacks" />
|
|
85
|
+
<recent name="$PROJECT_DIR$/app" />
|
|
86
|
+
</key>
|
|
87
|
+
<key name="MoveFile.RECENT_KEYS">
|
|
88
|
+
<recent name="$PROJECT_DIR$/.stacks/core/actions/src/helpers" />
|
|
89
|
+
<recent name="$PROJECT_DIR$/.stacks/core/actions/src/generate" />
|
|
90
|
+
<recent name="$PROJECT_DIR$/.stacks/core/actions/src" />
|
|
91
|
+
<recent name="$PROJECT_DIR$/resources" />
|
|
92
|
+
<recent name="$PROJECT_DIR$/.stacks/core" />
|
|
93
|
+
</key>
|
|
94
|
+
</component>
|
|
95
|
+
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
|
|
96
|
+
<component name="TaskManager">
|
|
97
|
+
<task active="true" id="Default" summary="Default task">
|
|
98
|
+
<changelist id="1e4f8639-3b28-4ad5-b700-fe4733d6bc57" name="Changes" comment="" />
|
|
99
|
+
<created>1684652698929</created>
|
|
100
|
+
<option name="number" value="Default" />
|
|
101
|
+
<option name="presentableId" value="Default" />
|
|
102
|
+
<updated>1684652698929</updated>
|
|
103
|
+
<workItem from="1684652700391" duration="18334000" />
|
|
104
|
+
<workItem from="1684780479441" duration="5331000" />
|
|
105
|
+
<workItem from="1684789335412" duration="2745000" />
|
|
106
|
+
<workItem from="1684793082213" duration="16531000" />
|
|
107
|
+
<workItem from="1684878299382" duration="7919000" />
|
|
108
|
+
<workItem from="1684887328281" duration="9690000" />
|
|
109
|
+
<workItem from="1684954597154" duration="5668000" />
|
|
110
|
+
<workItem from="1684964759770" duration="4857000" />
|
|
111
|
+
<workItem from="1684974766597" duration="5512000" />
|
|
112
|
+
<workItem from="1685044595962" duration="28000" />
|
|
113
|
+
<workItem from="1685044630725" duration="5592000" />
|
|
114
|
+
<workItem from="1685052387754" duration="45000" />
|
|
115
|
+
<workItem from="1685052440631" duration="3569000" />
|
|
116
|
+
<workItem from="1685059157945" duration="1000" />
|
|
117
|
+
<workItem from="1685059307739" duration="285000" />
|
|
118
|
+
<workItem from="1685059599982" duration="631000" />
|
|
119
|
+
<workItem from="1685071341017" duration="1547000" />
|
|
120
|
+
<workItem from="1685297314723" duration="27000" />
|
|
121
|
+
<workItem from="1685297348291" duration="133000" />
|
|
122
|
+
<workItem from="1685297492105" duration="950000" />
|
|
123
|
+
<workItem from="1685391062191" duration="1566000" />
|
|
124
|
+
<workItem from="1685468269396" duration="5708000" />
|
|
125
|
+
<workItem from="1685479799752" duration="21218000" />
|
|
126
|
+
<workItem from="1685562848024" duration="3326000" />
|
|
127
|
+
<workItem from="1685585598148" duration="307000" />
|
|
128
|
+
<workItem from="1685650765228" duration="806000" />
|
|
129
|
+
<workItem from="1685651579940" duration="1113000" />
|
|
130
|
+
<workItem from="1685653527683" duration="2228000" />
|
|
131
|
+
<workItem from="1685660395471" duration="21603000" />
|
|
132
|
+
<workItem from="1685732224614" duration="216000" />
|
|
133
|
+
<workItem from="1685732450259" duration="31206000" />
|
|
134
|
+
<workItem from="1685816944558" duration="17404000" />
|
|
135
|
+
<workItem from="1685840086991" duration="6162000" />
|
|
136
|
+
<workItem from="1685904465850" duration="3826000" />
|
|
137
|
+
<workItem from="1685912102154" duration="12144000" />
|
|
138
|
+
<workItem from="1685999314287" duration="2959000" />
|
|
139
|
+
<workItem from="1686002745498" duration="5577000" />
|
|
140
|
+
<workItem from="1686008875371" duration="11382000" />
|
|
141
|
+
<workItem from="1686078717356" duration="12881000" />
|
|
142
|
+
<workItem from="1686176363138" duration="12947000" />
|
|
143
|
+
<workItem from="1686252548965" duration="9580000" />
|
|
144
|
+
<workItem from="1686263459091" duration="2907000" />
|
|
145
|
+
<workItem from="1686269841633" duration="8287000" />
|
|
146
|
+
<workItem from="1686359321410" duration="6558000" />
|
|
147
|
+
<workItem from="1686433962425" duration="7774000" />
|
|
148
|
+
<workItem from="1686526572353" duration="5781000" />
|
|
149
|
+
<workItem from="1686538685411" duration="1000" />
|
|
150
|
+
<workItem from="1686538693675" duration="1736000" />
|
|
151
|
+
<workItem from="1686546788066" duration="336000" />
|
|
152
|
+
<workItem from="1686547131859" duration="2084000" />
|
|
153
|
+
<workItem from="1686604308187" duration="8464000" />
|
|
154
|
+
<workItem from="1686689018834" duration="412000" />
|
|
155
|
+
<workItem from="1686689496322" duration="4989000" />
|
|
156
|
+
<workItem from="1686766990901" duration="14636000" />
|
|
157
|
+
<workItem from="1686805677492" duration="4313000" />
|
|
158
|
+
<workItem from="1686855142027" duration="26575000" />
|
|
159
|
+
<workItem from="1686886902205" duration="6532000" />
|
|
160
|
+
<workItem from="1687018314094" duration="17577000" />
|
|
161
|
+
<workItem from="1687061136485" duration="10905000" />
|
|
162
|
+
<workItem from="1687102561471" duration="27240000" />
|
|
163
|
+
<workItem from="1687151761361" duration="6935000" />
|
|
164
|
+
<workItem from="1687197757044" duration="5053000" />
|
|
165
|
+
<workItem from="1687214078416" duration="6259000" />
|
|
166
|
+
<workItem from="1687238174190" duration="2592000" />
|
|
167
|
+
<workItem from="1687292507669" duration="13235000" />
|
|
168
|
+
<workItem from="1687319847749" duration="3752000" />
|
|
169
|
+
<workItem from="1687370718577" duration="5700000" />
|
|
170
|
+
<workItem from="1687407799468" duration="3197000" />
|
|
171
|
+
<workItem from="1687444810691" duration="307000" />
|
|
172
|
+
<workItem from="1687551476414" duration="7946000" />
|
|
173
|
+
<workItem from="1687588329451" duration="5143000" />
|
|
174
|
+
<workItem from="1687758184320" duration="3447000" />
|
|
175
|
+
</task>
|
|
176
|
+
<task id="LOCAL-00001" summary="chore: wip">
|
|
177
|
+
<option name="closed" value="true" />
|
|
178
|
+
<created>1684957183880</created>
|
|
179
|
+
<option name="number" value="00001" />
|
|
180
|
+
<option name="presentableId" value="LOCAL-00001" />
|
|
181
|
+
<option name="project" value="LOCAL" />
|
|
182
|
+
<updated>1684957183880</updated>
|
|
183
|
+
</task>
|
|
184
|
+
<option name="localTasksCounter" value="2" />
|
|
185
|
+
<servers />
|
|
186
|
+
</component>
|
|
187
|
+
<component name="TypeScriptGeneratedFilesManager">
|
|
188
|
+
<option name="version" value="3" />
|
|
189
|
+
<option name="exactExcludedFiles">
|
|
190
|
+
<list>
|
|
191
|
+
<option value="$PROJECT_DIR$/.stacks/core/build/dist/index.d.ts" />
|
|
192
|
+
<option value="$PROJECT_DIR$/.stacks/core/build/dist/index.mjs" />
|
|
193
|
+
</list>
|
|
194
|
+
</option>
|
|
195
|
+
</component>
|
|
196
|
+
<component name="UnknownFeatures">
|
|
197
|
+
<option featureType="com.intellij.fileTypeFactory" implementationName="*.log" />
|
|
198
|
+
</component>
|
|
199
|
+
<component name="Vcs.Log.History.Properties">
|
|
200
|
+
<option name="COLUMN_ID_ORDER">
|
|
201
|
+
<list>
|
|
202
|
+
<option value="Default.Root" />
|
|
203
|
+
<option value="Default.Author" />
|
|
204
|
+
<option value="Default.Date" />
|
|
205
|
+
<option value="Default.Subject" />
|
|
206
|
+
<option value="Space.CommitStatus" />
|
|
207
|
+
</list>
|
|
208
|
+
</option>
|
|
209
|
+
</component>
|
|
210
|
+
<component name="Vcs.Log.Tabs.Properties">
|
|
211
|
+
<option name="TAB_STATES">
|
|
212
|
+
<map>
|
|
213
|
+
<entry key="MAIN">
|
|
214
|
+
<value>
|
|
215
|
+
<State />
|
|
216
|
+
</value>
|
|
217
|
+
</entry>
|
|
218
|
+
</map>
|
|
219
|
+
</option>
|
|
220
|
+
</component>
|
|
221
|
+
<component name="VcsManagerConfiguration">
|
|
222
|
+
<MESSAGE value="chore: wip" />
|
|
223
|
+
<option name="LAST_COMMIT_MESSAGE" value="chore: wip" />
|
|
224
|
+
</component>
|
|
225
|
+
</project>
|
|
File without changes
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
<application>
|
|
2
|
+
<component name="TemplateSettings">
|
|
3
|
+
<option name="deletedKeys">
|
|
4
|
+
<list>
|
|
5
|
+
<TemplateKey>
|
|
6
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
7
|
+
<option name="key" value="shell_if" />
|
|
8
|
+
</TemplateKey>
|
|
9
|
+
<TemplateKey>
|
|
10
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
11
|
+
<option name="key" value="shell_elif" />
|
|
12
|
+
</TemplateKey>
|
|
13
|
+
<TemplateKey>
|
|
14
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
15
|
+
<option name="key" value="shell_select" />
|
|
16
|
+
</TemplateKey>
|
|
17
|
+
<TemplateKey>
|
|
18
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
19
|
+
<option name="key" value="shell_case" />
|
|
20
|
+
</TemplateKey>
|
|
21
|
+
<TemplateKey>
|
|
22
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
23
|
+
<option name="key" value="shell_for" />
|
|
24
|
+
</TemplateKey>
|
|
25
|
+
<TemplateKey>
|
|
26
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
27
|
+
<option name="key" value="shell_while" />
|
|
28
|
+
</TemplateKey>
|
|
29
|
+
<TemplateKey>
|
|
30
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
31
|
+
<option name="key" value="shell_until" />
|
|
32
|
+
</TemplateKey>
|
|
33
|
+
<TemplateKey>
|
|
34
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
35
|
+
<option name="key" value="shell_function" />
|
|
36
|
+
</TemplateKey>
|
|
37
|
+
<TemplateKey>
|
|
38
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
39
|
+
<option name="key" value="shell_string equal" />
|
|
40
|
+
</TemplateKey>
|
|
41
|
+
<TemplateKey>
|
|
42
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
43
|
+
<option name="key" value="shell_string not equal" />
|
|
44
|
+
</TemplateKey>
|
|
45
|
+
<TemplateKey>
|
|
46
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
47
|
+
<option name="key" value="shell_string is empty" />
|
|
48
|
+
</TemplateKey>
|
|
49
|
+
<TemplateKey>
|
|
50
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
51
|
+
<option name="key" value="shell_string not empty" />
|
|
52
|
+
</TemplateKey>
|
|
53
|
+
<TemplateKey>
|
|
54
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
55
|
+
<option name="key" value="shell_number equal" />
|
|
56
|
+
</TemplateKey>
|
|
57
|
+
<TemplateKey>
|
|
58
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
59
|
+
<option name="key" value="shell_number not equal" />
|
|
60
|
+
</TemplateKey>
|
|
61
|
+
<TemplateKey>
|
|
62
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
63
|
+
<option name="key" value="shell_number less" />
|
|
64
|
+
</TemplateKey>
|
|
65
|
+
<TemplateKey>
|
|
66
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
67
|
+
<option name="key" value="shell_number less or equal" />
|
|
68
|
+
</TemplateKey>
|
|
69
|
+
<TemplateKey>
|
|
70
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
71
|
+
<option name="key" value="shell_number greater" />
|
|
72
|
+
</TemplateKey>
|
|
73
|
+
<TemplateKey>
|
|
74
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
75
|
+
<option name="key" value="shell_number greater or equal" />
|
|
76
|
+
</TemplateKey>
|
|
77
|
+
<TemplateKey>
|
|
78
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
79
|
+
<option name="key" value="shell_file exists" />
|
|
80
|
+
</TemplateKey>
|
|
81
|
+
<TemplateKey>
|
|
82
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
83
|
+
<option name="key" value="shell_file not empty" />
|
|
84
|
+
</TemplateKey>
|
|
85
|
+
<TemplateKey>
|
|
86
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
87
|
+
<option name="key" value="shell_file readable" />
|
|
88
|
+
</TemplateKey>
|
|
89
|
+
<TemplateKey>
|
|
90
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
91
|
+
<option name="key" value="shell_file writable" />
|
|
92
|
+
</TemplateKey>
|
|
93
|
+
<TemplateKey>
|
|
94
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
95
|
+
<option name="key" value="shell_file executable" />
|
|
96
|
+
</TemplateKey>
|
|
97
|
+
<TemplateKey>
|
|
98
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
99
|
+
<option name="key" value="shell_file equals" />
|
|
100
|
+
</TemplateKey>
|
|
101
|
+
<TemplateKey>
|
|
102
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
103
|
+
<option name="key" value="shell_file newer" />
|
|
104
|
+
</TemplateKey>
|
|
105
|
+
<TemplateKey>
|
|
106
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
107
|
+
<option name="key" value="shell_file older" />
|
|
108
|
+
</TemplateKey>
|
|
109
|
+
<TemplateKey>
|
|
110
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
111
|
+
<option name="key" value="shell_path exists" />
|
|
112
|
+
</TemplateKey>
|
|
113
|
+
<TemplateKey>
|
|
114
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
115
|
+
<option name="key" value="shell_directory exists" />
|
|
116
|
+
</TemplateKey>
|
|
117
|
+
<TemplateKey>
|
|
118
|
+
<option name="groupName" value="Shell Script Hidden" />
|
|
119
|
+
<option name="key" value="shell_command exists" />
|
|
120
|
+
</TemplateKey>
|
|
121
|
+
</list>
|
|
122
|
+
</option>
|
|
123
|
+
</component>
|
|
124
|
+
</application>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<templateSet group="JavaScript">
|
|
2
|
+
<template name="log" value="// eslint-disable-next-line no-console console.log($END$)" description="console.log()" toReformat="true" toShortenFQNames="true">
|
|
3
|
+
<context />
|
|
4
|
+
</template>
|
|
5
|
+
<template name="clo" value="// eslint-disable-next-line no-console console.log($END$)" description="console.log() w/ eslint error suppressed" toReformat="true" toShortenFQNames="true" />
|
|
6
|
+
</templateSet>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<templateSet group="Stacks">
|
|
2
|
+
<template name="job" value="export default { // required schedule: Every.FifthMinute, // or '*/5 * * * *' action: () => { log.info('This cron job runs at every 5th minute') }, // optional name: 'Demo Job', description: 'A demo cron job that runs every 5th minute', } satisfies CronJob " description="Cron Job Template" toReformat="false" toShortenFQNames="true">
|
|
3
|
+
<context>
|
|
4
|
+
<option name="TypeScript" value="true" />
|
|
5
|
+
<option name="Vue" value="true" />
|
|
6
|
+
</context>
|
|
7
|
+
</template>
|
|
8
|
+
</templateSet>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# VS Code Configuration
|
|
2
|
+
|
|
3
|
+
This folder contains optimized VS Code settings for this particular project. Feel free to adjust it to your needs, as this is simply a "great starting point."
|
|
4
|
+
|
|
5
|
+
## 🚜 Contributing
|
|
6
|
+
|
|
7
|
+
Please review the [Contributing Guide](https://github.com/stacksjs/contributing) for details.
|
|
8
|
+
|
|
9
|
+
## 🏝 Community
|
|
10
|
+
|
|
11
|
+
For help, discussion about best practices, or any other conversation that would benefit from being searchable:
|
|
12
|
+
|
|
13
|
+
[Discussions on GitHub](https://github.com/stacksjs/stacks/discussions)
|
|
14
|
+
|
|
15
|
+
For casual chit-chat with others using this package:
|
|
16
|
+
|
|
17
|
+
[Join the Stacks Discord Server](https://discord.ow3.org)
|
|
18
|
+
|
|
19
|
+
## 📄 License
|
|
20
|
+
|
|
21
|
+
The MIT License (MIT). Please see [LICENSE](../../../LICENSE.md) for more information.
|
|
22
|
+
|
|
23
|
+
Made with ❤️
|
|
@@ -0,0 +1,111 @@
|
|
|
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.codeAction.showDocumentation": {
|
|
23
|
+
"enable": true
|
|
24
|
+
},
|
|
25
|
+
"editor.quickSuggestions": {
|
|
26
|
+
"strings": true
|
|
27
|
+
},
|
|
28
|
+
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
|
29
|
+
"[jsonc]": {
|
|
30
|
+
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
|
|
31
|
+
},
|
|
32
|
+
"[markdown]": {
|
|
33
|
+
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint",
|
|
34
|
+
"editor.formatOnSave": true,
|
|
35
|
+
"editor.formatOnPaste": true
|
|
36
|
+
},
|
|
37
|
+
"[shellscript]": {
|
|
38
|
+
"editor.defaultFormatter": "foxundermoon.shell-format"
|
|
39
|
+
},
|
|
40
|
+
"git.enableSmartCommit": true,
|
|
41
|
+
"npm.enableRunFromFolder": true,
|
|
42
|
+
"npm.packageManager": "pnpm",
|
|
43
|
+
"editor.gotoLocation.multipleDefinitions": "goto",
|
|
44
|
+
"unocss.root": "./.stacks/core/ui/unocss.ts",
|
|
45
|
+
"markdownlint.ignore": [
|
|
46
|
+
"CHANGELOG.md"
|
|
47
|
+
],
|
|
48
|
+
"markdownlint.config": {
|
|
49
|
+
"default": true,
|
|
50
|
+
"MD033": {
|
|
51
|
+
"allowed_elements": [
|
|
52
|
+
"details",
|
|
53
|
+
"summary"
|
|
54
|
+
]
|
|
55
|
+
},
|
|
56
|
+
"MD041": false
|
|
57
|
+
},
|
|
58
|
+
"search.exclude": {
|
|
59
|
+
"**/*.cjs": true,
|
|
60
|
+
"**/*.mjs": true,
|
|
61
|
+
"**/node_modules": true,
|
|
62
|
+
"CHANGELOG.md": true
|
|
63
|
+
},
|
|
64
|
+
"explorer.confirmDragAndDrop": false,
|
|
65
|
+
"explorer.fileNesting.enabled": true,
|
|
66
|
+
"explorer.fileNesting.expand": false,
|
|
67
|
+
"volar.autoCompleteRefs": false,
|
|
68
|
+
"volar.completion.preferredTagNameCase": "pascal",
|
|
69
|
+
"todo-tree.highlights.enabled": true,
|
|
70
|
+
"cSpell.ignorePaths": [
|
|
71
|
+
"node_modules",
|
|
72
|
+
"lang/de.yml"
|
|
73
|
+
],
|
|
74
|
+
"explorer.fileNesting.patterns": {
|
|
75
|
+
"*.css": "$(capture).css.map, $(capture).*.css",
|
|
76
|
+
"*.js": "$(capture).js.map, $(capture).*.js, $(capture)_*.js",
|
|
77
|
+
"*.jsx": "$(capture).js, $(capture).*.jsx, $(capture)_*.js, $(capture)_*.jsx",
|
|
78
|
+
"*.ts": "$(capture).js, $(capture).*.ts, $(capture)_*.js, $(capture)_*.ts",
|
|
79
|
+
"*.tsx": "$(capture).ts, $(capture).*.tsx, $(capture)_*.ts, $(capture)_*.tsx",
|
|
80
|
+
"*.vue": "$(capture).*.ts, $(capture).*.js",
|
|
81
|
+
".env": "*.env, .env.*, .envrc, env.d.ts",
|
|
82
|
+
".gitignore": ".gitattributes, .gitmodules, .gitmessage, .mailmap, .git-blame*",
|
|
83
|
+
"cargo.toml": ".clippy.toml, .rustfmt.toml, cargo.lock, clippy.toml, cross.toml, rust-toolchain.toml, rustfmt.toml",
|
|
84
|
+
"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*",
|
|
85
|
+
"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",
|
|
86
|
+
"shims.d.ts": "*.d.ts"
|
|
87
|
+
},
|
|
88
|
+
"cSpell.dictionaries": [
|
|
89
|
+
"stacks-dictionary"
|
|
90
|
+
],
|
|
91
|
+
"cSpell.diagnosticLevel": "Hint",
|
|
92
|
+
"cSpell.customDictionaries": {
|
|
93
|
+
"stacks": {
|
|
94
|
+
"name": "stacks-dictionary",
|
|
95
|
+
"path": "./.stacks/dictionary.txt",
|
|
96
|
+
"scope": "user",
|
|
97
|
+
"addWords": true
|
|
98
|
+
},
|
|
99
|
+
"custom": true // Enable the `custom` dictionary
|
|
100
|
+
},
|
|
101
|
+
"prettier.enable": false, // to ensure it is disabled
|
|
102
|
+
"terminal.integrated.scrollback": 10000,
|
|
103
|
+
"grammarly.files.include": [
|
|
104
|
+
"**/README.md",
|
|
105
|
+
"**/readme.md",
|
|
106
|
+
"**/*.txt"
|
|
107
|
+
],
|
|
108
|
+
"grammarly.files.exclude": [
|
|
109
|
+
"**/dictionary.txt"
|
|
110
|
+
]
|
|
111
|
+
}
|