Skip to content

Commit

Permalink
Upgrade dependencies 💞
Browse files Browse the repository at this point in the history
  • Loading branch information
willnguyen1312 committed Jan 27, 2024
1 parent cd72d5e commit ae8154a
Show file tree
Hide file tree
Showing 36 changed files with 2,563 additions and 2,660 deletions.
18 changes: 9 additions & 9 deletions examples/with-angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@
"dev": "ng serve"
},
"dependencies": {
"@angular/common": "^17.0.8",
"@angular/core": "^17.0.8",
"@angular/platform-browser": "^17.0.8",
"@angular/platform-browser-dynamic": "^17.0.8",
"@angular/common": "^17.1.1",
"@angular/core": "^17.1.1",
"@angular/platform-browser": "^17.1.1",
"@angular/platform-browser-dynamic": "^17.1.1",
"@zoom-image/angular": "latest",
"rxjs": "~7.8.1",
"tslib": "^2.6.2",
"zone.js": "~0.14.2"
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.9",
"@angular/cli": "~17.0.9",
"@angular/compiler": "^17.0.8",
"@angular/compiler-cli": "^17.0.8",
"@angular-devkit/build-angular": "^17.1.1",
"@angular/cli": "~17.1.1",
"@angular/compiler": "^17.1.1",
"@angular/compiler-cli": "^17.1.1",
"typescript": "~5.3.3"
}
}
6 changes: 3 additions & 3 deletions examples/with-angular/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
"target": "ES2022",
"module": "ES2022",
"useDefineForClassFields": false,
"lib": ["ES2022", "dom"]
"lib": ["ES2022", "dom"],
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
"strictTemplates": true,
},
}
18 changes: 9 additions & 9 deletions examples/with-next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@
"dev": "next dev"
},
"dependencies": {
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/node": "^20.11.7",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@unocss/postcss": "^0.58.3",
"@unocss/reset": "^0.58.3",
"@unocss/postcss": "^0.58.4",
"@unocss/reset": "^0.58.4",
"@zoom-image/react": "latest",
"autoprefixer": "10.4.16",
"autoprefixer": "10.4.17",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"next": "14.0.4",
"postcss": "8.4.32",
"eslint-config-next": "14.1.0",
"next": "14.1.0",
"postcss": "8.4.33",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "5.3.3",
"unocss": "^0.58.3"
"unocss": "^0.58.4"
}
}
10 changes: 5 additions & 5 deletions examples/with-next/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"incremental": true,
"plugins": [
{
"name": "next"
}
"name": "next",
},
],
"paths": {
"@/*": ["./src/*"]
}
"@/*": ["./src/*"],
},
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
"exclude": ["node_modules"],
}
6 changes: 3 additions & 3 deletions examples/with-preact/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
},
"devDependencies": {
"@preact/preset-vite": "^2.8.1",
"@unocss/reset": "^0.58.3",
"@unocss/reset": "^0.58.4",
"typescript": "^5.3.3",
"unocss": "^0.58.3",
"vite": "^5.0.10"
"unocss": "^0.58.4",
"vite": "^5.0.12"
}
}
4 changes: 2 additions & 2 deletions examples/with-preact/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
"noFallthroughCasesInSwitch": true,
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
"references": [{ "path": "./tsconfig.node.json" }],
}
16 changes: 8 additions & 8 deletions examples/with-qwik/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
"dev": "vite --mode ssr"
},
"devDependencies": {
"@builder.io/qwik": "1.3.2",
"@builder.io/qwik-city": "^1.3.2",
"@types/node": "^20.10.6",
"@unocss/reset": "^0.58.3",
"@builder.io/qwik": "1.4.2",
"@builder.io/qwik-city": "^1.4.2",
"@types/node": "^20.11.7",
"@unocss/reset": "^0.58.4",
"typescript": "5.3.3",
"undici": "^6.2.1",
"unocss": "^0.58.3",
"vite": "^5.0.10",
"vite-tsconfig-paths": "4.2.3"
"undici": "^6.5.0",
"unocss": "^0.58.4",
"vite": "^5.0.12",
"vite-tsconfig-paths": "4.3.1"
},
"dependencies": {
"@zoom-image/qwik": "latest"
Expand Down
6 changes: 3 additions & 3 deletions examples/with-qwik/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"noEmit": true,
"types": ["node", "vite/client"],
"paths": {
"~/*": ["./src/*"]
}
"~/*": ["./src/*"],
},
},
"include": ["src", "./*.d.ts"]
"include": ["src", "./*.d.ts"],
}
8 changes: 4 additions & 4 deletions examples/with-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.46",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@unocss/reset": "^0.58.3",
"@unocss/reset": "^0.58.4",
"@vitejs/plugin-react": "^4.2.1",
"typescript": "^5.3.3",
"unocss": "^0.58.3",
"vite": "^5.0.10"
"unocss": "^0.58.4",
"vite": "^5.0.12"
}
}
4 changes: 2 additions & 2 deletions examples/with-react/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
"noFallthroughCasesInSwitch": true,
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
"references": [{ "path": "./tsconfig.node.json" }],
}
22 changes: 11 additions & 11 deletions examples/with-remix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,25 @@
"dev": "remix dev --manual"
},
"dependencies": {
"@remix-run/css-bundle": "^2.4.1",
"@remix-run/node": "^2.4.1",
"@remix-run/react": "^2.4.1",
"@remix-run/serve": "^2.4.1",
"@unocss/reset": "^0.58.3",
"@remix-run/css-bundle": "^2.5.1",
"@remix-run/node": "^2.5.1",
"@remix-run/react": "^2.5.1",
"@remix-run/serve": "^2.5.1",
"@unocss/reset": "^0.58.4",
"@zoom-image/react": "latest",
"isbot": "^4.3.0",
"isbot": "^4.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@remix-run/dev": "^2.4.1",
"@remix-run/eslint-config": "^2.4.1",
"@types/react": "^18.2.46",
"@remix-run/dev": "^2.5.1",
"@remix-run/eslint-config": "^2.5.1",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"eslint": "^8.56.0",
"tailwindcss": "^3.4.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"unocss": "^0.58.3"
"unocss": "^0.58.4"
},
"engines": {
"node": ">=18.0.0"
Expand Down
6 changes: 3 additions & 3 deletions examples/with-remix/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"]
"~/*": ["./app/*"],
},

// Remix takes care of building everything in `remix build`.
"noEmit": true
}
"noEmit": true,
},
}
10 changes: 5 additions & 5 deletions examples/with-solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
},
"license": "MIT",
"devDependencies": {
"@unocss/reset": "^0.58.3",
"@unocss/reset": "^0.58.4",
"typescript": "^5.3.3",
"unocss": "^0.58.3",
"vite": "^5.0.10",
"vite-plugin-solid": "^2.8.0"
"unocss": "^0.58.4",
"vite": "^5.0.12",
"vite-plugin-solid": "^2.9.1"
},
"dependencies": {
"@zoom-image/solid": "latest",
"solid-js": "^1.8.8"
"solid-js": "^1.8.12"
}
}
4 changes: 2 additions & 2 deletions examples/with-solid/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"jsxImportSource": "solid-js",
"types": ["vite/client"],
"noEmit": true,
"isolatedModules": true
}
"isolatedModules": true,
},
}
10 changes: 5 additions & 5 deletions examples/with-svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@tsconfig/svelte": "^5.0.2",
"@unocss/reset": "^0.58.3",
"svelte": "^4.2.8",
"svelte-check": "^3.6.2",
"@unocss/reset": "^0.58.4",
"svelte": "^4.2.9",
"svelte-check": "^3.6.3",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"unocss": "^0.58.3",
"vite": "^5.0.10"
"unocss": "^0.58.4",
"vite": "^5.0.12"
}
}
4 changes: 2 additions & 2 deletions examples/with-svelte/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"resolveJsonModule": true,
"allowJs": true,
"checkJs": true,
"isolatedModules": true
"isolatedModules": true,
},
"include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.js", "src/**/*.svelte"],
"references": [{ "path": "./tsconfig.node.json" }]
"references": [{ "path": "./tsconfig.node.json" }],
}
6 changes: 3 additions & 3 deletions examples/with-vanilla/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"dev": "vite"
},
"devDependencies": {
"@unocss/reset": "^0.58.3",
"@unocss/reset": "^0.58.4",
"typescript": "^5.3.3",
"unocss": "^0.58.3",
"vite": "^5.0.10"
"unocss": "^0.58.4",
"vite": "^5.0.12"
},
"dependencies": {
"@zoom-image/core": "latest"
Expand Down
4 changes: 2 additions & 2 deletions examples/with-vanilla/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
"noFallthroughCasesInSwitch": true,
},
"include": ["src", "vite.config.ts"]
"include": ["src", "vite.config.ts"],
}
12 changes: 6 additions & 6 deletions examples/with-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
},
"dependencies": {
"@zoom-image/vue": "latest",
"vue": "^3.4.5"
"vue": "^3.4.15"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@unocss/reset": "^0.58.3",
"@vitejs/plugin-vue": "^4.6.2",
"@types/node": "^20.11.7",
"@unocss/reset": "^0.58.4",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/tsconfig": "^0.5.1",
"npm-run-all": "^4.1.5",
"typescript": "~5.3.3",
"unocss": "^0.58.3",
"vite": "^5.0.10",
"unocss": "^0.58.4",
"vite": "^5.0.12",
"vue-tsc": "^1.8.27"
}
}
10 changes: 5 additions & 5 deletions examples/with-vue/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
"@/*": ["./src/*"],
},
},

"references": [
{
"path": "./tsconfig.node.json"
}
]
"path": "./tsconfig.node.json",
},
],
}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@
"eslint-config-custom": "workspace:*",
"esno": "^4.0.0",
"export-size": "^0.7.0",
"prettier": "^3.1.1",
"prettier": "^3.2.4",
"prettier-plugin-svelte": "^3.1.2",
"prettier-plugin-tailwindcss": "^0.5.10",
"turbo": "^1.11.2",
"unocss": "^0.58.3"
"prettier-plugin-tailwindcss": "^0.5.11",
"turbo": "^1.11.3",
"unocss": "^0.58.4"
}
}
14 changes: 7 additions & 7 deletions packages/angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
"tslib": "^2.6.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.9",
"@angular/cli": "~17.0.9",
"@angular/compiler": "^17.0.8",
"@angular/compiler-cli": "^17.0.8",
"@angular/core": "^17.0.8",
"ng-packagr": "^17.0.3",
"typescript": "~5.2.2"
"@angular-devkit/build-angular": "^17.1.1",
"@angular/cli": "~17.1.1",
"@angular/compiler": "^17.1.1",
"@angular/compiler-cli": "^17.1.1",
"@angular/core": "^17.1.1",
"ng-packagr": "^17.1.2",
"typescript": "~5.3.3"
}
}
Loading

0 comments on commit ae8154a

Please sign in to comment.