Skip to content

Commit 6d4c35b

Browse files
committedMar 20, 2025·
chore: wip
1 parent f16f72a commit 6d4c35b

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed
 

‎storage/framework/core/actions/src/bump.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import { path as p } from '@stacksjs/path'
44
const options = parseOptions()
55
const changelogCommand = options?.dryRun ? 'buddy changelog --quiet --dry-run' : 'buddy changelog --quiet'
66
const bumpCommand = options?.dryRun
7-
? `bunx --bun bumpp ./package.json ./**/package.json ../package.json ../default/ide/vscode/package.json ../views/** ../cloud/package.json ../server/package.json ../orm/package.json ../docs/package.json ../api/package.json ../email/package.json ../system-tray/package.json --no-push --execute "../scripts/lint"`
8-
: `bunx --bun bumpp ./package.json ./**/package.json ../package.json ../default/ide/vscode/package.json ../views/** ../cloud/package.json ../server/package.json ../orm/package.json ../docs/package.json ../api/package.json ../email/package.json ../system-tray/package.json --all --execute "../scripts/lint"`
7+
? `bunx --bun bumpp ./package.json ./**/package.json ../package.json ../defaults/ide/vscode/package.json ../views/** ../cloud/package.json ../server/package.json ../orm/package.json ../docs/package.json ../api/package.json ../email/package.json ../libs/**/package.json ../system-tray/package.json --no-push --execute "../scripts/lint"`
8+
: `bunx --bun bumpp ./package.json ./**/package.json ../package.json ../defaults/ide/vscode/package.json ../views/** ../cloud/package.json ../server/package.json ../orm/package.json ../docs/package.json ../api/package.json ../email/package.json ../libs/**/package.json ../system-tray/package.json --all --execute "../scripts/lint"`
99

1010
log.debug(`Running: ${bumpCommand}`)
1111
log.debug(`In frameworkPath: ${p.frameworkPath()}`)

‎storage/framework/libs/components/vue/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stacksjs/hello-world-vue",
33
"type": "module",
4-
"version": "",
4+
"version": "0.70.0",
55
"description": "Your Vue component library description",
66
"author": "Chris Breuer",
77
"contributors": ["Chris Breuer <chris@stacksjs.org>"],

‎storage/framework/libs/components/web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stacksjs/hello-world-elements",
33
"type": "module",
4-
"version": "",
4+
"version": "0.70.0",
55
"description": "Your framework agnostic web component library description.",
66
"author": "Chris Breuer",
77
"contributors": ["Chris Breuer <chris@stacksjs.org>"],

‎storage/framework/libs/functions/package.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "hello-world-fx",
33
"type": "module",
4-
"version": "",
4+
"version": "0.70.0",
55
"description": "Your function library description.",
66
"author": "Chris Breuer",
77
"contributors": ["Chris Breuer <chris@stacksjs.org>"],
@@ -25,11 +25,9 @@
2525
"exports": {
2626
".": {
2727
"types": "./dist/index.d.ts",
28-
"import": "./dist/index.js",
29-
"require": "./dist/index.cjs"
28+
"import": "./dist/index.js"
3029
}
3130
},
32-
"main": "dist/index.cjs",
3331
"module": "dist/index.js",
3432
"types": "dist/index.d.ts",
3533
"files": ["README.md", "dist"],

0 commit comments

Comments
 (0)
Please sign in to comment.