Skip to content

Commit 806eab5

Browse files
committed
chore: wip
1 parent c6de809 commit 806eab5

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

storage/framework/core/components/stepper/components.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,5 @@ declare module 'vue' {
1414
Step: typeof import('./src/components/Step.vue')['default']
1515
Stepper: typeof import('./src/components/Stepper.vue')['default']
1616
StepperRoot: typeof import('./src/components/StepperRoot.vue')['default']
17-
StepperRoots: typeof import('./src/components/StepperRoots.vue')['default']
1817
}
1918
}

storage/framework/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"scripts": {
1717
"dev": "wip: needs to start each dev server (views, api, components, docs, desktop)",
18-
"build": "bun --filter='./core/*' run build",
18+
"build": "bun --filter='./core/*' run build && bun --filter='./core/components/stepper' run build",
1919
"publish:framework": "./scripts/publish",
2020
"publish:dummy-libs": "./scripts/publish-dummy-libs"
2121
}

storage/framework/scripts/publish

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ script_dir=$(realpath $(dirname "$0"))
66
# Get all directories in the core path except for src/bun-create
77
dirs=$(find "$script_dir/../core" -type d -maxdepth 1 -not -path "$script_dir/../bun-create")
88

9+
# Add the `core/components/stepper` directory to dirs, until we can release all ./components/*
10+
dirs="$dirs $script_dir/../core/components/stepper"
11+
912
# Check if no directories found
1013
if [ -z "$dirs" ]; then
1114
echo "No core packages found"

0 commit comments

Comments
 (0)