Skip to content

Commit f79ccb4

Browse files
committed
astro dev instance marked private not for publish
1 parent 2031f5a commit f79ccb4

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

apps/prepare/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
2-
"name": "prepare",
2+
"name": "sparkstack-astro",
33
"version": "1.0.0",
4+
"private": true,
45
"description": "",
56
"type": "module",
67
"scripts": {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
"sync:templates": "./scripts/sync-templates.sh \"templates/*\"",
4848
"check": "turbo lint typecheck format:check",
4949
"release": "changeset version",
50-
"pub:beta": "cd packages/shadcn && pnpm pub:beta",
51-
"pub:release": "cd packages/shadcn && pnpm pub:release",
50+
"pub:beta": "cd packages/sparkstack && pnpm pub:beta",
51+
"pub:release": "cd packages/sparkstack && pnpm pub:release",
5252
"test": "turbo run test --force",
5353
"check:origin:": "git remote show origin"
5454
},

packages/cli/src/deprecated.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import chalk from "chalk"
22

33
export const DEPRECATED_MESSAGE = chalk.yellow(
4-
`\nNote: The shadcn-ui CLI is going to be deprecated soon. Please use ${chalk.bold(
4+
`\nNote: The sparkstack-ui CLI is going to be deprecated soon. Please use ${chalk.bold(
55
"npx sparkstack"
66
)} instead.\n`
77
)

packages/cli/src/utils/get-project-info.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export async function getProjectConfig(cwd: string): Promise<Config | null> {
8888
const isTsx = await isTypeScriptProject(cwd)
8989

9090
const config: RawConfig = {
91-
$schema: "https://ui.shadcn.com/schema.json",
91+
$schema: "https://sparkstack.prodkt.cloud/schema.json",
9292
rsc: ["next-app", "next-app-src"].includes(projectType),
9393
tsx: isTsx,
9494
style: "new-york",

packages/cli/src/utils/transformers/transform-css-vars.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export function splitClassName(className: string): (string | null)[] {
133133
return parts
134134
}
135135

136-
const PREFIXES = ["bg-", "text-", "border-", "ring-offset-", "ring-"]
136+
const PREFIXES = ["bg-", "text-", "border-", "ring-offset-", "ring-", "shadow-", "text-shadow-"]
137137

138138
export function applyColorMapping(
139139
input: string,

0 commit comments

Comments
 (0)