Skip to content

Commit 9a95a71

Browse files
authored
chore(deps): bump turbo version (#4958)
* chore(deps): bump turbo version * chore(root): update turbo.json * fix(docs): typecheck errors * fix(docs): typecheck errors
1 parent afe5897 commit 9a95a71

File tree

9 files changed

+37
-32
lines changed

9 files changed

+37
-32
lines changed

apps/docs/components/themes/templates/coffee.ts

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import {initialLayout} from "../constants";
44
import {Config} from "../types";
55

66
export const coffee: Config = {
7+
name: "coffee",
78
light: {
89
defaultColor: {
910
default: "#b4afa8",

apps/docs/components/themes/templates/elegant.ts

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import {initialLayout} from "../constants";
44
import {Config} from "../types";
55

66
export const elegant: Config = {
7+
name: "elegant",
78
light: {
89
defaultColor: {
910
default: "#8f8f8f",

apps/docs/components/themes/templates/emerald.ts

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import {initialDarkTheme, initialLayout, initialLightTheme} from "../constants";
22
import {Config} from "../types";
33

44
export const emerald: Config = {
5+
name: "emerald",
56
light: {
67
defaultColor: {
78
default: "#b9c9be",

apps/docs/components/themes/templates/heroui.ts

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import {initialDarkTheme, initialLayout, initialLightTheme} from "../constants";
22
import {Config} from "../types";
33

44
export const heroui: Config = {
5+
name: "heroui",
56
light: initialLightTheme,
67
dark: initialDarkTheme,
78
layout: initialLayout,

apps/docs/components/themes/templates/modern.ts

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import {initialLayout} from "../constants";
44
import {Config} from "../types";
55

66
export const modern: Config = {
7+
name: "modern",
78
light: {
89
defaultColor: {
910
default: "#897cc5",

apps/docs/components/themes/templates/retro.ts

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import {initialLayout} from "../constants";
44
import {Config} from "../types";
55

66
export const retro: Config = {
7+
name: "retro",
78
light: {
89
defaultColor: {
910
default: "#ffcf77",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
"shelljs": "^0.8.4",
130130
"tsup": "8.3.5",
131131
"tsx": "^4.19.2",
132-
"turbo": "1.6.3",
132+
"turbo": "2.4.4",
133133
"typescript": "^5.7.3",
134134
"webpack": "^5.53.0",
135135
"webpack-bundle-analyzer": "^4.4.2",

pnpm-lock.yaml

+29-29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

turbo.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"$schema": "https://turbo.build/schema.json",
3-
"baseBranch": "origin/main",
43
"globalDependencies": ["tsconfig.json"],
5-
"pipeline": {
4+
"tasks": {
65
"build": {
76
"dependsOn": ["^build"],
87
"outputs": [".next/**", "dist/**", "lib/**", "storybook-static/**"]

0 commit comments

Comments
 (0)