Skip to content

Commit

Permalink
chore: release v0.62.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed Jul 14, 2024
1 parent 7b9c614 commit cf9fd35
Show file tree
Hide file tree
Showing 82 changed files with 979 additions and 285 deletions.
12 changes: 9 additions & 3 deletions storage/framework/core/actions/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stacksjs/actions",
"type": "module",
"version": "0.61.24",
"version": "0.62.0",
"description": "The Stacks actions.",
"author": "Chris Breuer",
"license": "MIT",
Expand Down Expand Up @@ -38,8 +38,14 @@
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"contributors": ["Chris Breuer <[email protected]>"],
"files": ["README.md", "dist", "src"],
"contributors": [
"Chris Breuer <[email protected]>"
],
"files": [
"README.md",
"dist",
"src"
],
"scripts": {
"build": "bun --bun build.ts",
"typecheck": "bun --bun tsc --noEmit",
Expand Down
12 changes: 9 additions & 3 deletions storage/framework/core/ai/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stacksjs/ai",
"type": "module",
"version": "0.61.24",
"version": "0.62.0",
"description": "Stacks Artificial Intelligence.",
"author": "Chris Breuer",
"license": "MIT",
Expand Down Expand Up @@ -35,8 +35,14 @@
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"contributors": ["Chris Breuer <[email protected]>"],
"files": ["README.md", "dist", "src"],
"contributors": [
"Chris Breuer <[email protected]>"
],
"files": [
"README.md",
"dist",
"src"
],
"scripts": {
"build": "bun --bun build.ts",
"typecheck": "bun --bun tsc --noEmit",
Expand Down
17 changes: 13 additions & 4 deletions storage/framework/core/alias/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
"name": "@stacksjs/alias",
"type": "module",
"version": "0.61.24",
"version": "0.62.0",
"description": "The Stacks aliases.",
"author": "Chris Breuer",
"contributors": ["Chris Breuer <[email protected]>"],
"contributors": [
"Chris Breuer <[email protected]>"
],
"license": "MIT",
"funding": "https://github.com/sponsors/chrisbbreuer",
"homepage": "https://github.com/stacksjs/stacks/tree/main/storage/framework/core/alias#readme",
Expand All @@ -16,7 +18,10 @@
"bugs": {
"url": "https://github.com/stacksjs/stacks/issues"
},
"keywords": ["alias", "stacks"],
"keywords": [
"alias",
"stacks"
],
"exports": {
".": {
"bun": "./src/index.ts",
Expand All @@ -25,7 +30,11 @@
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["README.md", "dist", "src"],
"files": [
"README.md",
"dist",
"src"
],
"scripts": {
"build": "bun --bun build.ts",
"typecheck": "bun --bun tsc --noEmit",
Expand Down
12 changes: 9 additions & 3 deletions storage/framework/core/analytics/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stacksjs/analytics",
"type": "module",
"version": "0.61.24",
"version": "0.62.0",
"description": "Stacks Analytics. Privacy-friendly.",
"author": "Chris Breuer",
"license": "MIT",
Expand Down Expand Up @@ -36,8 +36,14 @@
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"contributors": ["Chris Breuer <[email protected]>"],
"files": ["README.md", "dist", "src"],
"contributors": [
"Chris Breuer <[email protected]>"
],
"files": [
"README.md",
"dist",
"src"
],
"scripts": {
"build": "bun --bun build.ts",
"typecheck": "bun --bun tsc --noEmit",
Expand Down
12 changes: 9 additions & 3 deletions storage/framework/core/api/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
"name": "@stacksjs/api",
"type": "module",
"version": "0.61.24",
"version": "0.62.0",
"description": "The Stacks array utilities.",
"author": "Chris Breuer",
"contributors": ["Chris Breuer <[email protected]>"],
"contributors": [
"Chris Breuer <[email protected]>"
],
"license": "MIT",
"funding": "https://github.com/sponsors/chrisbbreuer",
"homepage": "https://github.com/stacksjs/stacks/tree/main/storage/framework/core/arrays#readme",
Expand Down Expand Up @@ -36,7 +38,11 @@
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["README.md", "dist", "src"],
"files": [
"README.md",
"dist",
"src"
],
"scripts": {
"build": "bun --bun build.ts",
"generate-types": "openapi-typescript ./../../api/openapi.json --output ./../../api/api-types.ts",
Expand Down
12 changes: 9 additions & 3 deletions storage/framework/core/arrays/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stacksjs/arrays",
"type": "module",
"version": "0.61.24",
"version": "0.62.0",
"description": "The Stacks array utilities.",
"author": "Chris Breuer",
"license": "MIT",
Expand Down Expand Up @@ -35,8 +35,14 @@
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"contributors": ["Chris Breuer <[email protected]>"],
"files": ["README.md", "dist", "src"],
"contributors": [
"Chris Breuer <[email protected]>"
],
"files": [
"README.md",
"dist",
"src"
],
"scripts": {
"build": "bun --bun build.ts",
"typecheck": "bun --bun tsc --noEmit",
Expand Down
18 changes: 14 additions & 4 deletions storage/framework/core/auth/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stacksjs/auth",
"type": "module",
"version": "0.61.24",
"version": "0.62.0",
"description": "A more simplistic way to authenticate.",
"author": "Chris Breuer",
"license": "MIT",
Expand All @@ -15,7 +15,11 @@
"bugs": {
"url": "https://github.com/stacksjs/stacks/issues"
},
"keywords": ["auth", "authenticate", "stacks"],
"keywords": [
"auth",
"authenticate",
"stacks"
],
"exports": {
".": {
"bun": "./src/index.ts",
Expand All @@ -28,8 +32,14 @@
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"contributors": ["Chris Breuer <[email protected]>"],
"files": ["README.md", "dist", "src"],
"contributors": [
"Chris Breuer <[email protected]>"
],
"files": [
"README.md",
"dist",
"src"
],
"scripts": {
"build": "bun --bun build.ts",
"typecheck": "bun --bun tsc --noEmit",
Expand Down
12 changes: 9 additions & 3 deletions storage/framework/core/buddy/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stacksjs/buddy",
"type": "module",
"version": "0.61.24",
"version": "0.62.0",
"description": "Meet Buddy. The Stacks runtime.",
"author": "Chris Breuer",
"license": "MIT",
Expand Down Expand Up @@ -50,14 +50,20 @@
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"contributors": ["Chris Breuer <[email protected]>"],
"contributors": [
"Chris Breuer <[email protected]>"
],
"bin": {
"stacks": "dist/cli.mjs",
"stx": "dist/cli.mjs",
"buddy": "dist/cli.mjs",
"bud": "dist/cli.mjs"
},
"files": ["README.md", "dist", "src"],
"files": [
"README.md",
"dist",
"src"
],
"scripts": {
"buddy": "bunx ./src/cli.ts",
"build": "bun --bun build.ts && bun run compile",
Expand Down
12 changes: 9 additions & 3 deletions storage/framework/core/build/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stacksjs/build",
"type": "module",
"version": "0.61.24",
"version": "0.62.0",
"description": "The Stacks framework build tools and configurations.",
"author": "Chris Breuer",
"license": "MIT",
Expand Down Expand Up @@ -37,8 +37,14 @@
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"contributors": ["Chris Breuer <[email protected]>"],
"files": ["README.md", "dist", "src"],
"contributors": [
"Chris Breuer <[email protected]>"
],
"files": [
"README.md",
"dist",
"src"
],
"scripts": {
"build": "bun --bun build.ts",
"typecheck": "bun --bun tsc --noEmit",
Expand Down
17 changes: 13 additions & 4 deletions storage/framework/core/bun-create/bud/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@bun-examples/bud",
"type": "module",
"version": "0.61.24",
"version": "0.62.0",
"description": "Your project description.",
"author": "your-name <your-email>",
"license": "MIT",
Expand All @@ -14,7 +14,10 @@
"bugs": {
"url": "https://github.com/stacksjs/stacks/issues"
},
"keywords": ["project-starter", "stacks"],
"keywords": [
"project-starter",
"stacks"
],
"exports": {
".": {
"bun": "./src/index.ts",
Expand All @@ -27,8 +30,14 @@
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"contributors": ["Chris Breuer <[email protected]>"],
"files": ["README.md", "dist", "src"],
"contributors": [
"Chris Breuer <[email protected]>"
],
"files": [
"README.md",
"dist",
"src"
],
"scripts": {
"buddy": "bun --bun ./storage/framework/core/buddy/src/cli.ts",
"stacks": "bun run buddy",
Expand Down
17 changes: 13 additions & 4 deletions storage/framework/core/bun-create/buddy/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@bun-examples/buddy",
"type": "module",
"version": "0.61.24",
"version": "0.62.0",
"description": "Your project description.",
"author": "your-name <your-email>",
"license": "MIT",
Expand All @@ -14,7 +14,10 @@
"bugs": {
"url": "https://github.com/stacksjs/stacks/issues"
},
"keywords": ["project-starter", "stacks"],
"keywords": [
"project-starter",
"stacks"
],
"exports": {
".": {
"bun": "./src/index.ts",
Expand All @@ -27,8 +30,14 @@
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"contributors": ["Chris Breuer <[email protected]>"],
"files": ["README.md", "dist", "src"],
"contributors": [
"Chris Breuer <[email protected]>"
],
"files": [
"README.md",
"dist",
"src"
],
"scripts": {
"buddy": "bun --bun ./storage/framework/core/buddy/src/cli.ts",
"stacks": "bun run buddy",
Expand Down
17 changes: 13 additions & 4 deletions storage/framework/core/bun-create/stack/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@bun-examples/stack",
"type": "module",
"version": "0.61.24",
"version": "0.62.0",
"description": "Your project description.",
"author": "your-name <your-email>",
"license": "MIT",
Expand All @@ -14,7 +14,10 @@
"bugs": {
"url": "https://github.com/stacksjs/stacks/issues"
},
"keywords": ["project-starter", "stacks"],
"keywords": [
"project-starter",
"stacks"
],
"exports": {
".": {
"bun": "./src/index.ts",
Expand All @@ -27,8 +30,14 @@
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"contributors": ["Chris Breuer <[email protected]>"],
"files": ["README.md", "dist", "src"],
"contributors": [
"Chris Breuer <[email protected]>"
],
"files": [
"README.md",
"dist",
"src"
],
"scripts": {
"buddy": "bun --bun ./storage/framework/core/buddy/src/cli.ts",
"stacks": "bun run buddy",
Expand Down
Loading

0 comments on commit cf9fd35

Please sign in to comment.