Skip to content

Commit

Permalink
Update package versions (#14)
Browse files Browse the repository at this point in the history
* Update dependencies

* Bump versions
  • Loading branch information
van100j committed Aug 29, 2023
1 parent ab624ad commit 259b3fd
Show file tree
Hide file tree
Showing 15 changed files with 14,209 additions and 7,756 deletions.
24 changes: 12 additions & 12 deletions apps/solidweb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,25 @@
},
"license": "MIT",
"devDependencies": {
"@kobalte/tailwindcss": "^0.6.5",
"@kobalte/tailwindcss": "^0.8.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@types/d3-drag": "^3.0.2",
"@types/d3-selection": "^3.0.5",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.25",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.5",
"vite": "^4.4.2",
"@tailwindcss/forms": "^0.5.6",
"@types/d3-drag": "^3.0.3",
"@types/d3-selection": "^3.0.6",
"autoprefixer": "^10.4.15",
"postcss": "^8.4.28",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-solid": "^2.7.0"
},
"dependencies": {
"@kobalte/core": "^0.9.8",
"@kobalte/core": "^0.11.0",
"@pdfslick/solid": "*",
"@solid-primitives/resize-observer": "^2.0.18",
"@solid-primitives/resize-observer": "^2.0.21",
"d3-drag": "^3.0.0",
"d3-selection": "^3.0.0",
"solid-icons": "^1.0.11",
"solid-js": "^1.7.7"
"solid-js": "^1.7.11"
}
}
10 changes: 5 additions & 5 deletions apps/vanillajs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
"preview": "vite preview"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"postcss": "^8.4.25",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.5",
"vite": "^4.4.2"
"autoprefixer": "^10.4.15",
"postcss": "^8.4.28",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vite": "^4.4.9"
},
"dependencies": {
"@pdfslick/core": "*"
Expand Down
11 changes: 5 additions & 6 deletions apps/web/components/docs/Fence.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import { Fragment } from 'react'
import Highlight, { defaultProps } from 'prism-react-renderer'
import { Fragment } from "react";
import { Highlight, themes } from "prism-react-renderer";

export function Fence({ children, language }: any) {
return (
<Highlight
{...defaultProps}
code={children.trimEnd()}
language={language}
theme={undefined}
theme={themes.dracula}
>
{({ className, style, tokens, getTokenProps }) => (
<pre className={className} style={style}>
Expand All @@ -19,12 +18,12 @@ export function Fence({ children, language }: any) {
.map((token, tokenIndex) => (
<span key={tokenIndex} {...getTokenProps({ token })} />
))}
{'\n'}
{"\n"}
</Fragment>
))}
</code>
</pre>
)}
</Highlight>
)
);
}
42 changes: 21 additions & 21 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,47 +9,47 @@
"lint": "next lint"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@markdoc/markdoc": "^0.2.2",
"@markdoc/next.js": "^0.2.2",
"@markdoc/markdoc": "^0.3.2",
"@markdoc/next.js": "^0.3.2",
"@pdfslick/core": "*",
"@pdfslick/react": "*",
"@radix-ui/react-popover": "^1.0.6",
"@sindresorhus/slugify": "^2.2.1",
"@tabler/icons-react": "^2.24.0",
"clsx": "^1.2.1",
"@tabler/icons-react": "^2.32.0",
"clsx": "^2.0.0",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"focus-visible": "^5.2.0",
"install": "^0.13.0",
"next": "^13.4.9",
"postcss-focus-visible": "^8.0.2",
"next": "^13.4.19",
"postcss-focus-visible": "^9.0.0",
"postcss-import": "^15.1.0",
"prism-react-renderer": "^1.3.5",
"prism-react-renderer": "^2.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"react-use": "^17.4.0"
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/core": "^7.22.11",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/typography": "^0.5.9",
"@types/d3-drag": "^3.0.2",
"@types/d3-selection": "^3.0.5",
"@types/node": "^17.0.12",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"autoprefixer": "^10.4.14",
"eslint": "7.32.0",
"@types/d3-drag": "^3.0.3",
"@types/d3-selection": "^3.0.6",
"@types/node": "^20.5.7",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"autoprefixer": "^10.4.15",
"eslint": "8.48.0",
"eslint-config-custom": "*",
"postcss": "^8.4.25",
"sharp": "^0.32.1",
"tailwindcss": "^3.3.1",
"postcss": "^8.4.28",
"sharp": "^0.32.5",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"tsconfig": "*",
"typescript": "^4.9.5"
"typescript": "^5.2.2"
}
}
12 changes: 6 additions & 6 deletions config/eslint-config-custom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"main": "index.js",
"license": "MIT",
"dependencies": {
"eslint": "^7.23.0",
"eslint-config-next": "^13.4.9",
"eslint-config-prettier": "^8.3.0",
"eslint-config-turbo": "^1.10.7",
"eslint-plugin-react": "^7.32.2"
"eslint": "^8.48.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-config-turbo": "^1.10.13",
"eslint-plugin-react": "^7.33.2"
},
"devDependencies": {
"typescript": "^4.9.5"
"typescript": "^5.2.2"
},
"publishConfig": {
"access": "public"
Expand Down
8 changes: 4 additions & 4 deletions config/rollup-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
"main": "src/index.js",
"module": "src/index.js",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@rollup/plugin-typescript": "^11.1.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"typescript": "^4.9.5"
"typescript": "^5.2.2"
}
}

0 comments on commit 259b3fd

Please sign in to comment.