Skip to content

Commit

Permalink
chore: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
johannschopplich committed Nov 6, 2023
1 parent 54a1d37 commit 2cd4195
Show file tree
Hide file tree
Showing 14 changed files with 2,354 additions and 1,291 deletions.
6 changes: 3 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

// Auto-fix
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.organizeImports": false
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},

// Silent the stylistic rules in you IDE, but still auto-fix them
Expand All @@ -25,7 +25,7 @@
{ "rule": "*semi", "severity": "off" }
],

// Enable eslint for all supported languages
// Enable ESLint for all supported languages
"eslint.validate": [
"javascript",
"javascriptreact",
Expand Down
4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"devDependencies": {
"@iconify-json/carbon": "^1.1.21",
"unocss": "^0.56.5",
"vitepress": "1.0.0-rc.20"
"unocss": "^0.57.2",
"vitepress": "1.0.0-rc.24"
}
}
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "module",
"version": "0.10.1",
"private": true,
"packageManager": "pnpm@8.8.0",
"packageManager": "pnpm@8.10.2",
"scripts": {
"build": "pnpm -r --filter=./packages/** run build",
"dev:prepare": "pnpm -r --filter=./packages/** run dev:prepare",
Expand All @@ -18,18 +18,18 @@
"prepare": "pnpm run dev:prepare"
},
"devDependencies": {
"@antfu/eslint-config": "^1.0.0-beta.21",
"@types/node": "^20.8.2",
"@antfu/eslint-config": "^1.1.0",
"@types/node": "^20.8.10",
"bumpp": "^9.2.0",
"eslint": "^8.50.0",
"eslint": "^8.53.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"happy-dom": "^12.9.0",
"happy-dom": "^12.10.3",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vite": "^4.4.11",
"vite": "^4.5.0",
"vitest": "^0.34.6",
"vue-tsc": "^1.8.15"
"vue-tsc": "^1.8.22"
},
"pnpm": {
"overrides": {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@unlazy/core",
"type": "module",
"version": "0.10.1",
"packageManager": "pnpm@8.8.0",
"packageManager": "pnpm@8.10.2",
"description": "Universal lazy loading library for placeholder images leveraging native browser APIs",
"author": "Johann Schopplich <[email protected]>",
"license": "MIT",
Expand Down
20 changes: 10 additions & 10 deletions packages/nuxt/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@unlazy/nuxt",
"version": "0.10.1",
"packageManager": "pnpm@8.8.0",
"packageManager": "pnpm@8.10.2",
"description": "Nuxt lazy loading module for placeholder images",
"author": "Johann Schopplich <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -38,23 +38,23 @@
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"test:types": "vue-tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^3.7.4",
"defu": "^6.1.2",
"@nuxt/kit": "^3.8.1",
"defu": "^6.1.3",
"unlazy": "workspace:*"
},
"devDependencies": {
"@nuxt/module-builder": "^0.5.2",
"@nuxt/schema": "^3.7.4",
"@types/node": "^20.8.2",
"@unocss/nuxt": "^0.56.5",
"@unocss/reset": "^0.56.5",
"nuxt": "^3.7.4"
"@nuxt/module-builder": "^0.5.3",
"@nuxt/schema": "^3.8.1",
"@types/node": "^20.8.10",
"@unocss/nuxt": "^0.57.2",
"@unocss/reset": "^0.57.2",
"nuxt": "^3.8.1"
}
}
1 change: 0 additions & 1 deletion packages/nuxt/src/runtime/components/UnLazyImage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ const unlazy = useRuntimeConfig().public.unlazy as ModuleOptions
const hash = computed(() => props.thumbhash || props.blurhash)
// SSR-decoded BlurHash as PNG data URI placeholder image
// eslint-disable-next-line node/prefer-global/process
const pngPlaceholder = (process.server && (props.ssr ?? unlazy.ssr) && hash.value)
? createPlaceholderFromHash({
hash: hash.value,
Expand Down
10 changes: 5 additions & 5 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@unlazy/react",
"type": "module",
"version": "0.10.1",
"packageManager": "pnpm@8.8.0",
"packageManager": "pnpm@8.10.2",
"description": "React lazy loading library for placeholder images",
"author": "Johann Schopplich <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -48,10 +48,10 @@
"unlazy": "workspace:*"
},
"devDependencies": {
"@types/node": "^20.8.2",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.10",
"@vitejs/plugin-react": "^4.1.0",
"@types/node": "^20.8.10",
"@types/react": "^18.2.36",
"@types/react-dom": "^18.2.14",
"@vitejs/plugin-react": "^4.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/react/playground/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function App() {
src="/images/sunrise-evan-wallace.jpg"
width="480"
height="640"
/>
/>
</>
)
}
Expand Down
8 changes: 4 additions & 4 deletions packages/solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@unlazy/solid",
"type": "module",
"version": "0.10.1",
"packageManager": "pnpm@8.8.0",
"packageManager": "pnpm@8.10.2",
"description": "Solid lazy loading library for placeholder images",
"author": "Johann Schopplich <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -55,11 +55,11 @@
"unlazy": "workspace:*"
},
"devDependencies": {
"@types/node": "^20.8.2",
"@types/node": "^20.8.10",
"eslint-plugin-solid": "^0.13.0",
"solid-js": "^1.7.12",
"solid-js": "^1.8.5",
"tsup": "^7.2.0",
"tsup-preset-solid": "^2.1.0",
"vite-plugin-solid": "^2.7.0"
"vite-plugin-solid": "^2.7.2"
}
}
2 changes: 1 addition & 1 deletion packages/solid/playground/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function App() {
src="/images/sunrise-evan-wallace.jpg"
width="480"
height="640"
/>
/>
</>
)
}
Expand Down
10 changes: 5 additions & 5 deletions packages/svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@unlazy/svelte",
"type": "module",
"version": "0.10.1",
"packageManager": "pnpm@8.8.0",
"packageManager": "pnpm@8.10.2",
"description": "Svelte lazy loading library for placeholder images",
"author": "Johann Schopplich <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -55,11 +55,11 @@
"unlazy": "workspace:*"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/kit": "^1.25.1",
"@sveltejs/adapter-auto": "^2.1.1",
"@sveltejs/kit": "^1.27.3",
"@sveltejs/package": "^2.2.2",
"eslint-plugin-svelte": "^2.34.0",
"svelte": "^4.2.1",
"eslint-plugin-svelte": "^2.34.1",
"svelte": "^4.2.2",
"svelte-check": "^3.5.2",
"tslib": "^2.6.2"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/unlazy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "unlazy",
"type": "module",
"version": "0.10.1",
"packageManager": "pnpm@8.8.0",
"packageManager": "pnpm@8.10.2",
"description": "Universal lazy loading library for placeholder images leveraging native browser APIs",
"author": "Johann Schopplich <[email protected]>",
"license": "MIT",
Expand Down
6 changes: 3 additions & 3 deletions packages/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@unlazy/vue",
"type": "module",
"version": "0.10.1",
"packageManager": "pnpm@8.8.0",
"packageManager": "pnpm@8.10.2",
"description": "Vue lazy loading library for placeholder images",
"author": "Johann Schopplich <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -59,8 +59,8 @@
"unlazy": "workspace:*"
},
"devDependencies": {
"@types/node": "^20.8.2",
"@types/node": "^20.8.10",
"@vitejs/plugin-vue": "^4.4.0",
"vue": "^3.3.4"
"vue": "^3.3.8"
}
}
Loading

0 comments on commit 2cd4195

Please sign in to comment.