chore(deps): bump
This commit is contained in:
@@ -27,6 +27,6 @@
|
||||
"devDependencies": {
|
||||
"@commitlint/cli": "^16.2.3",
|
||||
"@commitlint/config-conventional": "^16.2.1",
|
||||
"@types/node": "^17.0.21"
|
||||
"@types/node": "^17.0.23"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
"types": "dist/index.d.ts",
|
||||
"sideEffects": false,
|
||||
"dependencies": {
|
||||
"@codemirror/highlight": "^0.19.7",
|
||||
"@codemirror/language": "^0.19.8",
|
||||
"@codemirror/highlight": "^0.19.8",
|
||||
"@codemirror/language": "^0.19.10",
|
||||
"@lezer/lr": "^0.15.8"
|
||||
},
|
||||
"devDependencies": {
|
||||
@@ -27,6 +27,6 @@
|
||||
"rollup": "^2.70.1",
|
||||
"rollup-plugin-dts": "^4.2.0",
|
||||
"rollup-plugin-ts": "^2.0.5",
|
||||
"typescript": "^4.6.2"
|
||||
"typescript": "^4.6.3"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,22 +1,31 @@
|
||||
import { GraphCacheResolvers } from "../graphql"
|
||||
import {
|
||||
GraphCacheResolvers,
|
||||
Shortcode,
|
||||
Team,
|
||||
TeamInvitation,
|
||||
WithTypename,
|
||||
} from "../graphql"
|
||||
|
||||
export const resolversDef: GraphCacheResolvers = {
|
||||
Query: {
|
||||
team: (_parent, { teamID }, _cache, _info) => ({
|
||||
__typename: "Team",
|
||||
team: (_parent, { teamID }, _cache, _info) =>
|
||||
<WithTypename<Team>>{
|
||||
__typename: "Team" as const,
|
||||
id: teamID,
|
||||
}),
|
||||
},
|
||||
user: (_parent, { uid }, _cache, _info) => ({
|
||||
__typename: "User",
|
||||
uid,
|
||||
}),
|
||||
teamInvitation: (_parent, args, _cache, _info) => ({
|
||||
teamInvitation: (_parent, args, _cache, _info) =>
|
||||
<WithTypename<TeamInvitation>>{
|
||||
__typename: "TeamInvitation",
|
||||
id: args.inviteID,
|
||||
}),
|
||||
shortcode: (_parent, args, _cache, _info) => ({
|
||||
},
|
||||
shortcode: (_parent, args, _cache, _info) =>
|
||||
<WithTypename<Shortcode>>{
|
||||
__typename: "Shortcode",
|
||||
id: args.code,
|
||||
}),
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
@@ -29,7 +29,7 @@ import { autocompletion, completionKeymap } from "@codemirror/autocomplete"
|
||||
import { commentKeymap } from "@codemirror/comment"
|
||||
import {
|
||||
rectangularSelection,
|
||||
// crosshairCursor,
|
||||
crosshairCursor,
|
||||
} from "@codemirror/rectangular-selection"
|
||||
import { lintKeymap } from "@codemirror/lint"
|
||||
|
||||
@@ -375,7 +375,7 @@ export const basicSetup: Extension = [
|
||||
closeBrackets(),
|
||||
autocompletion(),
|
||||
rectangularSelection(),
|
||||
// crosshairCursor(),
|
||||
crosshairCursor(),
|
||||
highlightActiveLine(),
|
||||
highlightSelectionMatches(),
|
||||
keymap.of([
|
||||
|
||||
@@ -35,35 +35,35 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@apidevtools/swagger-parser": "^10.0.3",
|
||||
"@codemirror/autocomplete": "^0.19.14",
|
||||
"@codemirror/closebrackets": "^0.19.1",
|
||||
"@codemirror/autocomplete": "^0.19.15",
|
||||
"@codemirror/closebrackets": "^0.19.2",
|
||||
"@codemirror/commands": "^0.19.8",
|
||||
"@codemirror/comment": "^0.19.1",
|
||||
"@codemirror/fold": "^0.19.3",
|
||||
"@codemirror/gutter": "^0.19.9",
|
||||
"@codemirror/highlight": "^0.19.7",
|
||||
"@codemirror/highlight": "^0.19.8",
|
||||
"@codemirror/history": "^0.19.2",
|
||||
"@codemirror/lang-javascript": "^0.19.7",
|
||||
"@codemirror/lang-json": "^0.19.2",
|
||||
"@codemirror/lang-xml": "^0.19.2",
|
||||
"@codemirror/language": "^0.19.8",
|
||||
"@codemirror/language": "^0.19.10",
|
||||
"@codemirror/legacy-modes": "^0.19.1",
|
||||
"@codemirror/lint": "^0.19.6",
|
||||
"@codemirror/matchbrackets": "^0.19.4",
|
||||
"@codemirror/rectangular-selection": "^0.19.1",
|
||||
"@codemirror/rectangular-selection": "^0.19.2",
|
||||
"@codemirror/search": "^0.19.9",
|
||||
"@codemirror/state": "^0.19.9",
|
||||
"@codemirror/stream-parser": "^0.19.7",
|
||||
"@codemirror/stream-parser": "^0.19.9",
|
||||
"@codemirror/text": "^0.19.6",
|
||||
"@codemirror/tooltip": "^0.19.16",
|
||||
"@codemirror/view": "^0.19.47",
|
||||
"@codemirror/view": "^0.19.48",
|
||||
"@hoppscotch/codemirror-lang-graphql": "workspace:^0.1.0",
|
||||
"@hoppscotch/data": "workspace:^0.4.0",
|
||||
"@hoppscotch/js-sandbox": "workspace:^2.0.0",
|
||||
"@nuxtjs/axios": "^5.13.6",
|
||||
"@nuxtjs/composition-api": "^0.32.0",
|
||||
"@nuxtjs/gtm": "^2.4.0",
|
||||
"@nuxtjs/i18n": "^7.2.0",
|
||||
"@nuxtjs/i18n": "^7.2.1",
|
||||
"@nuxtjs/robots": "^2.5.0",
|
||||
"@nuxtjs/sentry": "^5.1.7",
|
||||
"@nuxtjs/sitemap": "^2.4.0",
|
||||
@@ -76,7 +76,7 @@
|
||||
"axios": "^0.26.1",
|
||||
"core-js": "^3.21.1",
|
||||
"esprima": "^4.0.1",
|
||||
"firebase": "^9.6.9",
|
||||
"firebase": "^9.6.10",
|
||||
"fp-ts": "^2.11.9",
|
||||
"fuse.js": "^6.5.3",
|
||||
"graphql": "^15.5.0",
|
||||
@@ -84,7 +84,7 @@
|
||||
"graphql-language-service-parser": "^1.10.4",
|
||||
"graphql-tag": "^2.12.6",
|
||||
"httpsnippet": "^2.0.0",
|
||||
"insomnia-importers": "^2.7.0",
|
||||
"insomnia-importers": "^2.8.0",
|
||||
"io-ts": "^2.2.16",
|
||||
"js-yaml": "^4.1.0",
|
||||
"json-loader": "^0.5.7",
|
||||
@@ -95,7 +95,7 @@
|
||||
"nuxt": "^2.15.8",
|
||||
"openapi-types": "^10.0.0",
|
||||
"paho-mqtt": "^1.1.0",
|
||||
"postman-collection": "^4.1.1",
|
||||
"postman-collection": "^4.1.2",
|
||||
"qs": "^6.10.3",
|
||||
"rxjs": "^7.5.5",
|
||||
"socket.io-client-v2": "npm:socket.io-client@^2.4.0",
|
||||
@@ -108,7 +108,7 @@
|
||||
"uuid": "8.3.2",
|
||||
"vue-functional-data-merge": "^3.1.0",
|
||||
"vue-github-button": "^1.3.0",
|
||||
"vue-pdf-embed": "^1.1.0",
|
||||
"vue-pdf-embed": "^1.1.1",
|
||||
"vue-textarea-autosize": "^1.1.1",
|
||||
"vue-tippy": "^4.13.0",
|
||||
"vuedraggable": "^2.24.3",
|
||||
@@ -124,7 +124,7 @@
|
||||
"@graphql-codegen/typed-document-node": "^2.2.8",
|
||||
"@graphql-codegen/typescript": "2.4.8",
|
||||
"@graphql-codegen/typescript-operations": "^2.3.5",
|
||||
"@graphql-codegen/typescript-urql-graphcache": "^2.2.9",
|
||||
"@graphql-codegen/typescript-urql-graphcache": "^2.2.10",
|
||||
"@graphql-codegen/urql-introspection": "^2.1.1",
|
||||
"@graphql-typed-document-node/core": "^3.1.1",
|
||||
"@nuxt/types": "^2.15.8",
|
||||
@@ -139,14 +139,14 @@
|
||||
"@nuxtjs/stylelint-module": "^4.1.0",
|
||||
"@nuxtjs/svg": "^0.4.0",
|
||||
"@relmify/jest-fp-ts": "^2.0.0",
|
||||
"@sentry/browser": "^6.18.2",
|
||||
"@testing-library/jest-dom": "^5.16.2",
|
||||
"@sentry/browser": "^6.19.3",
|
||||
"@testing-library/jest-dom": "^5.16.3",
|
||||
"@types/codemirror": "^5.60.5",
|
||||
"@types/cookie": "^0.4.1",
|
||||
"@types/esprima": "^4.0.3",
|
||||
"@types/har-format": "^1.2.8",
|
||||
"@types/httpsnippet": "^1.23.1",
|
||||
"@types/lodash": "^4.14.180",
|
||||
"@types/lodash": "^4.14.181",
|
||||
"@types/lossless-json": "^1.0.1",
|
||||
"@types/paho-mqtt": "^1.0.6",
|
||||
"@types/postman-collection": "^3.5.7",
|
||||
@@ -156,12 +156,12 @@
|
||||
"@vue/composition-api": "^1.4.9",
|
||||
"@vue/runtime-dom": "^3.2.31",
|
||||
"@vue/test-utils": "^1.3.0",
|
||||
"@vueuse/core": "^8.1.2",
|
||||
"@vueuse/core": "^8.2.4",
|
||||
"babel-core": "^7.0.0-bridge.0",
|
||||
"babel-jest": "^27.5.1",
|
||||
"babel-loader": "^8.2.3",
|
||||
"babel-loader": "^8.2.4",
|
||||
"chokidar": "^3.5.3",
|
||||
"eslint": "^8.11.0",
|
||||
"eslint": "^8.12.0",
|
||||
"eslint-config-prettier": "^8.5.0",
|
||||
"eslint-plugin-nuxt": "^3.2.0",
|
||||
"eslint-plugin-prettier": "^4.0.0",
|
||||
@@ -171,17 +171,17 @@
|
||||
"npm-run-all": "^4.1.5",
|
||||
"nuxt-windicss": "^2.2.8",
|
||||
"postcss-html": "^1.3.0",
|
||||
"prettier": "^2.6.0",
|
||||
"prettier": "^2.6.2",
|
||||
"raw-loader": "^4.0.2",
|
||||
"sass": "^1.49.9",
|
||||
"sass": "^1.49.11",
|
||||
"sass-loader": "^10.2.0",
|
||||
"stylelint": "^14.6.0",
|
||||
"stylelint": "^14.6.1",
|
||||
"stylelint-config-prettier": "^9.0.3",
|
||||
"stylelint-config-recommended-vue": "^1.3.0",
|
||||
"stylelint-config-recommended-vue": "^1.4.0",
|
||||
"stylelint-config-standard": "^25.0.0",
|
||||
"stylelint-config-standard-scss": "^3.0.0",
|
||||
"ts-jest": "^27.1.3",
|
||||
"typescript": "^4.6.2",
|
||||
"ts-jest": "^27.1.4",
|
||||
"typescript": "^4.6.3",
|
||||
"vue-jest": "^3.0.7",
|
||||
"vue-template-babel-compiler": "^1.1.3",
|
||||
"worker-loader": "^3.0.8"
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
"devDependencies": {
|
||||
"@hoppscotch/data": "workspace:^0.4.1",
|
||||
"@hoppscotch/js-sandbox": "workspace:^2.0.0",
|
||||
"@swc/core": "^1.2.162",
|
||||
"@swc/core": "^1.2.163",
|
||||
"@types/axios": "^0.14.0",
|
||||
"@types/chalk": "^2.2.0",
|
||||
"@types/commander": "^2.12.2",
|
||||
@@ -47,9 +47,9 @@
|
||||
"esm": "^3.2.25",
|
||||
"fp-ts": "^2.11.3",
|
||||
"lodash": "^4.17.21",
|
||||
"prettier": "^2.6.1",
|
||||
"prettier": "^2.6.2",
|
||||
"qs": "^6.10.3",
|
||||
"tsup": "^5.12.2",
|
||||
"tsup": "^5.12.4",
|
||||
"typescript": "^4.6.3"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -31,8 +31,8 @@
|
||||
},
|
||||
"homepage": "https://github.com/hoppscotch/hoppscotch#readme",
|
||||
"devDependencies": {
|
||||
"@types/lodash": "^4.14.180",
|
||||
"tsup": "^5.12.1"
|
||||
"@types/lodash": "^4.14.181",
|
||||
"tsup": "^5.12.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"fp-ts": "^2.11.9",
|
||||
|
||||
@@ -44,23 +44,23 @@
|
||||
"fp-ts": "^2.11.9",
|
||||
"lodash": "^4.17.21",
|
||||
"quickjs-emscripten": "^0.15.0",
|
||||
"tsup": "^5.11.13"
|
||||
"tsup": "^5.12.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@digitak/esrun": "^3.1.2",
|
||||
"@relmify/jest-fp-ts": "^2.0.0",
|
||||
"@types/jest": "^27.4.1",
|
||||
"@types/lodash": "^4.14.180",
|
||||
"@types/node": "^17.0.21",
|
||||
"@typescript-eslint/eslint-plugin": "^5.15.0",
|
||||
"@typescript-eslint/parser": "^5.15.0",
|
||||
"eslint": "^8.11.0",
|
||||
"@types/lodash": "^4.14.181",
|
||||
"@types/node": "^17.0.23",
|
||||
"@typescript-eslint/eslint-plugin": "^5.17.0",
|
||||
"@typescript-eslint/parser": "^5.17.0",
|
||||
"eslint": "^8.12.0",
|
||||
"eslint-config-prettier": "^8.5.0",
|
||||
"eslint-plugin-prettier": "^4.0.0",
|
||||
"io-ts": "^2.2.16",
|
||||
"jest": "^27.5.1",
|
||||
"prettier": "^2.6.0",
|
||||
"ts-jest": "^27.1.3",
|
||||
"typescript": "^4.6.2"
|
||||
"prettier": "^2.6.2",
|
||||
"ts-jest": "^27.1.4",
|
||||
"typescript": "^4.6.3"
|
||||
}
|
||||
}
|
||||
|
||||
2002
pnpm-lock.yaml
generated
2002
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user