chore: up selector deps

This commit is contained in:
lisonge
2023-09-11 19:13:05 +08:00
parent 4556cb0905
commit da1e8c9e4d
3 changed files with 7 additions and 7 deletions

View File

@@ -22,7 +22,7 @@
"devDependencies": { "devDependencies": {
"@commitlint/cli": "^17.7.1", "@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0", "@commitlint/config-conventional": "^17.7.0",
"@gkd-kit/selector": "0.0.11", "@gkd-kit/selector": "0.0.12",
"@types/lodash": "^4.14.195", "@types/lodash": "^4.14.195",
"@types/node": "^20.4.2", "@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "6.5.0", "@typescript-eslint/eslint-plugin": "6.5.0",

8
pnpm-lock.yaml generated
View File

@@ -12,8 +12,8 @@ devDependencies:
specifier: ^17.7.0 specifier: ^17.7.0
version: 17.7.0 version: 17.7.0
'@gkd-kit/selector': '@gkd-kit/selector':
specifier: 0.0.11 specifier: 0.0.12
version: 0.0.11 version: 0.0.12
'@types/lodash': '@types/lodash':
specifier: ^4.14.195 specifier: ^4.14.195
version: 4.14.195 version: 4.14.195
@@ -523,8 +523,8 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true dev: true
/@gkd-kit/selector@0.0.11: /@gkd-kit/selector@0.0.12:
resolution: {integrity: sha512-WqerYbOBOnVQkDgiqhjSFWfZZdJwPNiM1faFFVHrUCL0cwtpi0QZa0MEknd66i82kTs2bBwqmD8y21syNZaNDg==} resolution: {integrity: sha512-gxA1uMBpbppLAcAng2g/GQwAud3tJFB/osYDYlrpQ2LwgBF7EkxfD0mDtgdHhfoQZpciA4XcdR+RXrYs9BacZw==}
dev: true dev: true
/@humanwhocodes/config-array@0.11.11: /@humanwhocodes/config-array@0.11.11:

View File

@@ -1,5 +1,5 @@
import SelectorKit from '@gkd-kit/selector'; import { CommonSelector } from '@gkd-kit/selector';
export const parseSelector = (source: string) => { export const parseSelector = (source: string) => {
return SelectorKit.CommonSelector.Companion.parse(source); return CommonSelector.Companion.parse(source);
}; };