stacks 0.44.11 → 0.44.12

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.
Files changed (86) hide show
  1. package/README.md +1 -0
  2. package/buddy/README.md +1 -0
  3. package/buddy/package.json +4 -3
  4. package/buddy/src/commands/add.ts +12 -12
  5. package/buddy/src/commands/build.ts +48 -31
  6. package/buddy/src/commands/clean.ts +6 -6
  7. package/buddy/src/commands/commit.ts +6 -6
  8. package/buddy/src/commands/create.ts +14 -14
  9. package/buddy/src/commands/dev.ts +15 -15
  10. package/buddy/src/commands/example.ts +11 -11
  11. package/buddy/src/commands/fresh.ts +19 -8
  12. package/buddy/src/commands/generate.ts +20 -20
  13. package/buddy/src/commands/key.ts +2 -2
  14. package/buddy/src/commands/lint.ts +8 -8
  15. package/buddy/src/commands/make.ts +33 -33
  16. package/buddy/src/commands/preinstall.ts +6 -6
  17. package/buddy/src/commands/prepublish.ts +6 -6
  18. package/buddy/src/commands/release.ts +2 -2
  19. package/buddy/src/commands/setup.ts +8 -8
  20. package/buddy/src/commands/test.ts +11 -11
  21. package/buddy/src/commands/types.ts +8 -8
  22. package/buddy/src/commands/update.ts +20 -20
  23. package/buddy/src/index.ts +1 -0
  24. package/core/actions/package.json +1 -1
  25. package/core/actions/src/build-component-libs.ts +15 -0
  26. package/core/actions/src/build-stacks.ts +9 -0
  27. package/core/actions/src/fresh.ts +3 -26
  28. package/core/actions/src/helpers/utils.ts +2 -1
  29. package/core/ai/package.json +1 -1
  30. package/core/alias/package.json +1 -1
  31. package/core/arrays/package.json +1 -1
  32. package/core/auth/package.json +1 -1
  33. package/core/build/package.json +1 -1
  34. package/core/cache/package.json +1 -1
  35. package/core/cli/package.json +1 -1
  36. package/core/cli/src/actions/run.ts +2 -2
  37. package/core/cli/src/helpers.ts +1 -1
  38. package/core/cloud/package.json +1 -1
  39. package/core/collections/package.json +1 -1
  40. package/core/config/package.json +1 -1
  41. package/core/dashboard/package.json +1 -1
  42. package/core/database/package.json +1 -1
  43. package/core/datetime/package.json +1 -1
  44. package/core/desktop/package.json +1 -1
  45. package/core/docs/node_modules/.bin/vitepress +2 -2
  46. package/core/docs/package.json +2 -2
  47. package/core/domains/package.json +1 -1
  48. package/core/drivers/package.json +1 -1
  49. package/core/email/package.json +1 -1
  50. package/core/error-handling/package.json +1 -1
  51. package/core/git/package.json +1 -1
  52. package/core/health/README.md +56 -0
  53. package/core/health/node_modules/.bin/mkdist +17 -0
  54. package/core/health/node_modules/.bin/tsc +17 -0
  55. package/core/health/node_modules/.bin/tsserver +17 -0
  56. package/core/health/package.json +54 -0
  57. package/core/health/src/drivers/ohdear.ts +1 -0
  58. package/core/health/src/index.ts +1 -0
  59. package/core/health/src/notifications/index.ts +1 -0
  60. package/core/health/tests/example.test.ts +7 -0
  61. package/core/lint/package.json +1 -1
  62. package/core/logging/package.json +1 -1
  63. package/core/modules/package.json +1 -1
  64. package/core/notifications/README.md +205 -30
  65. package/core/notifications/package.json +1 -1
  66. package/core/objects/package.json +1 -1
  67. package/core/path/package.json +1 -1
  68. package/core/payments/package.json +1 -1
  69. package/core/realtime/package.json +1 -1
  70. package/core/router/package.json +1 -1
  71. package/core/search-engine/package.json +2 -2
  72. package/core/security/package.json +1 -1
  73. package/core/server/package.json +1 -1
  74. package/core/storage/package.json +1 -1
  75. package/core/strings/package.json +1 -1
  76. package/core/testing/package.json +1 -1
  77. package/core/types/node_modules/.bin/vitepress +2 -2
  78. package/core/types/package.json +2 -2
  79. package/core/types/src/cli.ts +8 -0
  80. package/core/ui/package.json +1 -1
  81. package/core/utils/package.json +4 -4
  82. package/core/x-ray/package.json +1 -1
  83. package/package.json +6 -6
  84. package/tsconfig.json +2 -2
  85. package/components/vue/dist/.gitkeep +0 -0
  86. package/components/web/dist/.gitkeep +0 -0
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/search-engine",
3
3
  "type": "module",
4
- "version": "0.44.11",
4
+ "version": "0.44.12",
5
5
  "packageManager": "pnpm@7.18.2",
6
6
  "description": "The Stacks search engine integrations.",
7
7
  "author": "Chris Breuer",
@@ -52,7 +52,7 @@
52
52
  "peerDependencies": {
53
53
  "@stacksjs/cli": "workspace:*",
54
54
  "@stacksjs/config": "workspace:*",
55
- "@vueuse/core": "^9.6.0",
55
+ "@vueuse/core": "^9.7.0",
56
56
  "meilisearch": "^0.30.0",
57
57
  "vue": "^3.2.45"
58
58
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/security",
3
3
  "type": "module",
4
- "version": "0.44.11",
4
+ "version": "0.44.12",
5
5
  "packageManager": "pnpm@7.18.2",
6
6
  "description": "The Stacks framework security.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/server",
3
3
  "type": "module",
4
- "version": "0.44.11",
4
+ "version": "0.44.12",
5
5
  "packageManager": "pnpm@7.18.2",
6
6
  "description": "Local development and production-ready.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/storage",
3
3
  "type": "module",
4
- "version": "0.44.11",
4
+ "version": "0.44.12",
5
5
  "packageManager": "pnpm@7.18.2",
6
6
  "description": "The Stacks file system.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/strings",
3
3
  "type": "module",
4
- "version": "0.44.11",
4
+ "version": "0.44.12",
5
5
  "packageManager": "pnpm@7.18.2",
6
6
  "description": "The Stacks string utilities.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/testing",
3
3
  "type": "module",
4
- "version": "0.44.11",
4
+ "version": "0.44.12",
5
5
  "packageManager": "pnpm@7.18.2",
6
6
  "description": "The Stacks way to test.",
7
7
  "author": "Chris Breuer",
@@ -11,7 +11,7 @@ else
11
11
  export NODE_PATH="$NODE_PATH:/home/runner/work/stacks/stacks/node_modules/.pnpm/node_modules"
12
12
  fi
13
13
  if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/vitepress@1.0.0-alpha.31_jxge4szrecc54xj562j6nv3uwi/node_modules/vitepress/bin/vitepress.js" "$@"
14
+ exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/vitepress@1.0.0-alpha.32_jxge4szrecc54xj562j6nv3uwi/node_modules/vitepress/bin/vitepress.js" "$@"
15
15
  else
16
- exec node "$basedir/../../../../../node_modules/.pnpm/vitepress@1.0.0-alpha.31_jxge4szrecc54xj562j6nv3uwi/node_modules/vitepress/bin/vitepress.js" "$@"
16
+ exec node "$basedir/../../../../../node_modules/.pnpm/vitepress@1.0.0-alpha.32_jxge4szrecc54xj562j6nv3uwi/node_modules/vitepress/bin/vitepress.js" "$@"
17
17
  fi
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/types",
3
3
  "type": "module",
4
- "version": "0.44.11",
4
+ "version": "0.44.12",
5
5
  "packageManager": "pnpm@7.18.2",
6
6
  "description": "The Stacks framework types.",
7
7
  "author": "Chris Breuer",
@@ -66,6 +66,6 @@
66
66
  "vite-plugin-inspect": "^0.7.10",
67
67
  "vite-plugin-vue-layouts": "^0.7.0",
68
68
  "vite-ssg": "^0.22.1",
69
- "vitepress": "1.0.0-alpha.31"
69
+ "vitepress": "1.0.0-alpha.32"
70
70
  }
71
71
  }
@@ -192,6 +192,14 @@ export const enum NpmScript {
192
192
  export const enum Action {
193
193
  Release = 'release',
194
194
  Prepublish = 'prepublish',
195
+ BuildStacks = 'build-stacks',
196
+ BuildComponentLibs = 'build-component-libs',
197
+ BuildVueComponentLib = 'build-vue-component-lib',
198
+ BuildWebComponentLib = 'build-web-component-lib',
199
+ BuildCli = 'build-cli',
200
+ BuildDocs = 'build-docs',
201
+ BuildFunctionLib = 'build-function-lib',
202
+ Fresh = 'fresh',
195
203
  }
196
204
 
197
205
  export type { CAC as CLI } from 'cac'
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/ui",
3
3
  "type": "module",
4
- "version": "0.44.11",
4
+ "version": "0.44.12",
5
5
  "packageManager": "pnpm@7.18.2",
6
6
  "description": "The Stacks atomic UI engine, powered by UnoCSS.",
7
7
  "author": "Chris Breuer",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/utils",
3
3
  "type": "module",
4
- "version": "0.44.11",
4
+ "version": "0.44.12",
5
5
  "packageManager": "pnpm@7.18.2",
6
6
  "description": "The Stacks helper functions.",
7
7
  "author": "Chris Breuer",
@@ -54,10 +54,10 @@
54
54
  "@stacksjs/path": "workspace:*",
55
55
  "@stacksjs/storage": "workspace:*",
56
56
  "@stacksjs/types": "workspace:*",
57
- "@vueuse/core": "^9.6.0",
57
+ "@vueuse/core": "^9.7.0",
58
58
  "@vueuse/head": "^1.0.22",
59
- "@vueuse/math": "^9.6.0",
60
- "@vueuse/shared": "^9.6.0",
59
+ "@vueuse/math": "^9.7.0",
60
+ "@vueuse/shared": "^9.7.0",
61
61
  "defu": "^6.1.1",
62
62
  "detect-indent": "^7.0.1",
63
63
  "detect-newline": "^4.0.0",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/x-ray",
3
3
  "type": "module",
4
- "version": "0.44.11",
4
+ "version": "0.44.12",
5
5
  "packageManager": "pnpm@7.18.2",
6
6
  "description": "All you need to debug, log & analyze.",
7
7
  "author": "Chris Breuer",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "stacks",
3
3
  "type": "module",
4
- "version": "0.44.11",
4
+ "version": "0.44.12",
5
5
  "packageManager": "pnpm@7.18.2",
6
6
  "description": "The Stacks framework.",
7
7
  "author": "Chris Breuer",
@@ -65,12 +65,12 @@
65
65
  },
66
66
  "web-types": "./web-types.json",
67
67
  "dependencies": {
68
- "@stacksjs/buddy": "0.44.11"
68
+ "@stacksjs/buddy": "0.44.12"
69
69
  },
70
70
  "scripts": {
71
71
  "buddy": "esno ./buddy/src/cli.ts",
72
- "stx": "pnpm run stacks",
73
- "stacks": "pnpm run stacks",
72
+ "stx": "pnpm run buddy",
73
+ "stacks": "pnpm run buddy",
74
74
  "prepublish": "pnpm buddy prepublish",
75
75
  "fresh": "pnpm buddy fresh",
76
76
  "clean": "pnpm buddy clean",
@@ -95,9 +95,9 @@
95
95
  "build:functions": "npx vite build -c ./core/build/src/functions.ts",
96
96
  "build:docs": "npx vitepress build ../apps/docs",
97
97
  "build:pages": "npx vite-ssg build ./pages -c ./core/build/src/pages.ts",
98
- "build:cli": "npx unbuild",
98
+ "build:cli": "pnpm buddy build:cli",
99
99
  "build:core": "pnpm --filter './core/**' --filter='!./core/config' build && pnpm --filter './core/config' build",
100
- "build:stacks": "npx mkdist -d && pnpm build:cli && pnpm build:core && cp ./core/* ./",
100
+ "build:stacks": "pnpm buddy build:stacks",
101
101
  "build:all": "wip",
102
102
  "prod": "pnpm run build",
103
103
  "prod:components": "pnpm run build:components",
package/tsconfig.json CHANGED
@@ -94,7 +94,7 @@
94
94
  "functions/*": ["../functions/*"],
95
95
  "config/*": ["../config/*"],
96
96
  "components/*": ["../components/*"],
97
- "pages/*": ["../pages/*"]
97
+ "views/*": ["../views/*"]
98
98
  }
99
99
  },
100
100
  "include": [
@@ -102,7 +102,7 @@
102
102
  "./**/*",
103
103
  "../components/**/*",
104
104
  "../functions/**/*",
105
- "../pages/**/*"
105
+ "../views/**/*"
106
106
  ],
107
107
  "exclude": [
108
108
  "./vitest.config.ts",
File without changes
File without changes