stacks 0.49.2 → 0.50.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/buddy/package.json +3 -3
- package/buddy/src/commands/fresh.ts +1 -1
- package/buddy/src/commands/lint.ts +2 -2
- package/buddy/src/commands/release.ts +8 -0
- package/components/vue/package.json +1 -1
- package/components/web/package.json +1 -1
- package/core/actions/package.json +3 -3
- package/core/actions/src/helpers/utils.ts +1 -1
- package/core/actions/src/lint-fix.ts +1 -1
- package/core/ai/package.json +3 -3
- package/core/alias/package.json +3 -3
- package/core/arrays/package.json +3 -3
- package/core/auth/package.json +3 -3
- package/core/build/package.json +3 -3
- package/core/cache/package.json +4 -4
- package/core/chat/package.json +3 -3
- package/core/cli/package.json +3 -3
- package/core/cli/src/actions/run.ts +4 -1
- package/core/cloud/package.json +3 -3
- package/core/collections/package.json +3 -3
- package/core/config/package.json +3 -3
- package/core/dashboard/package.json +3 -3
- package/core/database/package.json +4 -4
- package/core/datetime/package.json +3 -3
- package/core/desktop/node_modules/.bin/tauri +2 -2
- package/core/desktop/package.json +4 -4
- package/core/docs/node_modules/.bin/vitepress +2 -2
- package/core/docs/package.json +4 -4
- package/core/domains/package.json +3 -3
- package/core/drivers/package.json +3 -3
- package/core/email/package.json +3 -3
- package/core/email/src/drivers/sendgrid.ts +6 -6
- package/core/error-handling/package.json +3 -3
- package/core/events/package.json +3 -3
- package/core/git/node_modules/.bin/changelogen +2 -2
- package/core/git/node_modules/.bin/commitizen +2 -2
- package/core/git/node_modules/.bin/cz +2 -2
- package/core/git/node_modules/.bin/git-cz +2 -2
- package/core/git/package.json +5 -5
- package/core/health/package.json +3 -3
- package/core/lint/package.json +3 -3
- package/core/logging/package.json +3 -3
- package/core/modules/package.json +3 -3
- package/core/notifications/README.md +3 -0
- package/core/notifications/package.json +6 -5
- package/core/objects/package.json +3 -3
- package/core/path/package.json +4 -4
- package/core/payments/package.json +3 -3
- package/core/push/package.json +3 -4
- package/core/queue/README.md +59 -0
- package/core/{push/node_modules/.bin/maizzle → queue/node_modules/.bin/mkdist} +2 -2
- package/core/queue/node_modules/.bin/tsc +17 -0
- package/core/queue/node_modules/.bin/tsserver +17 -0
- package/core/queue/package.json +54 -0
- package/core/queue/src/index.ts +1 -0
- package/core/queue/tests/example.test.ts +7 -0
- package/core/realtime/package.json +3 -3
- package/core/router/package.json +3 -3
- package/core/search-engine/package.json +4 -4
- package/core/search-engine/src/index.ts +0 -1
- package/core/security/package.json +3 -3
- package/core/server/package.json +3 -3
- package/core/sms/package.json +3 -3
- package/core/storage/package.json +3 -3
- package/core/strings/package.json +3 -3
- package/core/tables/package.json +2 -2
- package/core/testing/node_modules/.bin/vitest +2 -2
- package/core/testing/package.json +6 -6
- package/core/types/node_modules/.bin/vitepress +2 -2
- package/core/types/package.json +5 -5
- package/core/types/src/cli.ts +1 -1
- package/core/types/src/notifications.ts +2 -2
- package/core/ui/package.json +3 -3
- package/core/utils/node_modules/.bin/rimraf +2 -2
- package/core/utils/package.json +7 -7
- package/core/utils/src/helpers.ts +4 -2
- package/core/validation/README.md +53 -0
- package/core/validation/node_modules/.bin/mkdist +17 -0
- package/core/validation/node_modules/.bin/tsc +17 -0
- package/core/validation/node_modules/.bin/tsserver +17 -0
- package/core/validation/package.json +55 -0
- package/core/validation/src/index.ts +5 -0
- package/core/validation/tests/example.test.ts +7 -0
- package/core/x-ray/package.json +3 -3
- package/functions/package.json +1 -1
- package/package.json +4 -4
- package/core/tables/dist/index.html +0 -15
package/core/sms/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/sms",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"packageManager": "pnpm@7.25.
|
|
4
|
+
"version": "0.50.0",
|
|
5
|
+
"packageManager": "pnpm@7.25.1",
|
|
6
6
|
"description": "The Stacks SMS integration. Painlessly create & manage your inboxes, templates, and send sms.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"license": "MIT",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
],
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": ">=v18.13.0",
|
|
43
|
-
"pnpm": ">=7.25.
|
|
43
|
+
"pnpm": ">=7.25.1"
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
46
|
"build": "mkdist -d",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/storage",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"packageManager": "pnpm@7.25.
|
|
4
|
+
"version": "0.50.0",
|
|
5
|
+
"packageManager": "pnpm@7.25.1",
|
|
6
6
|
"description": "The Stacks file system.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"license": "MIT",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
],
|
|
39
39
|
"engines": {
|
|
40
40
|
"node": ">=v18.13.0",
|
|
41
|
-
"pnpm": ">=7.25.
|
|
41
|
+
"pnpm": ">=7.25.1"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"build": "mkdist -d",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/strings",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"packageManager": "pnpm@7.25.
|
|
4
|
+
"version": "0.50.0",
|
|
5
|
+
"packageManager": "pnpm@7.25.1",
|
|
6
6
|
"description": "The Stacks string utilities.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"license": "MIT",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
],
|
|
47
47
|
"engines": {
|
|
48
48
|
"node": ">=v18.13.0",
|
|
49
|
-
"pnpm": ">=7.25.
|
|
49
|
+
"pnpm": ">=7.25.1"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "unbuild",
|
package/core/tables/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/tables",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.50.0",
|
|
4
4
|
"description": "The easy & modern way to work with tables. Facet filtering, searching, pagination, ...",
|
|
5
5
|
"author": "Open Web Labs",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
],
|
|
29
29
|
"engines": {
|
|
30
30
|
"node": ">=v18.13.0",
|
|
31
|
-
"pnpm": ">=7.25.
|
|
31
|
+
"pnpm": ">=7.25.1"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"dev": "vite",
|
|
@@ -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/vitest@0.27.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/vitest@0.27.3_@vitest+ui@0.27.3/node_modules/vitest/vitest.mjs" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../../node_modules/.pnpm/vitest@0.27.
|
|
16
|
+
exec node "$basedir/../../../../../node_modules/.pnpm/vitest@0.27.3_@vitest+ui@0.27.3/node_modules/vitest/vitest.mjs" "$@"
|
|
17
17
|
fi
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/testing",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"packageManager": "pnpm@7.25.
|
|
4
|
+
"version": "0.50.0",
|
|
5
|
+
"packageManager": "pnpm@7.25.1",
|
|
6
6
|
"description": "The Stacks way of testing.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"license": "MIT",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
],
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": ">=v18.13.0",
|
|
43
|
-
"pnpm": ">=7.25.
|
|
43
|
+
"pnpm": ">=7.25.1"
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
46
|
"build": "mkdist -d",
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"@playwright/test": "^1.29.2",
|
|
53
|
-
"@vitest/coverage-istanbul": "^0.27.
|
|
54
|
-
"@vitest/ui": "^0.27.
|
|
55
|
-
"vitest": "^0.27.
|
|
53
|
+
"@vitest/coverage-istanbul": "^0.27.2",
|
|
54
|
+
"@vitest/ui": "^0.27.2",
|
|
55
|
+
"vitest": "^0.27.2"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"mkdist": "^1.1.0",
|
|
@@ -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.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/vitepress@1.0.0-alpha.40_j73j5xdbzpkigstapj6vkce2xy/node_modules/vitepress/bin/vitepress.js" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../../node_modules/.pnpm/vitepress@1.0.0-alpha.
|
|
16
|
+
exec node "$basedir/../../../../../node_modules/.pnpm/vitepress@1.0.0-alpha.40_j73j5xdbzpkigstapj6vkce2xy/node_modules/vitepress/bin/vitepress.js" "$@"
|
|
17
17
|
fi
|
package/core/types/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/types",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"packageManager": "pnpm@7.25.
|
|
4
|
+
"version": "0.50.0",
|
|
5
|
+
"packageManager": "pnpm@7.25.1",
|
|
6
6
|
"description": "The Stacks framework types.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"license": "MIT",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
],
|
|
35
35
|
"engines": {
|
|
36
36
|
"node": ">=v18.13.0",
|
|
37
|
-
"pnpm": ">=7.25.
|
|
37
|
+
"pnpm": ">=7.25.1"
|
|
38
38
|
},
|
|
39
39
|
"scripts": {
|
|
40
40
|
"build": "mkdist -d",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@mdit-vue/plugin-component": "^0.11.2",
|
|
47
47
|
"@mdit-vue/plugin-frontmatter": "^0.11.1",
|
|
48
48
|
"@mdit-vue/types": "^0.11.0",
|
|
49
|
-
"@prisma/client": "^4.
|
|
49
|
+
"@prisma/client": "^4.9.0",
|
|
50
50
|
"@rollup/pluginutils": "^5.0.2",
|
|
51
51
|
"@types/bcryptjs": "^2.4.2",
|
|
52
52
|
"@types/crypto-js": "^4.1.1",
|
|
@@ -67,6 +67,6 @@
|
|
|
67
67
|
"vite-plugin-inspect": "^0.7.14",
|
|
68
68
|
"vite-plugin-vue-layouts": "^0.7.0",
|
|
69
69
|
"vite-ssg": "^0.22.1",
|
|
70
|
-
"vitepress": "1.0.0-alpha.
|
|
70
|
+
"vitepress": "1.0.0-alpha.40"
|
|
71
71
|
}
|
|
72
72
|
}
|
package/core/types/src/cli.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { IChatOptions, IEmailOptions, ISendMessageSuccessResponse, ISmsOptions } from '@novu/stateless'
|
|
2
2
|
|
|
3
3
|
export interface NotificationOptions {
|
|
4
|
-
type?:
|
|
5
|
-
driver?:
|
|
4
|
+
type?: 'email' | 'sms' | 'chat' | 'push'
|
|
5
|
+
driver?: 'sendgrid' | 'emailjs' | 'mailjet' | 'mandrill' | 'netcore' | 'nodemailer' | 'postmark' | 'ses' | 'mailgun' | 'twilio' | 'nexmo' | 'gupshup' | 'plivo' | 'sms77' | 'sns'
|
|
6
6
|
|
|
7
7
|
email: {
|
|
8
8
|
purgeCSS: boolean
|
package/core/ui/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"packageManager": "pnpm@7.25.
|
|
4
|
+
"version": "0.50.0",
|
|
5
|
+
"packageManager": "pnpm@7.25.1",
|
|
6
6
|
"description": "The Stacks atomic UI engine, powered by UnoCSS.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"license": "MIT",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
],
|
|
39
39
|
"engines": {
|
|
40
40
|
"node": ">=v18.13.0",
|
|
41
|
-
"pnpm": ">=7.25.
|
|
41
|
+
"pnpm": ">=7.25.1"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"build": "mkdist -d",
|
|
@@ -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/rimraf@4.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/rimraf@4.1.1/node_modules/rimraf/dist/cjs/src/bin.js" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../../node_modules/.pnpm/rimraf@4.
|
|
16
|
+
exec node "$basedir/../../../../../node_modules/.pnpm/rimraf@4.1.1/node_modules/rimraf/dist/cjs/src/bin.js" "$@"
|
|
17
17
|
fi
|
package/core/utils/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/utils",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"packageManager": "pnpm@7.25.
|
|
4
|
+
"version": "0.50.0",
|
|
5
|
+
"packageManager": "pnpm@7.25.1",
|
|
6
6
|
"description": "The Stacks helper functions.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"license": "MIT",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
],
|
|
39
39
|
"engines": {
|
|
40
40
|
"node": ">=v18.13.0",
|
|
41
|
-
"pnpm": ">=7.25.
|
|
41
|
+
"pnpm": ">=7.25.1"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"build": "mkdist -d",
|
|
@@ -54,10 +54,10 @@
|
|
|
54
54
|
"@stacksjs/path": "workspace:*",
|
|
55
55
|
"@stacksjs/storage": "workspace:*",
|
|
56
56
|
"@stacksjs/types": "workspace:*",
|
|
57
|
-
"@vueuse/core": "^9.
|
|
57
|
+
"@vueuse/core": "^9.11.1",
|
|
58
58
|
"@vueuse/head": "^1.0.22",
|
|
59
|
-
"@vueuse/math": "^9.
|
|
60
|
-
"@vueuse/shared": "^9.
|
|
59
|
+
"@vueuse/math": "^9.11.1",
|
|
60
|
+
"@vueuse/shared": "^9.11.1",
|
|
61
61
|
"defu": "^6.1.1",
|
|
62
62
|
"detect-indent": "^7.0.1",
|
|
63
63
|
"detect-newline": "^4.0.0",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"fast-glob": "^3.2.12",
|
|
67
67
|
"kolorist": "1.6.0",
|
|
68
68
|
"p-limit": "^4.0.0",
|
|
69
|
-
"rimraf": "^4.
|
|
69
|
+
"rimraf": "^4.1.1",
|
|
70
70
|
"throttle-debounce": "^5.0.0"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
@@ -62,8 +62,10 @@ export function determineResetPreset(preset?: string) {
|
|
|
62
62
|
|
|
63
63
|
export function env(key?: string, fallback?: any) {
|
|
64
64
|
// console.log('isClient', isClient)
|
|
65
|
-
|
|
66
|
-
|
|
65
|
+
if (key && import.meta?.env) {
|
|
66
|
+
console.log('key', key, 'fallback', import.meta?.env[key])
|
|
67
|
+
return import.meta.env[key]
|
|
68
|
+
}
|
|
67
69
|
|
|
68
70
|
return fallback
|
|
69
71
|
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# Stacks Validation
|
|
2
|
+
|
|
3
|
+
This package contains the Stacks Validation system.
|
|
4
|
+
|
|
5
|
+
## ☘️ Features
|
|
6
|
+
|
|
7
|
+
- **Validation** - Validate data against a schema
|
|
8
|
+
|
|
9
|
+
## 🤖 Usage
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pnpm i -D @stacksjs/validation
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Now, you can use it in your project:
|
|
16
|
+
|
|
17
|
+
```js
|
|
18
|
+
import { validate } from '@stacksjs/validation'
|
|
19
|
+
|
|
20
|
+
// wip
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
To view the full documentation, please visit [https://stacksjs.dev/validation](https://stacksjs.dev/validation).
|
|
24
|
+
|
|
25
|
+
## 🧪 Testing
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pnpm test
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## 📈 Changelog
|
|
32
|
+
|
|
33
|
+
Please see our [releases](https://github.com/stacksjs/stacks/releases) page for more information on what has changed recently.
|
|
34
|
+
|
|
35
|
+
## 💪🏼 Contributing
|
|
36
|
+
|
|
37
|
+
Please review the [Contributing Guide](https://github.com/stacksjs/contributing) for details.
|
|
38
|
+
|
|
39
|
+
## 🏝 Community
|
|
40
|
+
|
|
41
|
+
For help, discussion about best practices, or any other conversation that would benefit from being searchable:
|
|
42
|
+
|
|
43
|
+
[Discussions on GitHub](https://github.com/stacksjs/stacks/discussions)
|
|
44
|
+
|
|
45
|
+
For casual chit-chat with others using this package:
|
|
46
|
+
|
|
47
|
+
[Join the Stacks Discord Server](https://discord.ow3.org)
|
|
48
|
+
|
|
49
|
+
## 📄 License
|
|
50
|
+
|
|
51
|
+
The MIT License (MIT). Please see [LICENSE](https://github.com/stacksjs/stacks/tree/main/LICENSE.md) for more information.
|
|
52
|
+
|
|
53
|
+
Made with ❤️
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
+
esac
|
|
7
|
+
|
|
8
|
+
if [ -z "$NODE_PATH" ]; then
|
|
9
|
+
export NODE_PATH="/home/runner/work/stacks/stacks/node_modules/.pnpm/node_modules"
|
|
10
|
+
else
|
|
11
|
+
export NODE_PATH="$NODE_PATH:/home/runner/work/stacks/stacks/node_modules/.pnpm/node_modules"
|
|
12
|
+
fi
|
|
13
|
+
if [ -x "$basedir/node" ]; then
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/mkdist@1.1.0_typescript@4.9.4/node_modules/mkdist/dist/cli.cjs" "$@"
|
|
15
|
+
else
|
|
16
|
+
exec node "$basedir/../../../../../node_modules/.pnpm/mkdist@1.1.0_typescript@4.9.4/node_modules/mkdist/dist/cli.cjs" "$@"
|
|
17
|
+
fi
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
+
esac
|
|
7
|
+
|
|
8
|
+
if [ -z "$NODE_PATH" ]; then
|
|
9
|
+
export NODE_PATH="/home/runner/work/stacks/stacks/node_modules/.pnpm/node_modules"
|
|
10
|
+
else
|
|
11
|
+
export NODE_PATH="$NODE_PATH:/home/runner/work/stacks/stacks/node_modules/.pnpm/node_modules"
|
|
12
|
+
fi
|
|
13
|
+
if [ -x "$basedir/node" ]; then
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/bin/tsc" "$@"
|
|
15
|
+
else
|
|
16
|
+
exec node "$basedir/../../../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/bin/tsc" "$@"
|
|
17
|
+
fi
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
+
esac
|
|
7
|
+
|
|
8
|
+
if [ -z "$NODE_PATH" ]; then
|
|
9
|
+
export NODE_PATH="/home/runner/work/stacks/stacks/node_modules/.pnpm/node_modules"
|
|
10
|
+
else
|
|
11
|
+
export NODE_PATH="$NODE_PATH:/home/runner/work/stacks/stacks/node_modules/.pnpm/node_modules"
|
|
12
|
+
fi
|
|
13
|
+
if [ -x "$basedir/node" ]; then
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/bin/tsserver" "$@"
|
|
15
|
+
else
|
|
16
|
+
exec node "$basedir/../../../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/bin/tsserver" "$@"
|
|
17
|
+
fi
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@stacksjs/validation",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.50.0",
|
|
5
|
+
"packageManager": "pnpm@7.25.1",
|
|
6
|
+
"description": "The Stacks Validation methods.",
|
|
7
|
+
"author": "Chris Breuer",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"funding": "https://github.com/sponsors/chrisbbreuer",
|
|
10
|
+
"homepage": "https://github.com/stacksjs/stacks/tree/main/.stacks/core/validation#readme",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/stacksjs/stacks.git",
|
|
14
|
+
"directory": "./.stacks/core/validation"
|
|
15
|
+
},
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/stacksjs/stacks/issues"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"validation",
|
|
21
|
+
"yup",
|
|
22
|
+
"utilities",
|
|
23
|
+
"functions",
|
|
24
|
+
"stacks"
|
|
25
|
+
],
|
|
26
|
+
"main": "dist/index.mjs",
|
|
27
|
+
"module": "dist/index.mjs",
|
|
28
|
+
"types": "dist/index.d.ts",
|
|
29
|
+
"contributors": [
|
|
30
|
+
"Chris Breuer <chris@ow3.org>"
|
|
31
|
+
],
|
|
32
|
+
"files": [
|
|
33
|
+
"dist",
|
|
34
|
+
"README.md"
|
|
35
|
+
],
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=v18.13.0",
|
|
38
|
+
"pnpm": ">=7.25.1"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "mkdist -d",
|
|
42
|
+
"dev": "mkdist -d",
|
|
43
|
+
"prepublishOnly": "pnpm run build",
|
|
44
|
+
"typecheck": "tsc --noEmit"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"zod": "^3.20.2"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@stacksjs/path": "workspace:*",
|
|
51
|
+
"@stacksjs/testing": "workspace:*",
|
|
52
|
+
"mkdist": "^1.1.0",
|
|
53
|
+
"typescript": "^4.9.4"
|
|
54
|
+
}
|
|
55
|
+
}
|
package/core/x-ray/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/x-ray",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"packageManager": "pnpm@7.25.
|
|
4
|
+
"version": "0.50.0",
|
|
5
|
+
"packageManager": "pnpm@7.25.1",
|
|
6
6
|
"description": "All you need to debug, log & analyze.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"license": "MIT",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
],
|
|
40
40
|
"engines": {
|
|
41
41
|
"node": ">=v18.13.0",
|
|
42
|
-
"pnpm": ">=7.25.
|
|
42
|
+
"pnpm": ">=7.25.1"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"build": "echo 'wip'",
|
package/functions/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stacks",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"packageManager": "pnpm@7.25.
|
|
4
|
+
"version": "0.50.0",
|
|
5
|
+
"packageManager": "pnpm@7.25.1",
|
|
6
6
|
"description": "The Stacks framework.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"license": "MIT",
|
|
@@ -61,11 +61,11 @@
|
|
|
61
61
|
],
|
|
62
62
|
"engines": {
|
|
63
63
|
"node": ">=v18.13.0",
|
|
64
|
-
"pnpm": ">=7.25.
|
|
64
|
+
"pnpm": ">=7.25.1"
|
|
65
65
|
},
|
|
66
66
|
"web-types": "./web-types.json",
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@stacksjs/buddy": "0.
|
|
68
|
+
"@stacksjs/buddy": "0.50.0"
|
|
69
69
|
},
|
|
70
70
|
"scripts": {
|
|
71
71
|
"buddy": "esno ./buddy/src/cli.ts",
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8" />
|
|
5
|
-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
6
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
-
<title>Vite + Vue</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-ee90d6db.js"></script>
|
|
9
|
-
<link rel="stylesheet" href="/assets/index-b1ae86b3.css">
|
|
10
|
-
</head>
|
|
11
|
-
<body>
|
|
12
|
-
<div id="app"></div>
|
|
13
|
-
|
|
14
|
-
</body>
|
|
15
|
-
</html>
|