Skip to content

Commit 382d4ff

Browse files
committed
Bump versions.
1 parent 9103f7a commit 382d4ff

File tree

13 files changed

+1226
-1222
lines changed

13 files changed

+1226
-1222
lines changed

apps/debug/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@
1111
},
1212
"dependencies": {
1313
"backend": "workspace:*",
14-
"next": "^13.4.19",
14+
"next": "^14.1.0",
1515
"plugin-ui": "workspace:*",
1616
"react": "^18.2.0",
1717
"react-dom": "^18.2.0"
1818
},
1919
"devDependencies": {
20-
"@types/node": "^20.6.0",
21-
"@types/react": "^18.2.21",
22-
"@types/react-dom": "^18.2.7",
23-
"autoprefixer": "^10.4.15",
20+
"@types/node": "^20.11.6",
21+
"@types/react": "^18.2.48",
22+
"@types/react-dom": "^18.2.18",
23+
"autoprefixer": "^10.4.17",
2424
"eslint-config-custom": "workspace:*",
25-
"postcss": "^8.4.29",
26-
"tailwindcss": "3.3.3",
25+
"postcss": "^8.4.33",
26+
"tailwindcss": "3.4.1",
2727
"tsconfig": "workspace:*",
28-
"typescript": "^5.2.2"
28+
"typescript": "^5.3.3"
2929
}
3030
}

apps/debug/pages/_app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { AppProps } from "next/app";
2-
import "styles/globals.css";
2+
import "../styles/globals.css";
33

44
export default function App({ Component, pageProps }: AppProps) {
55
return <Component {...pageProps} />;

apps/plugin/package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,31 +10,31 @@
1010
"dev": "pnpm build:watch"
1111
},
1212
"dependencies": {
13-
"@figma/plugin-typings": "^1.76.0",
13+
"@figma/plugin-typings": "^1.84.0",
1414
"backend": "workspace:*",
1515
"plugin-ui": "workspace:*",
1616
"react": "^18.2.0",
1717
"react-dom": "^18.2.0"
1818
},
1919
"devDependencies": {
20-
"@types/node": "^20.6.0",
21-
"@types/react": "^18.2.21",
22-
"@types/react-dom": "^18.2.7",
23-
"@typescript-eslint/eslint-plugin": "^6.7.0",
24-
"@typescript-eslint/parser": "^6.7.0",
25-
"@vitejs/plugin-react": "^4.0.4",
26-
"@vitejs/plugin-react-swc": "^3.3.2",
27-
"autoprefixer": "^10.4.15",
28-
"concurrently": "^8.2.1",
29-
"esbuild": "^0.19.2",
20+
"@types/node": "^20.11.6",
21+
"@types/react": "^18.2.48",
22+
"@types/react-dom": "^18.2.18",
23+
"@typescript-eslint/eslint-plugin": "^6.19.1",
24+
"@typescript-eslint/parser": "^6.19.1",
25+
"@vitejs/plugin-react": "^4.2.1",
26+
"@vitejs/plugin-react-swc": "^3.5.0",
27+
"autoprefixer": "^10.4.17",
28+
"concurrently": "^8.2.2",
29+
"esbuild": "^0.19.12",
3030
"eslint-config-custom": "workspace:*",
3131
"eslint-plugin-react-hooks": "^4.6.0",
32-
"eslint-plugin-react-refresh": "^0.4.3",
33-
"postcss": "^8.4.29",
34-
"tailwindcss": "3.3.3",
32+
"eslint-plugin-react-refresh": "^0.4.5",
33+
"postcss": "^8.4.33",
34+
"tailwindcss": "3.4.1",
3535
"tsconfig": "workspace:*",
36-
"typescript": "^5.2.2",
37-
"vite": "^4.4.9",
38-
"vite-plugin-singlefile": "^0.13.5"
36+
"typescript": "^5.3.3",
37+
"vite": "^5.0.12",
38+
"vite-plugin-singlefile": "^1.0.0"
3939
}
4040
}

apps/plugin/ui-src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export default function App() {
129129
return (
130130
<div
131131
className={`${
132-
figmaColorBgValue === "rgba(255, 255, 255, 1)" ? "" : "dark"
132+
figmaColorBgValue === "#ffffff" ? "" : "dark"
133133
}`}
134134
>
135135
<PluginUI

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"format": "prettier --write \"**/*.{ts,tsx,md}\""
99
},
1010
"devDependencies": {
11-
"eslint": "^8.49.0",
11+
"eslint": "^8.56.0",
1212
"eslint-config-custom": "workspace:*",
13-
"prettier": "^3.0.3",
14-
"turbo": "^1.10.13"
13+
"prettier": "^3.2.4",
14+
"turbo": "^1.11.3"
1515
},
1616
"packageManager": "[email protected]"
1717
}

packages/backend/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@
1414
"test": "jest"
1515
},
1616
"dependencies": {
17-
"@figma/plugin-typings": "^1.76.0",
17+
"@figma/plugin-typings": "^1.84.0",
1818
"react": "18.2.0",
1919
"react-dom": "18.2.0"
2020
},
2121
"devDependencies": {
22-
"@types/react": "^18.2.21",
23-
"@types/react-dom": "^18.2.7",
24-
"eslint": "^8.49.0",
22+
"@types/react": "^18.2.48",
23+
"@types/react-dom": "^18.2.18",
24+
"eslint": "^8.56.0",
2525
"eslint-config-custom": "workspace:*",
2626
"tsconfig": "workspace:*",
27-
"tsup": "^7.2.0",
28-
"typescript": "^5.2.2"
27+
"tsup": "^8.0.1",
28+
"typescript": "^5.3.3"
2929
}
3030
}

packages/eslint-config-custom/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"main": "index.js",
55
"license": "MIT",
66
"dependencies": {
7-
"eslint-config-next": "^13.4.19",
8-
"eslint-config-prettier": "^9.0.0",
9-
"eslint-config-turbo": "^1.10.13",
7+
"eslint-config-next": "^14.1.0",
8+
"eslint-config-prettier": "^9.1.0",
9+
"eslint-config-turbo": "^1.11.3",
1010
"eslint-plugin-react": "7.33.2"
1111
},
1212
"publishConfig": {

packages/plugin-ui/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
"copy-to-clipboard": "^3.3.3",
1515
"react": "^18.2.0",
1616
"react-syntax-highlighter": "^15.5.0",
17-
"tailwindcss": "3.3.3"
17+
"tailwindcss": "3.4.1"
1818
},
1919
"devDependencies": {
20-
"@types/react": "^18.2.21",
21-
"@types/react-dom": "^18.2.7",
22-
"@types/react-syntax-highlighter": "15.5.7",
23-
"eslint": "^8.49.0",
20+
"@types/react": "^18.2.48",
21+
"@types/react-dom": "^18.2.18",
22+
"@types/react-syntax-highlighter": "15.5.11",
23+
"eslint": "^8.56.0",
2424
"eslint-config-custom": "workspace:*",
2525
"tsconfig": "workspace:*",
26-
"typescript": "^5.2.2"
26+
"typescript": "^5.3.3"
2727
}
2828
}

packages/ui/Button.tsx

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/ui/index.tsx

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)