chore: changes to support id based syncing for collections (#2977)
This commit is contained in:
@@ -299,7 +299,8 @@ const removeCollection = () => {
|
|||||||
) {
|
) {
|
||||||
emit("select", null)
|
emit("select", null)
|
||||||
}
|
}
|
||||||
removeGraphqlCollection(props.collectionIndex)
|
|
||||||
|
removeGraphqlCollection(props.collectionIndex, props.collection.id)
|
||||||
toast.success(`${t("state.deleted")}`)
|
toast.success(`${t("state.deleted")}`)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -279,7 +279,7 @@ const removeFolder = () => {
|
|||||||
emit("select", { picked: null })
|
emit("select", { picked: null })
|
||||||
}
|
}
|
||||||
|
|
||||||
removeGraphqlFolder(props.folderPath)
|
removeGraphqlFolder(props.folderPath, props.folder.id)
|
||||||
toast.success(t("state.deleted"))
|
toast.success(t("state.deleted"))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -214,7 +214,7 @@ const removeRequest = () => {
|
|||||||
emit("select", null)
|
emit("select", null)
|
||||||
}
|
}
|
||||||
|
|
||||||
removeGraphqlRequest(props.folderPath, props.requestIndex)
|
removeGraphqlRequest(props.folderPath, props.requestIndex, props.request.id)
|
||||||
toast.success(`${t("state.deleted")}`)
|
toast.success(`${t("state.deleted")}`)
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -183,6 +183,8 @@ import {
|
|||||||
updateRESTRequestOrder,
|
updateRESTRequestOrder,
|
||||||
updateRESTCollectionOrder,
|
updateRESTCollectionOrder,
|
||||||
moveRESTFolder,
|
moveRESTFolder,
|
||||||
|
navigateToFolderWithIndexPath,
|
||||||
|
restCollectionStore,
|
||||||
} from "~/newstore/collections"
|
} from "~/newstore/collections"
|
||||||
import TeamCollectionAdapter from "~/helpers/teams/TeamCollectionAdapter"
|
import TeamCollectionAdapter from "~/helpers/teams/TeamCollectionAdapter"
|
||||||
import {
|
import {
|
||||||
@@ -1014,6 +1016,13 @@ const onRemoveCollection = () => {
|
|||||||
if (collectionsType.value.type === "my-collections") {
|
if (collectionsType.value.type === "my-collections") {
|
||||||
const collectionIndex = editingCollectionIndex.value
|
const collectionIndex = editingCollectionIndex.value
|
||||||
|
|
||||||
|
const collectionToRemove =
|
||||||
|
collectionIndex || collectionIndex == 0
|
||||||
|
? navigateToFolderWithIndexPath(restCollectionStore.value.state, [
|
||||||
|
collectionIndex,
|
||||||
|
])
|
||||||
|
: undefined
|
||||||
|
|
||||||
if (collectionIndex === null) return
|
if (collectionIndex === null) return
|
||||||
|
|
||||||
if (
|
if (
|
||||||
@@ -1024,7 +1033,10 @@ const onRemoveCollection = () => {
|
|||||||
emit("select", null)
|
emit("select", null)
|
||||||
}
|
}
|
||||||
|
|
||||||
removeRESTCollection(collectionIndex)
|
removeRESTCollection(
|
||||||
|
collectionIndex,
|
||||||
|
collectionToRemove ? collectionToRemove.id : undefined
|
||||||
|
)
|
||||||
|
|
||||||
resolveSaveContextOnCollectionReorder({
|
resolveSaveContextOnCollectionReorder({
|
||||||
lastIndex: collectionIndex,
|
lastIndex: collectionIndex,
|
||||||
@@ -1077,7 +1089,14 @@ const onRemoveFolder = () => {
|
|||||||
emit("select", null)
|
emit("select", null)
|
||||||
}
|
}
|
||||||
|
|
||||||
removeRESTFolder(folderPath)
|
const folderToRemove = folderPath
|
||||||
|
? navigateToFolderWithIndexPath(
|
||||||
|
restCollectionStore.value.state,
|
||||||
|
folderPath.split("/").map((i) => parseInt(i))
|
||||||
|
)
|
||||||
|
: undefined
|
||||||
|
|
||||||
|
removeRESTFolder(folderPath, folderToRemove ? folderToRemove.id : undefined)
|
||||||
|
|
||||||
const parentFolder = folderPath.split("/").slice(0, -1).join("/") // remove last folder to get parent folder
|
const parentFolder = folderPath.split("/").slice(0, -1).join("/") // remove last folder to get parent folder
|
||||||
resolveSaveContextOnCollectionReorder({
|
resolveSaveContextOnCollectionReorder({
|
||||||
@@ -1151,7 +1170,12 @@ const onRemoveRequest = () => {
|
|||||||
possibleTab.value.document.isDirty = true
|
possibleTab.value.document.isDirty = true
|
||||||
}
|
}
|
||||||
|
|
||||||
removeRESTRequest(folderPath, requestIndex)
|
const requestToRemove = navigateToFolderWithIndexPath(
|
||||||
|
restCollectionStore.value.state,
|
||||||
|
folderPath.split("/").map((i) => parseInt(i))
|
||||||
|
)?.requests[requestIndex]
|
||||||
|
|
||||||
|
removeRESTRequest(folderPath, requestIndex, requestToRemove?.id)
|
||||||
|
|
||||||
// the same function is used to reorder requests since after removing, it's basically doing reorder
|
// the same function is used to reorder requests since after removing, it's basically doing reorder
|
||||||
resolveSaveContextOnRequestReorder({
|
resolveSaveContextOnRequestReorder({
|
||||||
|
|||||||
@@ -33,6 +33,10 @@ const defaultGraphqlCollectionState = {
|
|||||||
type RESTCollectionStoreType = typeof defaultRESTCollectionState
|
type RESTCollectionStoreType = typeof defaultRESTCollectionState
|
||||||
type GraphqlCollectionStoreType = typeof defaultGraphqlCollectionState
|
type GraphqlCollectionStoreType = typeof defaultGraphqlCollectionState
|
||||||
|
|
||||||
|
/**
|
||||||
|
* NOTE: this function is not pure. It mutates the indexPaths inplace
|
||||||
|
* Not removing this behaviour because i'm not sure if we utilize this behaviour anywhere and i found this on a tight time crunch.
|
||||||
|
*/
|
||||||
export function navigateToFolderWithIndexPath(
|
export function navigateToFolderWithIndexPath(
|
||||||
collections: HoppCollection<HoppRESTRequest | HoppGQLRequest>[],
|
collections: HoppCollection<HoppRESTRequest | HoppGQLRequest>[],
|
||||||
indexPaths: number[]
|
indexPaths: number[]
|
||||||
@@ -86,7 +90,12 @@ const restCollectionDispatchers = defineDispatchers({
|
|||||||
|
|
||||||
removeCollection(
|
removeCollection(
|
||||||
{ state }: RESTCollectionStoreType,
|
{ state }: RESTCollectionStoreType,
|
||||||
{ collectionIndex }: { collectionIndex: number }
|
{
|
||||||
|
collectionIndex,
|
||||||
|
// this collectionID is used to sync the collection removal
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||||
|
collectionID,
|
||||||
|
}: { collectionIndex: number; collectionID?: string }
|
||||||
) {
|
) {
|
||||||
return {
|
return {
|
||||||
state: (state as any).filter(
|
state: (state as any).filter(
|
||||||
@@ -174,7 +183,12 @@ const restCollectionDispatchers = defineDispatchers({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
removeFolder({ state }: RESTCollectionStoreType, { path }: { path: string }) {
|
removeFolder(
|
||||||
|
{ state }: RESTCollectionStoreType,
|
||||||
|
// folderID is used to sync the folder removal in collections.sync.ts
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||||
|
{ path, folderID }: { path: string; folderID?: string }
|
||||||
|
) {
|
||||||
const newState = state
|
const newState = state
|
||||||
|
|
||||||
const indexPaths = path.split("/").map((x) => parseInt(x))
|
const indexPaths = path.split("/").map((x) => parseInt(x))
|
||||||
@@ -415,7 +429,13 @@ const restCollectionDispatchers = defineDispatchers({
|
|||||||
|
|
||||||
removeRequest(
|
removeRequest(
|
||||||
{ state }: RESTCollectionStoreType,
|
{ state }: RESTCollectionStoreType,
|
||||||
{ path, requestIndex }: { path: string; requestIndex: number }
|
{
|
||||||
|
path,
|
||||||
|
requestIndex,
|
||||||
|
// this requestID is used to sync the request removal
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||||
|
requestID,
|
||||||
|
}: { path: string; requestIndex: number; requestID?: string }
|
||||||
) {
|
) {
|
||||||
const newState = state
|
const newState = state
|
||||||
|
|
||||||
@@ -573,6 +593,31 @@ const restCollectionDispatchers = defineDispatchers({
|
|||||||
state: newState,
|
state: newState,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// only used for collections.sync.ts to prevent double insertion of collections from storeSync and Subscriptions
|
||||||
|
removeDuplicateCollectionOrFolder(
|
||||||
|
{ state },
|
||||||
|
{
|
||||||
|
id,
|
||||||
|
collectionPath,
|
||||||
|
type,
|
||||||
|
}: {
|
||||||
|
id: string
|
||||||
|
collectionPath: string
|
||||||
|
type: "collection" | "request"
|
||||||
|
}
|
||||||
|
) {
|
||||||
|
const after = removeDuplicateCollectionsFromPath<HoppRESTRequest>(
|
||||||
|
id,
|
||||||
|
collectionPath,
|
||||||
|
state,
|
||||||
|
type ?? "collection"
|
||||||
|
)
|
||||||
|
|
||||||
|
return {
|
||||||
|
state: after,
|
||||||
|
}
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
const gqlCollectionDispatchers = defineDispatchers({
|
const gqlCollectionDispatchers = defineDispatchers({
|
||||||
@@ -605,7 +650,11 @@ const gqlCollectionDispatchers = defineDispatchers({
|
|||||||
|
|
||||||
removeCollection(
|
removeCollection(
|
||||||
{ state }: GraphqlCollectionStoreType,
|
{ state }: GraphqlCollectionStoreType,
|
||||||
{ collectionIndex }: { collectionIndex: number }
|
{
|
||||||
|
collectionIndex, // this collectionID is used to sync the collection removal
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||||
|
collectionID,
|
||||||
|
}: { collectionIndex: number; collectionID?: string }
|
||||||
) {
|
) {
|
||||||
return {
|
return {
|
||||||
state: (state as any).filter(
|
state: (state as any).filter(
|
||||||
@@ -687,7 +736,9 @@ const gqlCollectionDispatchers = defineDispatchers({
|
|||||||
|
|
||||||
removeFolder(
|
removeFolder(
|
||||||
{ state }: GraphqlCollectionStoreType,
|
{ state }: GraphqlCollectionStoreType,
|
||||||
{ path }: { path: string }
|
// folderID is used to sync the folder removal in collections.sync.ts
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||||
|
{ path, folderID }: { path: string; folderID?: string }
|
||||||
) {
|
) {
|
||||||
const newState = state
|
const newState = state
|
||||||
|
|
||||||
@@ -775,7 +826,13 @@ const gqlCollectionDispatchers = defineDispatchers({
|
|||||||
|
|
||||||
removeRequest(
|
removeRequest(
|
||||||
{ state }: GraphqlCollectionStoreType,
|
{ state }: GraphqlCollectionStoreType,
|
||||||
{ path, requestIndex }: { path: string; requestIndex: number }
|
{
|
||||||
|
path,
|
||||||
|
requestIndex,
|
||||||
|
// this requestID is used to sync the request removal
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||||
|
requestID,
|
||||||
|
}: { path: string; requestIndex: number; requestID?: string }
|
||||||
) {
|
) {
|
||||||
const newState = state
|
const newState = state
|
||||||
|
|
||||||
@@ -838,6 +895,30 @@ const gqlCollectionDispatchers = defineDispatchers({
|
|||||||
state: newState,
|
state: newState,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
// only used for collections.sync.ts to prevent double insertion of collections from storeSync and Subscriptions
|
||||||
|
removeDuplicateCollectionOrFolder(
|
||||||
|
{ state },
|
||||||
|
{
|
||||||
|
id,
|
||||||
|
collectionPath,
|
||||||
|
type,
|
||||||
|
}: {
|
||||||
|
id: string
|
||||||
|
collectionPath: string
|
||||||
|
type: "collection" | "request"
|
||||||
|
}
|
||||||
|
) {
|
||||||
|
const after = removeDuplicateCollectionsFromPath<HoppGQLRequest>(
|
||||||
|
id,
|
||||||
|
collectionPath,
|
||||||
|
state,
|
||||||
|
type ?? "collection"
|
||||||
|
)
|
||||||
|
|
||||||
|
return {
|
||||||
|
state: after,
|
||||||
|
}
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
export const restCollectionStore = new DispatchingStore(
|
export const restCollectionStore = new DispatchingStore(
|
||||||
@@ -887,11 +968,15 @@ export function addRESTCollection(collection: HoppCollection<HoppRESTRequest>) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
export function removeRESTCollection(collectionIndex: number) {
|
export function removeRESTCollection(
|
||||||
|
collectionIndex: number,
|
||||||
|
collectionID?: string
|
||||||
|
) {
|
||||||
restCollectionStore.dispatch({
|
restCollectionStore.dispatch({
|
||||||
dispatcher: "removeCollection",
|
dispatcher: "removeCollection",
|
||||||
payload: {
|
payload: {
|
||||||
collectionIndex,
|
collectionIndex,
|
||||||
|
collectionID,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -936,11 +1021,12 @@ export function editRESTFolder(
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
export function removeRESTFolder(path: string) {
|
export function removeRESTFolder(path: string, folderID?: string) {
|
||||||
restCollectionStore.dispatch({
|
restCollectionStore.dispatch({
|
||||||
dispatcher: "removeFolder",
|
dispatcher: "removeFolder",
|
||||||
payload: {
|
payload: {
|
||||||
path,
|
path,
|
||||||
|
folderID,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -955,6 +1041,21 @@ export function moveRESTFolder(path: string, destinationPath: string | null) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function removeDuplicateRESTCollectionOrFolder(
|
||||||
|
id: string,
|
||||||
|
collectionPath: string,
|
||||||
|
type?: "collection" | "request"
|
||||||
|
) {
|
||||||
|
restCollectionStore.dispatch({
|
||||||
|
dispatcher: "removeDuplicateCollectionOrFolder",
|
||||||
|
payload: {
|
||||||
|
id,
|
||||||
|
collectionPath,
|
||||||
|
type: type ?? "collection",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
export function editRESTRequest(
|
export function editRESTRequest(
|
||||||
path: string,
|
path: string,
|
||||||
requestIndex: number,
|
requestIndex: number,
|
||||||
@@ -996,12 +1097,17 @@ export function saveRESTRequestAs(path: string, request: HoppRESTRequest) {
|
|||||||
return insertionIndex
|
return insertionIndex
|
||||||
}
|
}
|
||||||
|
|
||||||
export function removeRESTRequest(path: string, requestIndex: number) {
|
export function removeRESTRequest(
|
||||||
|
path: string,
|
||||||
|
requestIndex: number,
|
||||||
|
requestID?: string
|
||||||
|
) {
|
||||||
restCollectionStore.dispatch({
|
restCollectionStore.dispatch({
|
||||||
dispatcher: "removeRequest",
|
dispatcher: "removeRequest",
|
||||||
payload: {
|
payload: {
|
||||||
path,
|
path,
|
||||||
requestIndex,
|
requestIndex,
|
||||||
|
requestID,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -1082,11 +1188,15 @@ export function addGraphqlCollection(
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
export function removeGraphqlCollection(collectionIndex: number) {
|
export function removeGraphqlCollection(
|
||||||
|
collectionIndex: number,
|
||||||
|
collectionID?: string
|
||||||
|
) {
|
||||||
graphqlCollectionStore.dispatch({
|
graphqlCollectionStore.dispatch({
|
||||||
dispatcher: "removeCollection",
|
dispatcher: "removeCollection",
|
||||||
payload: {
|
payload: {
|
||||||
collectionIndex,
|
collectionIndex,
|
||||||
|
collectionID,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -1127,11 +1237,27 @@ export function editGraphqlFolder(
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
export function removeGraphqlFolder(path: string) {
|
export function removeGraphqlFolder(path: string, folderID?: string) {
|
||||||
graphqlCollectionStore.dispatch({
|
graphqlCollectionStore.dispatch({
|
||||||
dispatcher: "removeFolder",
|
dispatcher: "removeFolder",
|
||||||
payload: {
|
payload: {
|
||||||
path,
|
path,
|
||||||
|
folderID,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function removeDuplicateGraphqlCollectionOrFolder(
|
||||||
|
id: string,
|
||||||
|
collectionPath: string,
|
||||||
|
type?: "collection" | "request"
|
||||||
|
) {
|
||||||
|
graphqlCollectionStore.dispatch({
|
||||||
|
dispatcher: "removeDuplicateCollectionOrFolder",
|
||||||
|
payload: {
|
||||||
|
id,
|
||||||
|
collectionPath,
|
||||||
|
type: type ?? "collection",
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -1161,12 +1287,17 @@ export function saveGraphqlRequestAs(path: string, request: HoppGQLRequest) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
export function removeGraphqlRequest(path: string, requestIndex: number) {
|
export function removeGraphqlRequest(
|
||||||
|
path: string,
|
||||||
|
requestIndex: number,
|
||||||
|
requestID?: string
|
||||||
|
) {
|
||||||
graphqlCollectionStore.dispatch({
|
graphqlCollectionStore.dispatch({
|
||||||
dispatcher: "removeRequest",
|
dispatcher: "removeRequest",
|
||||||
payload: {
|
payload: {
|
||||||
path,
|
path,
|
||||||
requestIndex,
|
requestIndex,
|
||||||
|
requestID,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -1185,3 +1316,60 @@ export function moveGraphqlRequest(
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function removeDuplicateCollectionsFromPath<
|
||||||
|
T extends HoppRESTRequest | HoppGQLRequest
|
||||||
|
>(
|
||||||
|
idToRemove: string,
|
||||||
|
collectionPath: string | null,
|
||||||
|
collections: HoppCollection<T>[],
|
||||||
|
type: "collection" | "request"
|
||||||
|
): HoppCollection<T>[] {
|
||||||
|
const indexes = collectionPath?.split("/").map((x) => parseInt(x))
|
||||||
|
indexes && indexes.pop()
|
||||||
|
const parentPath = indexes?.join("/")
|
||||||
|
|
||||||
|
const parentCollection = parentPath
|
||||||
|
? navigateToFolderWithIndexPath(
|
||||||
|
collections,
|
||||||
|
parentPath.split("/").map((x) => parseInt(x)) || []
|
||||||
|
)
|
||||||
|
: undefined
|
||||||
|
|
||||||
|
if (collectionPath && parentCollection) {
|
||||||
|
if (type == "collection") {
|
||||||
|
parentCollection.folders = removeDuplicatesFromAnArrayById(
|
||||||
|
idToRemove,
|
||||||
|
parentCollection.folders
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
parentCollection.requests = removeDuplicatesFromAnArrayById(
|
||||||
|
idToRemove,
|
||||||
|
parentCollection.requests
|
||||||
|
)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return removeDuplicatesFromAnArrayById(idToRemove, collections)
|
||||||
|
}
|
||||||
|
|
||||||
|
return collections
|
||||||
|
|
||||||
|
function removeDuplicatesFromAnArrayById<T extends { id?: string }>(
|
||||||
|
idToRemove: string,
|
||||||
|
arrayWithID: T[]
|
||||||
|
) {
|
||||||
|
const duplicateEntries = arrayWithID.filter(
|
||||||
|
(entry) => entry.id === idToRemove
|
||||||
|
)
|
||||||
|
|
||||||
|
if (duplicateEntries.length == 2) {
|
||||||
|
const duplicateEntryIndex = arrayWithID.findIndex(
|
||||||
|
(entry) => entry.id === idToRemove
|
||||||
|
)
|
||||||
|
|
||||||
|
arrayWithID.splice(duplicateEntryIndex, 1)
|
||||||
|
}
|
||||||
|
|
||||||
|
return arrayWithID
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ export type GQLHeader = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export type HoppGQLRequest = {
|
export type HoppGQLRequest = {
|
||||||
|
id?: string
|
||||||
v: number
|
v: number
|
||||||
name: string
|
name: string
|
||||||
url: string
|
url: string
|
||||||
|
|||||||
147
pnpm-lock.yaml
generated
147
pnpm-lock.yaml
generated
@@ -58,10 +58,10 @@ importers:
|
|||||||
packages/hoppscotch-cli:
|
packages/hoppscotch-cli:
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@hoppscotch/data':
|
'@hoppscotch/data':
|
||||||
specifier: workspace:^0.4.4
|
specifier: workspace:^
|
||||||
version: link:../hoppscotch-data
|
version: link:../hoppscotch-data
|
||||||
'@hoppscotch/js-sandbox':
|
'@hoppscotch/js-sandbox':
|
||||||
specifier: workspace:^2.0.0
|
specifier: workspace:^
|
||||||
version: link:../hoppscotch-js-sandbox
|
version: link:../hoppscotch-js-sandbox
|
||||||
'@relmify/jest-fp-ts':
|
'@relmify/jest-fp-ts':
|
||||||
specifier: ^2.0.2
|
specifier: ^2.0.2
|
||||||
@@ -166,16 +166,16 @@ importers:
|
|||||||
specifier: ^6.0.2
|
specifier: ^6.0.2
|
||||||
version: 6.0.2
|
version: 6.0.2
|
||||||
'@hoppscotch/codemirror-lang-graphql':
|
'@hoppscotch/codemirror-lang-graphql':
|
||||||
specifier: workspace:^0.2.0
|
specifier: workspace:^
|
||||||
version: link:../codemirror-lang-graphql
|
version: link:../codemirror-lang-graphql
|
||||||
'@hoppscotch/data':
|
'@hoppscotch/data':
|
||||||
specifier: workspace:^0.4.4
|
specifier: workspace:^
|
||||||
version: link:../hoppscotch-data
|
version: link:../hoppscotch-data
|
||||||
'@hoppscotch/js-sandbox':
|
'@hoppscotch/js-sandbox':
|
||||||
specifier: workspace:^2.1.0
|
specifier: workspace:^
|
||||||
version: link:../hoppscotch-js-sandbox
|
version: link:../hoppscotch-js-sandbox
|
||||||
'@hoppscotch/ui':
|
'@hoppscotch/ui':
|
||||||
specifier: workspace:^0.0.1
|
specifier: workspace:^
|
||||||
version: link:../hoppscotch-ui
|
version: link:../hoppscotch-ui
|
||||||
'@hoppscotch/vue-toasted':
|
'@hoppscotch/vue-toasted':
|
||||||
specifier: ^0.1.0
|
specifier: ^0.1.0
|
||||||
@@ -203,7 +203,7 @@ importers:
|
|||||||
version: 4.4.3(graphql@15.8.0)
|
version: 4.4.3(graphql@15.8.0)
|
||||||
'@vitejs/plugin-legacy':
|
'@vitejs/plugin-legacy':
|
||||||
specifier: ^2.3.0
|
specifier: ^2.3.0
|
||||||
version: 2.3.0(terser@5.14.1)(vite@3.1.4)
|
version: 2.3.0(terser@5.16.8)(vite@3.1.4)
|
||||||
'@vueuse/core':
|
'@vueuse/core':
|
||||||
specifier: ^8.7.5
|
specifier: ^8.7.5
|
||||||
version: 8.7.5(vue@3.2.37)
|
version: 8.7.5(vue@3.2.37)
|
||||||
@@ -477,7 +477,7 @@ importers:
|
|||||||
version: 0.21.0(esbuild@0.15.15)(rollup@2.79.1)(vite@3.2.4)(vue@3.2.45)(webpack@5.78.0)
|
version: 0.21.0(esbuild@0.15.15)(rollup@2.79.1)(vite@3.2.4)(vue@3.2.45)(webpack@5.78.0)
|
||||||
vite:
|
vite:
|
||||||
specifier: ^3.1.4
|
specifier: ^3.1.4
|
||||||
version: 3.1.4(sass@1.53.0)(terser@5.14.1)
|
version: 3.1.4(sass@1.53.0)(terser@5.16.8)
|
||||||
vite-plugin-checker:
|
vite-plugin-checker:
|
||||||
specifier: ^0.5.1
|
specifier: ^0.5.1
|
||||||
version: 0.5.1(eslint@8.24.0)(typescript@4.7.4)(vite@3.1.4)
|
version: 0.5.1(eslint@8.24.0)(typescript@4.7.4)(vite@3.1.4)
|
||||||
@@ -535,12 +535,12 @@ importers:
|
|||||||
version: 4.7.4
|
version: 4.7.4
|
||||||
vite:
|
vite:
|
||||||
specifier: ^3.2.3
|
specifier: ^3.2.3
|
||||||
version: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
version: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
|
|
||||||
packages/hoppscotch-js-sandbox:
|
packages/hoppscotch-js-sandbox:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@hoppscotch/data':
|
'@hoppscotch/data':
|
||||||
specifier: workspace:^0.4.4
|
specifier: workspace:^
|
||||||
version: link:../hoppscotch-data
|
version: link:../hoppscotch-data
|
||||||
fp-ts:
|
fp-ts:
|
||||||
specifier: ^2.11.10
|
specifier: ^2.11.10
|
||||||
@@ -611,7 +611,7 @@ importers:
|
|||||||
version: 1.0.0
|
version: 1.0.0
|
||||||
'@vitejs/plugin-legacy':
|
'@vitejs/plugin-legacy':
|
||||||
specifier: ^2.3.0
|
specifier: ^2.3.0
|
||||||
version: 2.3.0(terser@5.14.1)(vite@3.2.4)
|
version: 2.3.0(terser@5.16.8)(vite@3.2.4)
|
||||||
'@vueuse/core':
|
'@vueuse/core':
|
||||||
specifier: ^8.7.5
|
specifier: ^8.7.5
|
||||||
version: 8.7.5(vue@3.2.45)
|
version: 8.7.5(vue@3.2.45)
|
||||||
@@ -732,7 +732,7 @@ importers:
|
|||||||
version: 9.5.1(eslint@8.28.0)
|
version: 9.5.1(eslint@8.28.0)
|
||||||
histoire:
|
histoire:
|
||||||
specifier: ^0.12.4
|
specifier: ^0.12.4
|
||||||
version: 0.12.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)(vite@3.2.4)
|
version: 0.12.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)(vite@3.2.4)
|
||||||
npm-run-all:
|
npm-run-all:
|
||||||
specifier: ^4.1.5
|
specifier: ^4.1.5
|
||||||
version: 4.1.5
|
version: 4.1.5
|
||||||
@@ -753,7 +753,7 @@ importers:
|
|||||||
version: 0.21.0(esbuild@0.15.15)(rollup@2.79.1)(vite@3.2.4)(vue@3.2.45)(webpack@5.78.0)
|
version: 0.21.0(esbuild@0.15.15)(rollup@2.79.1)(vite@3.2.4)(vue@3.2.45)(webpack@5.78.0)
|
||||||
vite:
|
vite:
|
||||||
specifier: ^3.2.3
|
specifier: ^3.2.3
|
||||||
version: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
version: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
vite-plugin-checker:
|
vite-plugin-checker:
|
||||||
specifier: ^0.5.1
|
specifier: ^0.5.1
|
||||||
version: 0.5.1(eslint@8.28.0)(typescript@4.7.4)(vite@3.2.4)
|
version: 0.5.1(eslint@8.28.0)(typescript@4.7.4)(vite@3.2.4)
|
||||||
@@ -803,7 +803,7 @@ importers:
|
|||||||
specifier: workspace:^
|
specifier: workspace:^
|
||||||
version: link:../hoppscotch-common
|
version: link:../hoppscotch-common
|
||||||
'@hoppscotch/data':
|
'@hoppscotch/data':
|
||||||
specifier: workspace:^0.4.4
|
specifier: workspace:^
|
||||||
version: link:../hoppscotch-data
|
version: link:../hoppscotch-data
|
||||||
'@hoppscotch/ui':
|
'@hoppscotch/ui':
|
||||||
specifier: workspace:^
|
specifier: workspace:^
|
||||||
@@ -847,7 +847,7 @@ importers:
|
|||||||
version: 5.30.6(eslint@8.28.0)(typescript@4.7.4)
|
version: 5.30.6(eslint@8.28.0)(typescript@4.7.4)
|
||||||
'@vitejs/plugin-legacy':
|
'@vitejs/plugin-legacy':
|
||||||
specifier: ^2.3.0
|
specifier: ^2.3.0
|
||||||
version: 2.3.0(terser@5.14.1)(vite@3.2.4)
|
version: 2.3.0(terser@5.16.8)(vite@3.2.4)
|
||||||
'@vitejs/plugin-vue':
|
'@vitejs/plugin-vue':
|
||||||
specifier: ^3.2.0
|
specifier: ^3.2.0
|
||||||
version: 3.2.0(vite@3.2.4)(vue@3.2.45)
|
version: 3.2.0(vite@3.2.4)(vue@3.2.45)
|
||||||
@@ -877,7 +877,7 @@ importers:
|
|||||||
version: 0.21.0(esbuild@0.15.15)(rollup@2.79.1)(vite@3.2.4)(vue@3.2.45)(webpack@5.78.0)
|
version: 0.21.0(esbuild@0.15.15)(rollup@2.79.1)(vite@3.2.4)(vue@3.2.45)(webpack@5.78.0)
|
||||||
vite:
|
vite:
|
||||||
specifier: ^3.2.3
|
specifier: ^3.2.3
|
||||||
version: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
version: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
vite-plugin-fonts:
|
vite-plugin-fonts:
|
||||||
specifier: ^0.6.0
|
specifier: ^0.6.0
|
||||||
version: 0.6.0(vite@3.2.4)
|
version: 0.6.0(vite@3.2.4)
|
||||||
@@ -3660,7 +3660,7 @@ packages:
|
|||||||
'@histoire/controls': 0.12.4
|
'@histoire/controls': 0.12.4
|
||||||
'@histoire/shared': 0.12.4(vite@3.2.4)
|
'@histoire/shared': 0.12.4(vite@3.2.4)
|
||||||
'@histoire/vendors': 0.12.4
|
'@histoire/vendors': 0.12.4
|
||||||
histoire: 0.12.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)(vite@3.2.4)
|
histoire: 0.12.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)(vite@3.2.4)
|
||||||
vue: 3.2.45
|
vue: 3.2.45
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- vite
|
- vite
|
||||||
@@ -3676,7 +3676,7 @@ packages:
|
|||||||
chokidar: 3.5.3
|
chokidar: 3.5.3
|
||||||
pathe: 0.2.0
|
pathe: 0.2.0
|
||||||
picocolors: 1.0.0
|
picocolors: 1.0.0
|
||||||
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@histoire/vendors@0.12.4:
|
/@histoire/vendors@0.12.4:
|
||||||
@@ -3870,7 +3870,7 @@ packages:
|
|||||||
debug: 4.3.4(supports-color@9.2.2)
|
debug: 4.3.4(supports-color@9.2.2)
|
||||||
fast-glob: 3.2.11
|
fast-glob: 3.2.11
|
||||||
source-map: 0.6.1
|
source-map: 0.6.1
|
||||||
vite: 3.1.4(sass@1.53.0)(terser@5.14.1)
|
vite: 3.1.4(sass@1.53.0)(terser@5.16.8)
|
||||||
vue-i18n: 9.2.2(vue@3.2.37)
|
vue-i18n: 9.2.2(vue@3.2.37)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
@@ -4139,7 +4139,6 @@ packages:
|
|||||||
/@jridgewell/resolve-uri@3.1.0:
|
/@jridgewell/resolve-uri@3.1.0:
|
||||||
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
|
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
|
||||||
engines: {node: '>=6.0.0'}
|
engines: {node: '>=6.0.0'}
|
||||||
dev: true
|
|
||||||
|
|
||||||
/@jridgewell/set-array@1.1.2:
|
/@jridgewell/set-array@1.1.2:
|
||||||
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
|
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
|
||||||
@@ -4149,7 +4148,7 @@ packages:
|
|||||||
resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==}
|
resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@jridgewell/gen-mapping': 0.3.2
|
'@jridgewell/gen-mapping': 0.3.2
|
||||||
'@jridgewell/trace-mapping': 0.3.14
|
'@jridgewell/trace-mapping': 0.3.17
|
||||||
|
|
||||||
/@jridgewell/sourcemap-codec@1.4.14:
|
/@jridgewell/sourcemap-codec@1.4.14:
|
||||||
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
|
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
|
||||||
@@ -4165,7 +4164,6 @@ packages:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@jridgewell/resolve-uri': 3.1.0
|
'@jridgewell/resolve-uri': 3.1.0
|
||||||
'@jridgewell/sourcemap-codec': 1.4.14
|
'@jridgewell/sourcemap-codec': 1.4.14
|
||||||
dev: true
|
|
||||||
|
|
||||||
/@jridgewell/trace-mapping@0.3.9:
|
/@jridgewell/trace-mapping@0.3.9:
|
||||||
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
|
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
|
||||||
@@ -5362,7 +5360,7 @@ packages:
|
|||||||
graphql: 15.8.0
|
graphql: 15.8.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@vitejs/plugin-legacy@2.3.0(terser@5.14.1)(vite@3.1.4):
|
/@vitejs/plugin-legacy@2.3.0(terser@5.16.8)(vite@3.1.4):
|
||||||
resolution: {integrity: sha512-Bh62i0gzQvvT8AeAAb78nOnqSYXypkRmQmOTImdPZ39meHR9e2une3AIFmVo4s1SDmcmJ6qj18Sa/lRc/14KaA==}
|
resolution: {integrity: sha512-Bh62i0gzQvvT8AeAAb78nOnqSYXypkRmQmOTImdPZ39meHR9e2une3AIFmVo4s1SDmcmJ6qj18Sa/lRc/14KaA==}
|
||||||
engines: {node: ^14.18.0 || >=16.0.0}
|
engines: {node: ^14.18.0 || >=16.0.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -5374,11 +5372,11 @@ packages:
|
|||||||
magic-string: 0.26.7
|
magic-string: 0.26.7
|
||||||
regenerator-runtime: 0.13.10
|
regenerator-runtime: 0.13.10
|
||||||
systemjs: 6.13.0
|
systemjs: 6.13.0
|
||||||
terser: 5.14.1
|
terser: 5.16.8
|
||||||
vite: 3.1.4(sass@1.53.0)(terser@5.14.1)
|
vite: 3.1.4(sass@1.53.0)(terser@5.16.8)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@vitejs/plugin-legacy@2.3.0(terser@5.14.1)(vite@3.2.4):
|
/@vitejs/plugin-legacy@2.3.0(terser@5.16.8)(vite@3.2.4):
|
||||||
resolution: {integrity: sha512-Bh62i0gzQvvT8AeAAb78nOnqSYXypkRmQmOTImdPZ39meHR9e2une3AIFmVo4s1SDmcmJ6qj18Sa/lRc/14KaA==}
|
resolution: {integrity: sha512-Bh62i0gzQvvT8AeAAb78nOnqSYXypkRmQmOTImdPZ39meHR9e2une3AIFmVo4s1SDmcmJ6qj18Sa/lRc/14KaA==}
|
||||||
engines: {node: ^14.18.0 || >=16.0.0}
|
engines: {node: ^14.18.0 || >=16.0.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -5390,8 +5388,8 @@ packages:
|
|||||||
magic-string: 0.26.7
|
magic-string: 0.26.7
|
||||||
regenerator-runtime: 0.13.10
|
regenerator-runtime: 0.13.10
|
||||||
systemjs: 6.13.0
|
systemjs: 6.13.0
|
||||||
terser: 5.14.1
|
terser: 5.16.8
|
||||||
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
|
|
||||||
/@vitejs/plugin-vue@3.1.0(vite@3.1.4)(vue@3.2.37):
|
/@vitejs/plugin-vue@3.1.0(vite@3.1.4)(vue@3.2.37):
|
||||||
resolution: {integrity: sha512-fmxtHPjSOEIRg6vHYDaem+97iwCUg/uSIaTzp98lhELt2ISOQuDo2hbkBdXod0g15IhfPMQmAxh4heUks2zvDA==}
|
resolution: {integrity: sha512-fmxtHPjSOEIRg6vHYDaem+97iwCUg/uSIaTzp98lhELt2ISOQuDo2hbkBdXod0g15IhfPMQmAxh4heUks2zvDA==}
|
||||||
@@ -5400,7 +5398,7 @@ packages:
|
|||||||
vite: ^3.0.0
|
vite: ^3.0.0
|
||||||
vue: ^3.2.25
|
vue: ^3.2.25
|
||||||
dependencies:
|
dependencies:
|
||||||
vite: 3.1.4(sass@1.53.0)(terser@5.14.1)
|
vite: 3.1.4(sass@1.53.0)(terser@5.16.8)
|
||||||
vue: 3.2.37
|
vue: 3.2.37
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
@@ -5411,7 +5409,7 @@ packages:
|
|||||||
vite: ^3.0.0
|
vite: ^3.0.0
|
||||||
vue: ^3.2.25
|
vue: ^3.2.25
|
||||||
dependencies:
|
dependencies:
|
||||||
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
vue: 3.2.45
|
vue: 3.2.45
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
@@ -6091,7 +6089,7 @@ packages:
|
|||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
/after@0.8.2:
|
/after@0.8.2:
|
||||||
resolution: {integrity: sha512-QbJ0NTQ/I9DI3uSJA4cbexiwQeRAfjPScqIbSjUDd9TOrcg6pTkdgziesOqxBMBzit8vFCTwrP27t13vFOORRA==}
|
resolution: {integrity: sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/agent-base@6.0.2:
|
/agent-base@6.0.2:
|
||||||
@@ -6456,7 +6454,7 @@ packages:
|
|||||||
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
||||||
|
|
||||||
/base64-arraybuffer@0.1.4:
|
/base64-arraybuffer@0.1.4:
|
||||||
resolution: {integrity: sha512-a1eIFi4R9ySrbiMuyTGx5e92uRH5tQY6kArNcFaKBUleIoLjdjBg7Zxm3Mqm3Kmkf27HLR/1fnxX9q8GQ7Iavg==}
|
resolution: {integrity: sha1-mBjHngWbE1X5fgQooBfIOOkLqBI=}
|
||||||
engines: {node: '>= 0.6.0'}
|
engines: {node: '>= 0.6.0'}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
@@ -6923,7 +6921,7 @@ packages:
|
|||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/component-bind@1.0.0:
|
/component-bind@1.0.0:
|
||||||
resolution: {integrity: sha512-WZveuKPeKAG9qY+FkYDeADzdHyTYdIboXS59ixDeRJL5ZhxpqUnxSOwop4FQjMsiYm3/Or8cegVbpAHNA7pHxw==}
|
resolution: {integrity: sha1-AMYIq33Nk4l8AAllGx06jh5zu9E=}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/component-emitter@1.3.0:
|
/component-emitter@1.3.0:
|
||||||
@@ -6931,7 +6929,7 @@ packages:
|
|||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/component-inherit@0.0.3:
|
/component-inherit@0.0.3:
|
||||||
resolution: {integrity: sha512-w+LhYREhatpVqTESyGFg3NlP6Iu0kEKUHETY9GoZP/pQyW4mHFZuFWRUCIqVPZ36ueVLtoOEZaAqbCF2RDndaA==}
|
resolution: {integrity: sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/concat-map@0.0.1:
|
/concat-map@0.0.1:
|
||||||
@@ -9309,7 +9307,7 @@ packages:
|
|||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/has-cors@1.1.0:
|
/has-cors@1.1.0:
|
||||||
resolution: {integrity: sha512-g5VNKdkFuUuVCP9gYfDJHjK2nqdQJ7aDLTnycnc2+RvsOQbuLdF5pm7vuE5J76SEBIQjs4kQY/BWq74JUmjbXA==}
|
resolution: {integrity: sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/has-flag@3.0.0:
|
/has-flag@3.0.0:
|
||||||
@@ -9361,7 +9359,7 @@ packages:
|
|||||||
engines: {node: '>=10.0.0'}
|
engines: {node: '>=10.0.0'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/histoire@0.12.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)(vite@3.2.4):
|
/histoire@0.12.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)(vite@3.2.4):
|
||||||
resolution: {integrity: sha512-q20Zncdh+GI2jDXiry1JS1DrN5qprKpl452AnS/P06Vgowqf79aG85E0XmhNpX2r8HI2HmIntwZ5FLd6hxYobQ==}
|
resolution: {integrity: sha512-q20Zncdh+GI2jDXiry1JS1DrN5qprKpl452AnS/P06Vgowqf79aG85E0XmhNpX2r8HI2HmIntwZ5FLd6hxYobQ==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -9397,8 +9395,8 @@ packages:
|
|||||||
shiki-es: 0.1.2
|
shiki-es: 0.1.2
|
||||||
sirv: 2.0.2
|
sirv: 2.0.2
|
||||||
tinypool: 0.1.3
|
tinypool: 0.1.3
|
||||||
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
vite-node: 0.26.0(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
vite-node: 0.26.0(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- '@types/node'
|
- '@types/node'
|
||||||
- bufferutil
|
- bufferutil
|
||||||
@@ -9613,7 +9611,7 @@ packages:
|
|||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
|
|
||||||
/indexof@0.0.1:
|
/indexof@0.0.1:
|
||||||
resolution: {integrity: sha512-i0G7hLJ1z0DE8dsqJa2rycj9dBmNKgXBvotXtZYXakU9oivfB9Uj2ZBC27qqef2U58/ZLwalxa1X/RDCdkHtVg==}
|
resolution: {integrity: sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/inflight@1.0.6:
|
/inflight@1.0.6:
|
||||||
@@ -12468,7 +12466,7 @@ packages:
|
|||||||
jest-worker: 26.6.2
|
jest-worker: 26.6.2
|
||||||
rollup: 2.79.1
|
rollup: 2.79.1
|
||||||
serialize-javascript: 4.0.0
|
serialize-javascript: 4.0.0
|
||||||
terser: 5.14.1
|
terser: 5.16.8
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/rollup-plugin-ts@2.0.7(rollup@2.75.7)(typescript@4.7.4):
|
/rollup-plugin-ts@2.0.7(rollup@2.75.7)(typescript@4.7.4):
|
||||||
@@ -13298,16 +13296,6 @@ packages:
|
|||||||
webpack: 5.78.0(esbuild@0.15.15)
|
webpack: 5.78.0(esbuild@0.15.15)
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/terser@5.14.1:
|
|
||||||
resolution: {integrity: sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==}
|
|
||||||
engines: {node: '>=10'}
|
|
||||||
hasBin: true
|
|
||||||
dependencies:
|
|
||||||
'@jridgewell/source-map': 0.3.2
|
|
||||||
acorn: 8.8.2
|
|
||||||
commander: 2.20.3
|
|
||||||
source-map-support: 0.5.21
|
|
||||||
|
|
||||||
/terser@5.16.8:
|
/terser@5.16.8:
|
||||||
resolution: {integrity: sha512-QI5g1E/ef7d+PsDifb+a6nnVgC4F22Bg6T0xrBrz6iloVB4PUkkunp6V8nzoOOZJIzjWVdAGqCdlKlhLq/TbIA==}
|
resolution: {integrity: sha512-QI5g1E/ef7d+PsDifb+a6nnVgC4F22Bg6T0xrBrz6iloVB4PUkkunp6V8nzoOOZJIzjWVdAGqCdlKlhLq/TbIA==}
|
||||||
engines: {node: '>=10'}
|
engines: {node: '>=10'}
|
||||||
@@ -13317,7 +13305,6 @@ packages:
|
|||||||
acorn: 8.8.2
|
acorn: 8.8.2
|
||||||
commander: 2.20.3
|
commander: 2.20.3
|
||||||
source-map-support: 0.5.21
|
source-map-support: 0.5.21
|
||||||
dev: true
|
|
||||||
|
|
||||||
/test-exclude@6.0.0:
|
/test-exclude@6.0.0:
|
||||||
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
|
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
|
||||||
@@ -13404,7 +13391,7 @@ packages:
|
|||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/to-array@0.1.4:
|
/to-array@0.1.4:
|
||||||
resolution: {integrity: sha512-LhVdShQD/4Mk4zXNroIQZJC+Ap3zgLcDuwEdcmLv9CCO73NWockQDwyUnW/m8VX/EElfL6FcYx7EeutN4HJA6A==}
|
resolution: {integrity: sha1-F+bBH3PdTz10zaek/zI46a2b+JA=}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/to-fast-properties@2.0.0:
|
/to-fast-properties@2.0.0:
|
||||||
@@ -13908,7 +13895,7 @@ packages:
|
|||||||
chokidar: 3.5.3
|
chokidar: 3.5.3
|
||||||
esbuild: 0.15.15
|
esbuild: 0.15.15
|
||||||
rollup: 2.79.1
|
rollup: 2.79.1
|
||||||
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
webpack: 5.78.0(esbuild@0.15.15)
|
webpack: 5.78.0(esbuild@0.15.15)
|
||||||
webpack-sources: 3.2.3
|
webpack-sources: 3.2.3
|
||||||
webpack-virtual-modules: 0.4.4
|
webpack-virtual-modules: 0.4.4
|
||||||
@@ -13935,7 +13922,7 @@ packages:
|
|||||||
chokidar: 3.5.3
|
chokidar: 3.5.3
|
||||||
esbuild: 0.15.15
|
esbuild: 0.15.15
|
||||||
rollup: 2.79.1
|
rollup: 2.79.1
|
||||||
vite: 3.1.4(sass@1.53.0)(terser@5.14.1)
|
vite: 3.1.4(sass@1.53.0)(terser@5.16.8)
|
||||||
webpack-sources: 3.2.3
|
webpack-sources: 3.2.3
|
||||||
webpack-virtual-modules: 0.4.4
|
webpack-virtual-modules: 0.4.4
|
||||||
dev: true
|
dev: true
|
||||||
@@ -14060,7 +14047,7 @@ packages:
|
|||||||
resolution: {integrity: sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==}
|
resolution: {integrity: sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==}
|
||||||
engines: {node: '>=12'}
|
engines: {node: '>=12'}
|
||||||
|
|
||||||
/vite-node@0.26.0(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1):
|
/vite-node@0.26.0(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8):
|
||||||
resolution: {integrity: sha512-nLtHWCv6reONl1oFsKhQ/LT7n3UNLpvVARAJlmGrQV6qSElht/9AdN41Pa+WSkw2Winh682UzM0Yw0GNlfqejw==}
|
resolution: {integrity: sha512-nLtHWCv6reONl1oFsKhQ/LT7n3UNLpvVARAJlmGrQV6qSElht/9AdN41Pa+WSkw2Winh682UzM0Yw0GNlfqejw==}
|
||||||
engines: {node: '>=v14.16.0'}
|
engines: {node: '>=v14.16.0'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
@@ -14070,7 +14057,7 @@ packages:
|
|||||||
pathe: 0.2.0
|
pathe: 0.2.0
|
||||||
source-map: 0.6.1
|
source-map: 0.6.1
|
||||||
source-map-support: 0.5.21
|
source-map-support: 0.5.21
|
||||||
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- '@types/node'
|
- '@types/node'
|
||||||
- less
|
- less
|
||||||
@@ -14113,7 +14100,7 @@ packages:
|
|||||||
strip-ansi: 6.0.1
|
strip-ansi: 6.0.1
|
||||||
tiny-invariant: 1.2.0
|
tiny-invariant: 1.2.0
|
||||||
typescript: 4.7.4
|
typescript: 4.7.4
|
||||||
vite: 3.1.4(sass@1.53.0)(terser@5.14.1)
|
vite: 3.1.4(sass@1.53.0)(terser@5.16.8)
|
||||||
vscode-languageclient: 7.0.0
|
vscode-languageclient: 7.0.0
|
||||||
vscode-languageserver: 7.0.0
|
vscode-languageserver: 7.0.0
|
||||||
vscode-languageserver-textdocument: 1.0.7
|
vscode-languageserver-textdocument: 1.0.7
|
||||||
@@ -14152,7 +14139,7 @@ packages:
|
|||||||
strip-ansi: 6.0.1
|
strip-ansi: 6.0.1
|
||||||
tiny-invariant: 1.2.0
|
tiny-invariant: 1.2.0
|
||||||
typescript: 4.7.4
|
typescript: 4.7.4
|
||||||
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
vscode-languageclient: 7.0.0
|
vscode-languageclient: 7.0.0
|
||||||
vscode-languageserver: 7.0.0
|
vscode-languageserver: 7.0.0
|
||||||
vscode-languageserver-textdocument: 1.0.7
|
vscode-languageserver-textdocument: 1.0.7
|
||||||
@@ -14175,7 +14162,7 @@ packages:
|
|||||||
kolorist: 1.7.0
|
kolorist: 1.7.0
|
||||||
magic-string: 0.29.0
|
magic-string: 0.29.0
|
||||||
ts-morph: 17.0.1
|
ts-morph: 17.0.1
|
||||||
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- '@types/node'
|
- '@types/node'
|
||||||
- rollup
|
- rollup
|
||||||
@@ -14192,7 +14179,7 @@ packages:
|
|||||||
'@types/eslint': 8.4.10
|
'@types/eslint': 8.4.10
|
||||||
eslint: 8.28.0
|
eslint: 8.28.0
|
||||||
rollup: 2.79.1
|
rollup: 2.79.1
|
||||||
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/vite-plugin-fonts@0.6.0(vite@3.1.4):
|
/vite-plugin-fonts@0.6.0(vite@3.1.4):
|
||||||
@@ -14201,7 +14188,7 @@ packages:
|
|||||||
vite: ^2.0.0 || ^3.0.0
|
vite: ^2.0.0 || ^3.0.0
|
||||||
dependencies:
|
dependencies:
|
||||||
fast-glob: 3.2.11
|
fast-glob: 3.2.11
|
||||||
vite: 3.1.4(sass@1.53.0)(terser@5.14.1)
|
vite: 3.1.4(sass@1.53.0)(terser@5.16.8)
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/vite-plugin-fonts@0.6.0(vite@3.2.4):
|
/vite-plugin-fonts@0.6.0(vite@3.2.4):
|
||||||
@@ -14210,7 +14197,7 @@ packages:
|
|||||||
vite: ^2.0.0 || ^3.0.0
|
vite: ^2.0.0 || ^3.0.0
|
||||||
dependencies:
|
dependencies:
|
||||||
fast-glob: 3.2.11
|
fast-glob: 3.2.11
|
||||||
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/vite-plugin-html-config@1.0.10(vite@3.1.4):
|
/vite-plugin-html-config@1.0.10(vite@3.1.4):
|
||||||
@@ -14219,7 +14206,7 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
vite: '>=2.0.0'
|
vite: '>=2.0.0'
|
||||||
dependencies:
|
dependencies:
|
||||||
vite: 3.1.4(sass@1.53.0)(terser@5.14.1)
|
vite: 3.1.4(sass@1.53.0)(terser@5.16.8)
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/vite-plugin-html-config@1.0.10(vite@3.2.4):
|
/vite-plugin-html-config@1.0.10(vite@3.2.4):
|
||||||
@@ -14228,7 +14215,7 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
vite: '>=2.0.0'
|
vite: '>=2.0.0'
|
||||||
dependencies:
|
dependencies:
|
||||||
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/vite-plugin-inspect@0.7.4(vite@3.1.4):
|
/vite-plugin-inspect@0.7.4(vite@3.1.4):
|
||||||
@@ -14243,7 +14230,7 @@ packages:
|
|||||||
kolorist: 1.5.1
|
kolorist: 1.5.1
|
||||||
sirv: 2.0.2
|
sirv: 2.0.2
|
||||||
ufo: 0.8.5
|
ufo: 0.8.5
|
||||||
vite: 3.1.4(sass@1.53.0)(terser@5.14.1)
|
vite: 3.1.4(sass@1.53.0)(terser@5.16.8)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
dev: true
|
dev: true
|
||||||
@@ -14260,7 +14247,7 @@ packages:
|
|||||||
kolorist: 1.5.1
|
kolorist: 1.5.1
|
||||||
sirv: 2.0.2
|
sirv: 2.0.2
|
||||||
ufo: 0.8.5
|
ufo: 0.8.5
|
||||||
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
dev: true
|
dev: true
|
||||||
@@ -14287,7 +14274,7 @@ packages:
|
|||||||
json5: 2.2.1
|
json5: 2.2.1
|
||||||
local-pkg: 0.4.2
|
local-pkg: 0.4.2
|
||||||
picocolors: 1.0.0
|
picocolors: 1.0.0
|
||||||
vite: 3.1.4(sass@1.53.0)(terser@5.14.1)
|
vite: 3.1.4(sass@1.53.0)(terser@5.16.8)
|
||||||
yaml: 2.1.1
|
yaml: 2.1.1
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
@@ -14311,7 +14298,7 @@ packages:
|
|||||||
json5: 2.2.1
|
json5: 2.2.1
|
||||||
local-pkg: 0.4.2
|
local-pkg: 0.4.2
|
||||||
picocolors: 1.0.0
|
picocolors: 1.0.0
|
||||||
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
yaml: 2.1.1
|
yaml: 2.1.1
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
@@ -14328,7 +14315,7 @@ packages:
|
|||||||
fast-glob: 3.2.11
|
fast-glob: 3.2.11
|
||||||
pretty-bytes: 6.0.0
|
pretty-bytes: 6.0.0
|
||||||
rollup: 2.79.1
|
rollup: 2.79.1
|
||||||
vite: 3.1.4(sass@1.53.0)(terser@5.14.1)
|
vite: 3.1.4(sass@1.53.0)(terser@5.16.8)
|
||||||
workbox-build: 6.5.4
|
workbox-build: 6.5.4
|
||||||
workbox-window: 6.5.4
|
workbox-window: 6.5.4
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
@@ -14346,7 +14333,7 @@ packages:
|
|||||||
fast-glob: 3.2.11
|
fast-glob: 3.2.11
|
||||||
pretty-bytes: 6.0.0
|
pretty-bytes: 6.0.0
|
||||||
rollup: 2.79.1
|
rollup: 2.79.1
|
||||||
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
workbox-build: 6.5.4
|
workbox-build: 6.5.4
|
||||||
workbox-window: 6.5.4
|
workbox-window: 6.5.4
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
@@ -14363,7 +14350,7 @@ packages:
|
|||||||
fast-glob: 3.2.11
|
fast-glob: 3.2.11
|
||||||
fs-extra: 10.1.0
|
fs-extra: 10.1.0
|
||||||
picocolors: 1.0.0
|
picocolors: 1.0.0
|
||||||
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/vite-plugin-vue-layouts@0.7.0(vite@3.1.4)(vue-router@4.1.0)(vue@3.2.37):
|
/vite-plugin-vue-layouts@0.7.0(vite@3.1.4)(vue-router@4.1.0)(vue@3.2.37):
|
||||||
@@ -14376,7 +14363,7 @@ packages:
|
|||||||
'@vue/compiler-sfc': 3.2.45
|
'@vue/compiler-sfc': 3.2.45
|
||||||
debug: 4.3.4(supports-color@9.2.2)
|
debug: 4.3.4(supports-color@9.2.2)
|
||||||
fast-glob: 3.2.11
|
fast-glob: 3.2.11
|
||||||
vite: 3.1.4(sass@1.53.0)(terser@5.14.1)
|
vite: 3.1.4(sass@1.53.0)(terser@5.16.8)
|
||||||
vue: 3.2.37
|
vue: 3.2.37
|
||||||
vue-router: 4.1.0(vue@3.2.37)
|
vue-router: 4.1.0(vue@3.2.37)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
@@ -14393,7 +14380,7 @@ packages:
|
|||||||
'@vue/compiler-sfc': 3.2.45
|
'@vue/compiler-sfc': 3.2.45
|
||||||
debug: 4.3.4(supports-color@9.2.2)
|
debug: 4.3.4(supports-color@9.2.2)
|
||||||
fast-glob: 3.2.11
|
fast-glob: 3.2.11
|
||||||
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
vue: 3.2.45
|
vue: 3.2.45
|
||||||
vue-router: 4.1.0(vue@3.2.45)
|
vue-router: 4.1.0(vue@3.2.45)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
@@ -14408,7 +14395,7 @@ packages:
|
|||||||
'@windicss/plugin-utils': 1.8.8
|
'@windicss/plugin-utils': 1.8.8
|
||||||
debug: 4.3.4(supports-color@9.2.2)
|
debug: 4.3.4(supports-color@9.2.2)
|
||||||
kolorist: 1.5.1
|
kolorist: 1.5.1
|
||||||
vite: 3.1.4(sass@1.53.0)(terser@5.14.1)
|
vite: 3.1.4(sass@1.53.0)(terser@5.16.8)
|
||||||
windicss: 3.5.6
|
windicss: 3.5.6
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
@@ -14422,13 +14409,13 @@ packages:
|
|||||||
'@windicss/plugin-utils': 1.8.8
|
'@windicss/plugin-utils': 1.8.8
|
||||||
debug: 4.3.4(supports-color@9.2.2)
|
debug: 4.3.4(supports-color@9.2.2)
|
||||||
kolorist: 1.5.1
|
kolorist: 1.5.1
|
||||||
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)
|
vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8)
|
||||||
windicss: 3.5.6
|
windicss: 3.5.6
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/vite@3.1.4(sass@1.53.0)(terser@5.14.1):
|
/vite@3.1.4(sass@1.53.0)(terser@5.16.8):
|
||||||
resolution: {integrity: sha512-JoQI08aBjY9lycL7jcEq4p9o1xUjq5aRvdH4KWaXtkSx7e7RpAh9D3IjzDWRD4Fg44LS3oDAIOG/Kq1L+82psA==}
|
resolution: {integrity: sha512-JoQI08aBjY9lycL7jcEq4p9o1xUjq5aRvdH4KWaXtkSx7e7RpAh9D3IjzDWRD4Fg44LS3oDAIOG/Kq1L+82psA==}
|
||||||
engines: {node: ^14.18.0 || >=16.0.0}
|
engines: {node: ^14.18.0 || >=16.0.0}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
@@ -14452,11 +14439,11 @@ packages:
|
|||||||
resolve: 1.22.1
|
resolve: 1.22.1
|
||||||
rollup: 2.78.1
|
rollup: 2.78.1
|
||||||
sass: 1.53.0
|
sass: 1.53.0
|
||||||
terser: 5.14.1
|
terser: 5.16.8
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
fsevents: 2.3.2
|
fsevents: 2.3.2
|
||||||
|
|
||||||
/vite@3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1):
|
/vite@3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.16.8):
|
||||||
resolution: {integrity: sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==}
|
resolution: {integrity: sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==}
|
||||||
engines: {node: ^14.18.0 || >=16.0.0}
|
engines: {node: ^14.18.0 || >=16.0.0}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
@@ -14487,7 +14474,7 @@ packages:
|
|||||||
resolve: 1.22.1
|
resolve: 1.22.1
|
||||||
rollup: 2.79.1
|
rollup: 2.79.1
|
||||||
sass: 1.53.0
|
sass: 1.53.0
|
||||||
terser: 5.14.1
|
terser: 5.16.8
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
fsevents: 2.3.2
|
fsevents: 2.3.2
|
||||||
|
|
||||||
@@ -15379,7 +15366,7 @@ packages:
|
|||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/yeast@0.1.2:
|
/yeast@0.1.2:
|
||||||
resolution: {integrity: sha512-8HFIh676uyGYP6wP13R/j6OJ/1HwJ46snpvzE7aHAN3Ryqh2yX6Xox2B4CUmTwwOIzlG3Bs7ocsP5dZH/R1Qbg==}
|
resolution: {integrity: sha1-AI4G2AlDIMNy28L47XagymyKxBk=}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/yn@3.1.1:
|
/yn@3.1.1:
|
||||||
|
|||||||
Reference in New Issue
Block a user