stacks 0.56.3 → 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.
Files changed (95) hide show
  1. package/core/actions/package.json +3 -4
  2. package/core/ai/package.json +2 -2
  3. package/core/alias/build.config.ts +3 -3
  4. package/core/alias/package.json +6 -2
  5. package/core/analytics/package.json +2 -2
  6. package/core/arrays/package.json +2 -2
  7. package/core/auth/package.json +2 -2
  8. package/core/buddy/build.config.ts +0 -1
  9. package/core/buddy/package.json +2 -1
  10. package/core/build/build.config.ts +1 -4
  11. package/core/build/package.json +4 -4
  12. package/core/cache/package.json +2 -2
  13. package/core/chat/package.json +6 -6
  14. package/core/cli/build.config.ts +0 -3
  15. package/core/cli/package.json +1 -2
  16. package/core/cloud/package.json +2 -2
  17. package/core/collections/package.json +2 -2
  18. package/core/config/build.config.ts +1 -4
  19. package/core/config/package.json +1 -1
  20. package/core/database/build.config.ts +5 -5
  21. package/core/database/package.json +2 -2
  22. package/core/datetime/build.config.ts +2 -3
  23. package/core/datetime/package.json +2 -2
  24. package/core/desktop/package.json +2 -2
  25. package/core/development/build.config.ts +10 -7
  26. package/core/development/package.json +3 -3
  27. package/core/dns/build.config.ts +0 -4
  28. package/core/dns/package.json +1 -2
  29. package/core/docs/package.json +2 -2
  30. package/core/email/build.config.ts +2 -3
  31. package/core/email/package.json +13 -13
  32. package/core/error-handling/build.config.ts +5 -5
  33. package/core/error-handling/package.json +1 -2
  34. package/core/events/build.config.ts +2 -4
  35. package/core/events/package.json +1 -3
  36. package/core/faker/package.json +2 -2
  37. package/core/git/package.json +2 -2
  38. package/core/health/package.json +2 -2
  39. package/core/lint/package.json +3 -3
  40. package/core/logging/build.config.ts +16 -7
  41. package/core/logging/package.json +4 -6
  42. package/core/modules/package.json +1 -2
  43. package/core/notifications/build.config.ts +4 -3
  44. package/core/notifications/package.json +23 -23
  45. package/core/objects/build.config.ts +0 -4
  46. package/core/objects/package.json +2 -2
  47. package/core/orm/build.config.ts +2 -4
  48. package/core/orm/package.json +2 -2
  49. package/core/pages/package.json +2 -2
  50. package/core/path/build.config.ts +4 -2
  51. package/core/path/package.json +1 -2
  52. package/core/payments/package.json +2 -2
  53. package/core/push/package.json +4 -4
  54. package/core/query-builder/package.json +2 -2
  55. package/core/queue/package.json +2 -2
  56. package/core/realtime/package.json +2 -2
  57. package/core/repl/package.json +2 -2
  58. package/core/router/build.config.ts +0 -4
  59. package/core/router/package.json +2 -2
  60. package/core/scheduler/package.json +2 -2
  61. package/core/search-engine/build.config.ts +0 -4
  62. package/core/search-engine/package.json +2 -2
  63. package/core/security/build.config.ts +0 -4
  64. package/core/security/package.json +2 -2
  65. package/core/server/package.json +2 -3
  66. package/core/signals/package.json +2 -2
  67. package/core/slug/package.json +2 -2
  68. package/core/sms/package.json +12 -12
  69. package/core/storage/build.config.ts +2 -1
  70. package/core/storage/package.json +1 -2
  71. package/core/strings/build.config.ts +2 -4
  72. package/core/strings/package.json +2 -2
  73. package/core/testing/package.json +3 -3
  74. package/core/tinker/build.config.ts +2 -1
  75. package/core/tinker/package.json +9 -8
  76. package/core/tinker/src/index.ts +1 -1
  77. package/core/tinker/{tinker.js → src/tinker.ts} +1 -1
  78. package/core/types/build.config.ts +23 -10
  79. package/core/types/package.json +7 -6
  80. package/core/ui/package.json +3 -3
  81. package/core/utils/build.config.ts +1 -5
  82. package/core/utils/package.json +8 -8
  83. package/core/validation/build.config.ts +0 -4
  84. package/core/validation/package.json +2 -2
  85. package/core/vite-plugin/build.config.ts +0 -4
  86. package/core/vite-plugin/package.json +2 -2
  87. package/ide/vscode/.vscode/settings.json +12 -0
  88. package/package.json +91 -91
  89. package/stacks/dashboard/package.json +1 -0
  90. package/stacks/tables/build.config.ts +6 -8
  91. package/stacks/tinker/package.json +1 -0
  92. package/stacks/x-ray/package.json +1 -0
  93. package/views/desktop/package.json +7 -4
  94. package/ide/jetbrains/.fleet/run.json +0 -5
  95. package/ide/jetbrains/.idea/workspace.xml +0 -225
@@ -2,12 +2,11 @@ import { alias, defineBuildConfig } from '@stacksjs/development'
2
2
 
3
3
  export default defineBuildConfig({
4
4
  alias,
5
+
5
6
  entries: [
6
7
  './src/index',
7
8
  ],
9
+
8
10
  declaration: true,
9
11
  clean: true,
10
- rollup: {
11
- inlineDependencies: true,
12
- },
13
12
  })
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/email",
3
3
  "type": "module",
4
- "version": "0.56.3",
4
+ "version": "0.56.23",
5
5
  "packageManager": "pnpm@8.6.5",
6
6
  "description": "The Stacks Email integration. Painlessly create & manage your inboxes, templates, and send emails.",
7
7
  "author": "Chris Breuer",
@@ -37,6 +37,7 @@
37
37
  "import": "./dist/index.mjs"
38
38
  }
39
39
  },
40
+ "main": "dist/index.mjs",
40
41
  "module": "dist/index.mjs",
41
42
  "types": "dist/index.d.ts",
42
43
  "contributors": [
@@ -49,22 +50,21 @@
49
50
  "scripts": {
50
51
  "build": "unbuild",
51
52
  "dev": "unbuild --stub",
52
- "prepublishOnly": "unbuild",
53
53
  "typecheck": "tsc --noEmit"
54
54
  },
55
55
  "peerDependencies": {
56
56
  "@maizzle/framework": "^4.4.6",
57
- "@novu/emailjs": "^0.16.1",
58
- "@novu/mailgun": "^0.16.1",
59
- "@novu/mailjet": "^0.16.1",
60
- "@novu/mandrill": "^0.16.1",
61
- "@novu/netcore": "^0.16.1",
62
- "@novu/node": "^0.16.1",
63
- "@novu/nodemailer": "^0.16.1",
64
- "@novu/postmark": "^0.16.1",
65
- "@novu/sendgrid": "^0.16.1",
66
- "@novu/ses": "^0.16.1",
67
- "@novu/stateless": "^0.16.1",
57
+ "@novu/emailjs": "^0.16.2",
58
+ "@novu/mailgun": "^0.16.2",
59
+ "@novu/mailjet": "^0.16.2",
60
+ "@novu/mandrill": "^0.16.2",
61
+ "@novu/netcore": "^0.16.2",
62
+ "@novu/node": "^0.16.2",
63
+ "@novu/nodemailer": "^0.16.2",
64
+ "@novu/postmark": "^0.16.2",
65
+ "@novu/sendgrid": "^0.16.2",
66
+ "@novu/ses": "^0.16.2",
67
+ "@novu/stateless": "^0.16.2",
68
68
  "@stacksjs/cli": "workspace:*",
69
69
  "@stacksjs/config": "workspace:*",
70
70
  "@stacksjs/error-handling": "workspace:*",
@@ -2,18 +2,18 @@ import { alias, defineBuildConfig } from '@stacksjs/development'
2
2
 
3
3
  export default defineBuildConfig({
4
4
  alias,
5
+
5
6
  entries: [
6
7
  './src/index',
7
8
  ],
8
- declaration: true,
9
- clean: true,
9
+
10
10
  externals: [
11
11
  '@stacksjs/storage',
12
12
  '@stacksjs/cli',
13
13
  '@stacksjs/path',
14
14
  '@stacksjs/types',
15
15
  ],
16
- rollup: {
17
- inlineDependencies: true,
18
- },
16
+
17
+ declaration: true,
18
+ clean: true,
19
19
  })
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/error-handling",
3
3
  "type": "module",
4
- "version": "0.56.3",
4
+ "version": "0.56.23",
5
5
  "packageManager": "pnpm@8.6.5",
6
6
  "description": "Type safe error handling.",
7
7
  "author": "Chris Breuer",
@@ -42,7 +42,6 @@
42
42
  "scripts": {
43
43
  "build": "unbuild",
44
44
  "dev": "unbuild --stub",
45
- "prepublishOnly": "unbuild",
46
45
  "typecheck": "tsc --noEmit"
47
46
  },
48
47
  "peerDependencies": {
@@ -2,13 +2,11 @@ import { alias, defineBuildConfig } from '@stacksjs/development'
2
2
 
3
3
  export default defineBuildConfig({
4
4
  alias,
5
+
5
6
  entries: [
6
7
  './src/index',
7
8
  ],
9
+
8
10
  declaration: true,
9
11
  clean: true,
10
- rollup: {
11
- emitCJS: true,
12
- inlineDependencies: true,
13
- },
14
12
  })
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/events",
3
3
  "type": "module",
4
- "version": "0.56.3",
4
+ "version": "0.56.23",
5
5
  "packageManager": "pnpm@8.6.5",
6
6
  "description": "Functional event emitting.",
7
7
  "author": "Chris Breuer",
@@ -26,7 +26,6 @@
26
26
  "exports": {
27
27
  ".": {
28
28
  "types": "./dist/index.d.ts",
29
- "require": "./dist/index.cjs",
30
29
  "import": "./dist/index.mjs"
31
30
  }
32
31
  },
@@ -42,7 +41,6 @@
42
41
  "scripts": {
43
42
  "build": "unbuild",
44
43
  "dev": "unbuild --stub",
45
- "prepublishOnly": "unbuild",
46
44
  "typecheck": "tsc --noEmit"
47
45
  },
48
46
  "peerDependencies": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/faker",
3
3
  "type": "module",
4
- "version": "0.56.3",
4
+ "version": "0.56.23",
5
5
  "packageManager": "pnpm@8.6.5",
6
6
  "description": "Faker functions.",
7
7
  "author": "Chris Breuer",
@@ -29,6 +29,7 @@
29
29
  "import": "./dist/index.mjs"
30
30
  }
31
31
  },
32
+ "main": "dist/index.mjs",
32
33
  "module": "dist/index.mjs",
33
34
  "types": "dist/index.d.ts",
34
35
  "contributors": [
@@ -41,7 +42,6 @@
41
42
  "scripts": {
42
43
  "build": "unbuild",
43
44
  "dev": "unbuild --stub",
44
- "prepublishOnly": "unbuild",
45
45
  "typecheck": "tsc --noEmit"
46
46
  },
47
47
  "peerDependencies": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/git",
3
3
  "type": "module",
4
- "version": "0.56.3",
4
+ "version": "0.56.23",
5
5
  "packageManager": "pnpm@8.6.5",
6
6
  "description": "The Stacks git utilities & conventions.",
7
7
  "author": "Chris Breuer",
@@ -29,6 +29,7 @@
29
29
  "import": "./dist/index.mjs"
30
30
  }
31
31
  },
32
+ "main": "dist/index.mjs",
32
33
  "module": "dist/index.mjs",
33
34
  "types": "dist/index.d.ts",
34
35
  "contributors": [
@@ -41,7 +42,6 @@
41
42
  "scripts": {
42
43
  "build": "unbuild",
43
44
  "dev": "unbuild --stub",
44
- "prepublishOnly": "unbuild",
45
45
  "typecheck": "tsc --noEmit"
46
46
  },
47
47
  "peerDependencies": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/health",
3
3
  "type": "module",
4
- "version": "0.56.3",
4
+ "version": "0.56.23",
5
5
  "packageManager": "pnpm@8.6.5",
6
6
  "description": "The Stacks Health services.",
7
7
  "author": "Chris Breuer",
@@ -29,6 +29,7 @@
29
29
  "import": "./dist/index.mjs"
30
30
  }
31
31
  },
32
+ "main": "dist/index.mjs",
32
33
  "module": "dist/index.mjs",
33
34
  "types": "dist/index.d.ts",
34
35
  "contributors": [
@@ -41,7 +42,6 @@
41
42
  "scripts": {
42
43
  "build": "unbuild",
43
44
  "dev": "unbuild --stub",
44
- "prepublishOnly": "unbuild",
45
45
  "typecheck": "tsc --noEmit"
46
46
  },
47
47
  "peerDependencies": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/lint",
3
3
  "type": "module",
4
- "version": "0.56.3",
4
+ "version": "0.56.23",
5
5
  "packageManager": "pnpm@8.6.5",
6
6
  "description": "The Stacks way to lint.",
7
7
  "author": "Chris Breuer",
@@ -30,6 +30,7 @@
30
30
  "import": "./dist/index.mjs"
31
31
  }
32
32
  },
33
+ "main": "dist/index.mjs",
33
34
  "module": "dist/index.mjs",
34
35
  "types": "dist/index.d.ts",
35
36
  "contributors": [
@@ -42,14 +43,13 @@
42
43
  "scripts": {
43
44
  "build": "unbuild",
44
45
  "dev": "unbuild --stub",
45
- "prepublishOnly": "unbuild",
46
46
  "typecheck": "tsc --noEmit"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "@ow3/eslint-config": "^0.44.1",
50
50
  "@types/eslint": "^8.40.2",
51
51
  "eslint": "^8.43.0",
52
- "lint-staged": "^13.2.2",
52
+ "lint-staged": "^13.2.3",
53
53
  "publint": "^0.1.12"
54
54
  },
55
55
  "devDependencies": {
@@ -1,17 +1,26 @@
1
- import { alias, defineBuildConfig } from '@stacksjs/development'
1
+ import { defineBuildConfig } from 'unbuild'
2
+ import { alias } from '@stacksjs/alias'
2
3
 
3
4
  export default defineBuildConfig({
4
5
  alias,
6
+
5
7
  entries: [
6
8
  './src/index',
7
9
  ],
8
- declaration: true,
9
- clean: true,
10
- externals: [
11
- 'vue-ray',
12
- 'node-ray',
13
- ],
10
+
11
+ // externals: [
12
+ // '@stacksjs/development',
13
+ // '@stacksjs/alias',
14
+ // 'consola',
15
+ // 'vue-ray',
16
+ // 'node-ray',
17
+ // ],
18
+
14
19
  rollup: {
20
+ alias,
15
21
  inlineDependencies: true,
16
22
  },
23
+
24
+ declaration: true,
25
+ clean: false, // logging, alias, development, storage, tinker, and path are all prerequisites for other packages—needed for the release process
17
26
  })
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/logging",
3
3
  "type": "module",
4
- "version": "0.56.3",
4
+ "version": "0.56.23",
5
5
  "packageManager": "pnpm@8.6.5",
6
6
  "description": "The Stacks logging system.",
7
7
  "author": "Chris Breuer",
@@ -42,22 +42,20 @@
42
42
  "scripts": {
43
43
  "build": "unbuild",
44
44
  "dev": "unbuild --stub",
45
- "prepublishOnly": "unbuild",
46
45
  "typecheck": "tsc --noEmit"
47
46
  },
48
47
  "peerDependencies": {
49
- "consola": "^3.1.0",
48
+ "consola": "^3.2.2",
50
49
  "node-ray": "1.21.0",
51
50
  "vue-ray": "^1.17.4"
52
51
  },
53
52
  "dependencies": {
53
+ "consola": "^3.2.2",
54
54
  "node-ray": "1.21.0",
55
55
  "vue-ray": "^1.17.4"
56
56
  },
57
57
  "devDependencies": {
58
- "@stacksjs/testing": "workspace:*",
59
- "tsx": "^3.12.7",
60
- "typescript": "^5.1.3",
58
+ "typescript": "^5.1.5",
61
59
  "unbuild": "^1.2.1"
62
60
  }
63
61
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/modules",
3
3
  "type": "module",
4
- "version": "0.56.3",
4
+ "version": "0.56.23",
5
5
  "packageManager": "pnpm@8.6.5",
6
6
  "description": "The Stacks framework modules.",
7
7
  "author": "Chris Breuer",
@@ -47,7 +47,6 @@
47
47
  "scripts": {
48
48
  "build": "unbuild",
49
49
  "dev": "unbuild --stub",
50
- "prepublishOnly": "unbuild",
51
50
  "typecheck": "tsc --noEmit"
52
51
  },
53
52
  "peerDependencies": {
@@ -6,10 +6,11 @@ export default defineBuildConfig({
6
6
  './src/utils/config',
7
7
  './src/index',
8
8
  ],
9
- declaration: true,
10
- clean: true,
9
+
11
10
  rollup: {
12
11
  emitCJS: true,
13
- inlineDependencies: true,
14
12
  },
13
+ declaration: true,
14
+ clean: true,
15
+
15
16
  })
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/notifications",
3
3
  "type": "module",
4
- "version": "0.56.3",
4
+ "version": "0.56.23",
5
5
  "packageManager": "pnpm@8.6.5",
6
6
  "description": "The Stacks notifications integration.",
7
7
  "author": "Chris Breuer",
@@ -36,6 +36,7 @@
36
36
  "import": "./dist/index.mjs"
37
37
  }
38
38
  },
39
+ "main": "dist/index.mjs",
39
40
  "module": "dist/index.mjs",
40
41
  "types": "dist/index.d.ts",
41
42
  "contributors": [
@@ -48,7 +49,6 @@
48
49
  "scripts": {
49
50
  "build": "unbuild",
50
51
  "dev": "unbuild --stub",
51
- "prepublishOnly": "unbuild",
52
52
  "typecheck": "tsc --noEmit"
53
53
  },
54
54
  "peerDependencies": {
@@ -65,27 +65,27 @@
65
65
  "@maizzle/framework": "^4.4.6"
66
66
  },
67
67
  "optionalDependencies": {
68
- "@novu/discord": "^0.16.1",
69
- "@novu/emailjs": "^0.16.1",
70
- "@novu/gupshup": "^0.16.1",
71
- "@novu/mailgun": "^0.16.1",
72
- "@novu/mailjet": "^0.16.1",
73
- "@novu/mandrill": "^0.16.1",
74
- "@novu/netcore": "^0.16.1",
75
- "@novu/nexmo": "^0.16.1",
76
- "@novu/node": "^0.16.1",
77
- "@novu/nodemailer": "^0.16.1",
78
- "@novu/plivo": "^0.16.1",
79
- "@novu/postmark": "^0.16.1",
80
- "@novu/sendgrid": "^0.16.1",
81
- "@novu/ses": "^0.16.1",
82
- "@novu/slack": "^0.16.1",
83
- "@novu/sms77": "^0.16.1",
84
- "@novu/sns": "^0.16.1",
85
- "@novu/stateless": "^0.16.1",
86
- "@novu/telnyx": "^0.16.1",
87
- "@novu/termii": "^0.16.1",
88
- "@novu/twilio": "^0.16.1"
68
+ "@novu/discord": "^0.16.2",
69
+ "@novu/emailjs": "^0.16.2",
70
+ "@novu/gupshup": "^0.16.2",
71
+ "@novu/mailgun": "^0.16.2",
72
+ "@novu/mailjet": "^0.16.2",
73
+ "@novu/mandrill": "^0.16.2",
74
+ "@novu/netcore": "^0.16.2",
75
+ "@novu/nexmo": "^0.16.2",
76
+ "@novu/node": "^0.16.2",
77
+ "@novu/nodemailer": "^0.16.2",
78
+ "@novu/plivo": "^0.16.2",
79
+ "@novu/postmark": "^0.16.2",
80
+ "@novu/sendgrid": "^0.16.2",
81
+ "@novu/ses": "^0.16.2",
82
+ "@novu/slack": "^0.16.2",
83
+ "@novu/sms77": "^0.16.2",
84
+ "@novu/sns": "^0.16.2",
85
+ "@novu/stateless": "^0.16.2",
86
+ "@novu/telnyx": "^0.16.2",
87
+ "@novu/termii": "^0.16.2",
88
+ "@novu/twilio": "^0.16.2"
89
89
  },
90
90
  "devDependencies": {
91
91
  "@stacksjs/development": "workspace:*"
@@ -14,10 +14,6 @@ export default defineBuildConfig({
14
14
  '@stacksjs/validation',
15
15
  ],
16
16
 
17
- rollup: {
18
- inlineDependencies: true,
19
- },
20
-
21
17
  clean: true,
22
18
  declaration: true,
23
19
  })
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/objects",
3
3
  "type": "module",
4
- "version": "0.56.3",
4
+ "version": "0.56.23",
5
5
  "packageManager": "pnpm@8.6.5",
6
6
  "description": "The Stacks objects.",
7
7
  "author": "Chris Breuer",
@@ -28,6 +28,7 @@
28
28
  "import": "./dist/index.mjs"
29
29
  }
30
30
  },
31
+ "main": "dist/index.mjs",
31
32
  "module": "dist/index.mjs",
32
33
  "types": "dist/index.d.ts",
33
34
  "contributors": [
@@ -40,7 +41,6 @@
40
41
  "scripts": {
41
42
  "build": "unbuild",
42
43
  "dev": "unbuild --stub",
43
- "prepublishOnly": "unbuild",
44
44
  "typecheck": "tsc --noEmit"
45
45
  },
46
46
  "dependencies": {
@@ -2,13 +2,11 @@ import { alias, defineBuildConfig } from '@stacksjs/development'
2
2
 
3
3
  export default defineBuildConfig({
4
4
  alias,
5
+
5
6
  entries: [
6
7
  './src/index',
7
8
  ],
9
+
8
10
  declaration: true,
9
11
  clean: true,
10
- rollup: {
11
- emitCJS: false,
12
- inlineDependencies: true,
13
- },
14
12
  })
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/orm",
3
3
  "type": "module",
4
- "version": "0.56.3",
4
+ "version": "0.56.23",
5
5
  "packageManager": "pnpm@8.6.5",
6
6
  "description": "The Stacks ORM integration",
7
7
  "author": "Chris Breuer",
@@ -26,6 +26,7 @@
26
26
  "import": "./dist/index.mjs"
27
27
  }
28
28
  },
29
+ "main": "dist/index.mjs",
29
30
  "module": "dist/index.mjs",
30
31
  "types": "dist/index.d.ts",
31
32
  "contributors": [
@@ -38,7 +39,6 @@
38
39
  "scripts": {
39
40
  "build": "unbuild",
40
41
  "dev": "unbuild --stub",
41
- "prepublishOnly": "unbuild",
42
42
  "typecheck": "tsc --noEmit"
43
43
  },
44
44
  "peerDependencies": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/pages",
3
3
  "type": "module",
4
- "version": "0.56.3",
4
+ "version": "0.56.23",
5
5
  "packageManager": "pnpm@8.6.5",
6
6
  "description": "The Stacks Pages engine.",
7
7
  "author": "Chris Breuer",
@@ -28,6 +28,7 @@
28
28
  "import": "./dist/index.mjs"
29
29
  }
30
30
  },
31
+ "main": "dist/index.mjs",
31
32
  "module": "dist/index.mjs",
32
33
  "types": "dist/index.d.ts",
33
34
  "contributors": [
@@ -40,7 +41,6 @@
40
41
  "scripts": {
41
42
  "build": "unbuild",
42
43
  "dev": "unbuild --stub",
43
- "prepublishOnly": "unbuild",
44
44
  "typecheck": "tsc --noEmit"
45
45
  },
46
46
  "peerDependencies": {
@@ -2,13 +2,15 @@ import { alias, defineBuildConfig } from '@stacksjs/development'
2
2
 
3
3
  export default defineBuildConfig({
4
4
  alias,
5
+
5
6
  entries: [
6
7
  './src/index',
7
8
  ],
8
- clean: true,
9
+
10
+ clean: false, // logging, alias, development, storage, tinker, and path are all prerequisites for other packages—needed for the release process
9
11
  declaration: true,
12
+
10
13
  rollup: {
11
14
  emitCJS: true,
12
- inlineDependencies: true,
13
15
  },
14
16
  })
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/path",
3
3
  "type": "module",
4
- "version": "0.56.3",
4
+ "version": "0.56.23",
5
5
  "packageManager": "pnpm@8.6.5",
6
6
  "description": "The Stacks path.",
7
7
  "author": "Chris Breuer",
@@ -44,7 +44,6 @@
44
44
  "scripts": {
45
45
  "build": "unbuild",
46
46
  "dev": "unbuild --stub",
47
- "prepublishOnly": "unbuild",
48
47
  "typecheck": "tsc --noEmit"
49
48
  },
50
49
  "dependencies": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/payments",
3
3
  "type": "module",
4
- "version": "0.56.3",
4
+ "version": "0.56.23",
5
5
  "packageManager": "pnpm@8.6.5",
6
6
  "description": "The Stacks payments package. Currently supporting Stripe.",
7
7
  "author": "Chris Breuer",
@@ -30,6 +30,7 @@
30
30
  "import": "./dist/index.mjs"
31
31
  }
32
32
  },
33
+ "main": "dist/index.mjs",
33
34
  "module": "dist/index.mjs",
34
35
  "types": "dist/index.d.ts",
35
36
  "contributors": [
@@ -42,7 +43,6 @@
42
43
  "scripts": {
43
44
  "build": "unbuild",
44
45
  "dev": "unbuild --stub",
45
- "prepublishOnly": "unbuild",
46
46
  "typecheck": "tsc --noEmit"
47
47
  },
48
48
  "dependencies": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/push",
3
3
  "type": "module",
4
- "version": "0.56.3",
4
+ "version": "0.56.23",
5
5
  "packageManager": "pnpm@8.6.5",
6
6
  "description": "The Stacks Push integration",
7
7
  "author": "Chris Breuer",
@@ -27,6 +27,7 @@
27
27
  "import": "./dist/index.mjs"
28
28
  }
29
29
  },
30
+ "main": "dist/index.mjs",
30
31
  "module": "dist/index.mjs",
31
32
  "types": "dist/index.d.ts",
32
33
  "contributors": [
@@ -39,12 +40,11 @@
39
40
  "scripts": {
40
41
  "build": "unbuild",
41
42
  "dev": "unbuild --stub",
42
- "prepublishOnly": "unbuild",
43
43
  "typecheck": "tsc --noEmit"
44
44
  },
45
45
  "peerDependencies": {
46
- "@novu/node": "^0.16.1",
47
- "@novu/stateless": "^0.16.1",
46
+ "@novu/node": "^0.16.2",
47
+ "@novu/stateless": "^0.16.2",
48
48
  "@stacksjs/cli": "workspace:*",
49
49
  "@stacksjs/config": "workspace:*",
50
50
  "@stacksjs/error-handling": "workspace:*",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/query-builder",
3
3
  "type": "module",
4
- "version": "0.56.3",
4
+ "version": "0.56.23",
5
5
  "packageManager": "pnpm@8.6.5",
6
6
  "description": "The Stacks Query Builder integration",
7
7
  "author": "Chris Breuer",
@@ -26,6 +26,7 @@
26
26
  "import": "./dist/index.mjs"
27
27
  }
28
28
  },
29
+ "main": "dist/index.mjs",
29
30
  "module": "dist/index.mjs",
30
31
  "types": "dist/index.d.ts",
31
32
  "contributors": [
@@ -38,7 +39,6 @@
38
39
  "scripts": {
39
40
  "build": "unbuild",
40
41
  "dev": "unbuild --stub",
41
- "prepublishOnly": "unbuild",
42
42
  "typecheck": "tsc --noEmit"
43
43
  },
44
44
  "peerDependencies": {