Skip to content

Commit d46031f

Browse files
committed
chore: update dependencies
1 parent 3f00cf3 commit d46031f

10 files changed

Lines changed: 2686 additions & 2534 deletions

File tree

.eslintrc.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@ module.exports = {
33
extends: [
44
'@nuxtjs',
55
'@nuxtjs/eslint-config-typescript'
6-
]
6+
],
7+
rules: {
8+
'vue/multi-word-component-names': 0
9+
}
710
}

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@
2525
},
2626
"dependencies": {
2727
"consola": "^2.15.3",
28-
"defu": "^5.0.0",
28+
"defu": "^5.0.1",
2929
"fs-extra": "^10.0.0",
3030
"hasha": "^5.2.2",
31-
"image-meta": "^0.0.1",
31+
"image-meta": "^0.1.1",
3232
"is-https": "^4.0.0",
3333
"lru-cache": "^6.0.0",
3434
"node-fetch": "^2.6.1",
3535
"p-limit": "^3.1.0",
3636
"rc9": "^1.2.0",
3737
"requrl": "^3.0.2",
3838
"semver": "^7.3.5",
39-
"ufo": "^0.7.9",
39+
"ufo": "^0.7.10",
4040
"upath": "^2.0.1"
4141
},
4242
"devDependencies": {
@@ -52,7 +52,7 @@
5252
"@types/jest": "latest",
5353
"@types/lru-cache": "latest",
5454
"@types/node-fetch": "^2",
55-
"@types/semver": "^7.3.8",
55+
"@types/semver": "latest",
5656
"@vue/test-utils": "latest",
5757
"babel-core": "^7.0.0-bridge.0",
5858
"babel-eslint": "latest",
@@ -61,7 +61,7 @@
6161
"jsdom": "latest",
6262
"jsdom-global": "latest",
6363
"mkdist": "latest",
64-
"nuxt": "^2.15.8",
64+
"nuxt-edge": "latest",
6565
"playwright": "latest",
6666
"siroc": "latest",
6767
"standard-version": "latest",
@@ -70,7 +70,7 @@
7070
"vue-jest": "latest"
7171
},
7272
"optionalDependencies": {
73-
"ipx": "^0.8.0"
73+
"ipx": "^0.9.2"
7474
},
7575
"publishConfig": {
7676
"access": "public"

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export * from './module'
1+
export { default } from './module'
22
export * from './types'

src/runtime/providers/glide.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// https://glide.thephpleague.com/2.0/api/quick-reference/
22

3-
import { ProviderGetImage } from 'src'
43
import { joinURL, encodeQueryItem, encodePath, withBase } from 'ufo'
4+
import { ProviderGetImage } from 'src'
55
import { createOperationsGenerator } from '~image'
66

77
const operationsGenerator = createOperationsGenerator({

src/runtime/providers/ipx.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { ProviderGetImage } from 'src'
21
import { joinURL, encodePath, encodeParam } from 'ufo'
2+
import { ProviderGetImage } from 'src'
33
import { createOperationsGenerator } from '~image'
44

55
const operationsGenerator = createOperationsGenerator({

src/runtime/providers/prismic.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { joinURL, parseQuery, parseURL, stringifyQuery } from 'ufo'
2-
import type { ProviderGetImage } from 'src'
32
import { operationsGenerator } from './imgix'
3+
import type { ProviderGetImage } from 'src'
44

55
const PRISMIC_IMGIX_BUCKET = 'https://images.prismic.io'
66

src/runtime/providers/unsplash.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// https://unsplash.com/documentation#dynamically-resizable-images
22

33
import { joinURL, withBase } from 'ufo'
4-
import type { ProviderGetImage } from 'src'
54
import { operationsGenerator } from './imgix'
5+
import type { ProviderGetImage } from 'src'
66

77
const unsplashCDN = 'https://images.unsplash.com/'
88

src/runtime/providers/vercel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { ProviderGetImage } from 'src'
21
import { stringifyQuery } from 'ufo'
2+
import { ProviderGetImage } from 'src'
33

44
// https://vercel.com/docs/more/adding-your-framework#images
55

test/fixture/pages/index.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export default {
2020
this.image = '/1280px-K2_2006b.jpg'
2121
},
2222
onLoad () {
23+
// eslint-disable-next-line no-console
2324
console.log('Image was loaded.')
2425
}
2526
}

yarn.lock

Lines changed: 2669 additions & 2521 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)