Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
This commit is contained in:
skjnldsv 2024-12-30 15:09:46 +01:00
Родитель efce6a4c08
Коммит 1538b634c8
36 изменённых файлов: 3097 добавлений и 1026 удалений

2
.github/workflows/cypress.yml поставляемый
Просмотреть файл

@ -91,7 +91,7 @@ jobs:
matrix:
# Run multiple copies of the current job in parallel
# Please increase the number or runners as your tests suite grows
containers: ['component', '1', '2', '3']
containers: ['1', '2', '3']
name: runner ${{ matrix.containers }}

Просмотреть файл

@ -1,14 +1,10 @@
import {
configureNextcloud,
startNextcloud,
stopNextcloud,
waitOnNextcloud,
} from './cypress/dockerNode'
import { defineConfig } from 'cypress'
import browserify from '@cypress/browserify-preprocessor'
/**
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import { configureNextcloud, startNextcloud, stopNextcloud, waitOnNextcloud } from '@nextcloud/cypress/docker'
import { configureVisualRegression } from 'cypress-visual-regression/dist/plugin'
import { defineConfig } from 'cypress'
export default defineConfig({
projectId: 'okzqgr',
@ -34,19 +30,18 @@ export default defineConfig({
// Visual regression testing
env: {
failSilently: false,
type: 'actual',
visualRegressionType: 'regression',
},
screenshotsFolder: 'cypress/snapshots/actual',
trashAssetsBeforeRuns: true,
e2e: {
// Disable session isolation
testIsolation: false,
// We've imported your old cypress plugins here.
// You may want to clean this up later by importing these.
async setupNodeEvents(on, config) {
// Fix browserslist extend https://github.com/cypress-io/cypress/issues/2983#issuecomment-570616682
on('file:preprocessor', browserify({ typescript: require.resolve('typescript') }))
configureVisualRegression(on)
// Disable spell checking to prevent rendering differences
@ -69,22 +64,19 @@ export default defineConfig({
// Remove container after run
on('after:run', () => {
stopNextcloud()
if (!process.env.CI) {
stopNextcloud()
}
})
// Before the browser launches
// starting Nextcloud testing container
return startNextcloud(process.env.BRANCH)
.then((ip) => {
// Setting container's IP as base Url
config.baseUrl = `http://${ip}/index.php`
return ip
})
.then(waitOnNextcloud)
.then(() => configureNextcloud(process.env.BRANCH))
.then(() => {
return config
})
const ip = await startNextcloud(process.env.BRANCH || 'master')
// Setting container's IP as base Url
config.baseUrl = `http://${ip}/index.php`
await waitOnNextcloud(ip)
await configureNextcloud(['viewer'])
return config
},
},
})

Просмотреть файл

@ -1,18 +0,0 @@
version: '3.7'
services:
nextcloud:
image: ghcr.io/nextcloud/continuous-integration-shallow-server
ports:
- 8082:80
environment:
CYPRESS_baseUrl: "http://127.0.0.1:8082/index.php"
BRANCH: "${BRANCH:-master}"
volumes:
# Using fallback to make sure this script doesn't mess
# with the mounting if APP_NAME is not provided.
- ../:/var/www/html/apps/${APP_NAME:-photos}
- ./initserver.sh:/initserver.sh

Просмотреть файл

@ -1,224 +0,0 @@
/**
* @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>
*
* @author John Molakvoæ <skjnldsv@protonmail.com>
*
* @license AGPL-3.0-or-later
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* eslint-disable no-console */
/* eslint-disable n/no-unpublished-import */
/* eslint-disable n/no-extraneous-import */
import Docker from 'dockerode'
import path from 'path'
import waitOn from 'wait-on'
import pkg from '../package.json'
export const docker = new Docker()
const APP_PATH = path.resolve(__dirname, '../')
const APP_NAME = pkg.name
const CONTAINER_NAME = 'nextcloud-cypress-tests-' + APP_NAME
const SERVER_IMAGE = 'ghcr.io/nextcloud/continuous-integration-shallow-server'
/**
* Start the testing container
*/
export const startNextcloud = async function(branch: string = 'master'): Promise<any> {
try {
// Pulling images
console.log('\nPulling images... ⏳')
await new Promise((resolve, reject): any => docker.pull(SERVER_IMAGE, (err, stream) => {
if (err) {
reject(err)
}
// https://github.com/apocas/dockerode/issues/357
docker.modem.followProgress(stream, onFinished)
/**
*
* @param err
*/
function onFinished(err) {
if (!err) {
resolve(true)
return
}
reject(err)
}
}))
console.log('└─ Done')
// Remove old container if exists
console.log('\nChecking running containers... 🔍')
try {
const oldContainer = docker.getContainer(CONTAINER_NAME)
const oldContainerData = await oldContainer.inspect()
if (oldContainerData) {
console.log('├─ Existing running container found')
console.log('├─ Removing... ⏳')
// Forcing any remnants to be removed just in case
await oldContainer.remove({ force: true })
console.log('└─ Done')
}
} catch (error) {
console.log('└─ None found!')
}
// Starting container
console.log('\nStarting Nextcloud container... 🚀')
console.log(`├─ Using branch '${branch}'`)
console.log(`├─ And binding app '${APP_NAME}' from '${APP_PATH}'`)
const container = await docker.createContainer({
Image: SERVER_IMAGE,
name: CONTAINER_NAME,
HostConfig: {
Binds: [
// TODO: improve local app directory detection
`${APP_PATH}/:/var/www/html/apps/${APP_NAME}`,
],
},
Env: [
`BRANCH=${branch}`,
],
})
await container.start()
// Get container's IP
const ip = await getContainerIP(container)
console.log(`├─ Nextcloud container's IP is ${ip} 🌏`)
return ip
} catch (err) {
console.log('└─ Unable to start the container 🛑')
console.log(err)
stopNextcloud()
throw new Error('Unable to start the container')
}
}
/**
* Configure Nextcloud
*/
export const configureNextcloud = async function(branch: string = 'master') {
console.log('\nConfiguring nextcloud...')
const container = docker.getContainer(CONTAINER_NAME)
await runExec(container, ['php', 'occ', '--version'], true)
// Clone the viewer app
await runExec(container, ['git', 'clone', '--depth', '1', '--branch', branch, 'https://github.com/nextcloud/viewer.git', '/var/www/html/apps/viewer'], true)
// Be consistent for screenshots
await runExec(container, ['php', 'occ', 'config:system:set', 'default_language', '--value', 'en'], true)
await runExec(container, ['php', 'occ', 'config:system:set', 'force_language', '--value', 'en'], true)
await runExec(container, ['php', 'occ', 'config:system:set', 'default_locale', '--value', 'en_US'], true)
await runExec(container, ['php', 'occ', 'config:system:set', 'force_locale', '--value', 'en_US'], true)
await runExec(container, ['php', 'occ', 'config:system:set', 'enforce_theme', '--value', 'light'], true)
console.log('└─ Nextcloud is now ready to use 🎉')
}
/**
* Force stop the testing container
*/
export const stopNextcloud = async function() {
try {
const container = docker.getContainer(CONTAINER_NAME)
console.log('Stopping Nextcloud container...')
container.remove({ force: true })
console.log('└─ Nextcloud container removed 🥀')
} catch (err) {
console.log(err)
}
}
/**
* Get the testing container's IP
*/
export const getContainerIP = async function(
container: Docker.Container = docker.getContainer(CONTAINER_NAME)
): Promise<string> {
let ip = ''
let tries = 0
while (ip === '' && tries < 10) {
tries++
await container.inspect(function(err, data) {
if (err) {
throw err
}
ip = data?.NetworkSettings?.IPAddress || ''
})
if (ip !== '') {
break
}
await sleep(1000 * tries)
}
return ip
}
// Would be simpler to start the container from cypress.config.ts,
// but when checking out different branches, it can take a few seconds
// Until we can properly configure the baseUrl retry intervals,
// We need to make sure the server is already running before cypress
// https://github.com/cypress-io/cypress/issues/22676
export const waitOnNextcloud = async function(ip: string) {
console.log('├─ Waiting for Nextcloud to be ready... ⏳')
await waitOn({ resources: [`http://${ip}/index.php`] })
console.log('└─ Done')
}
const runExec = async function(
container: Docker.Container,
command: string[],
verbose = false,
user = 'www-data'
) {
const exec = await container.exec({
Cmd: command,
AttachStdout: true,
AttachStderr: true,
User: user,
})
return new Promise((resolve, reject) => {
exec.start({}, (err, stream) => {
if (err) {
reject(err)
}
if (stream) {
stream.setEncoding('utf-8')
stream.on('data', str => {
if (verbose && str.trim() !== '') {
console.log(`├─ ${str.trim().replace(/\n/gi, '\n├─ ')}`)
}
})
stream.on('end', resolve)
}
})
})
}
const sleep = function(milliseconds: number) {
return new Promise((resolve) => setTimeout(resolve, milliseconds))
}

Просмотреть файл

@ -13,5 +13,5 @@ export function navigateToPlace(locationName: string) {
}
export function runOccCommand(command: string) {
cy.exec(`docker exec --user www-data nextcloud-cypress-tests-photos php ./occ ${command}`)
cy.exec(`docker exec --user www-data nextcloud-cypress-tests_photos php ./occ ${command}`)
}

Просмотреть файл

@ -1,4 +1,12 @@
{
"extends": "../tsconfig.json",
"include": ["./**/*.ts"],
}
"include": ["../*.ts", "."],
"compilerOptions": {
"rootDir": "..",
"types": [
"cypress",
"dockerode",
"node"
]
}
}

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -18,7 +18,6 @@ SPDX-FileCopyrightText: Victor Felder <victor@draft.li> (https://draft.li)
SPDX-FileCopyrightText: Varun A P
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
@ -230,7 +229,7 @@ This file is generated from multiple sources. Included packages:
- version: 1.2.0
- license: ISC
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -253,8 +252,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- ccount
- version: 2.0.1
@ -277,15 +282,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -299,25 +319,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -373,6 +393,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -562,6 +585,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -595,6 +621,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- space-separated-tokens
- version: 2.0.2
- license: MIT
@ -665,7 +694,7 @@ This file is generated from multiple sources. Included packages:
- version: 5.94.0
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -23,7 +23,6 @@ SPDX-FileCopyrightText: Varun A P
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thorsten Lünborg
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
@ -317,7 +316,7 @@ This file is generated from multiple sources. Included packages:
- version: 10.9.0
- license: MIT
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -340,8 +339,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -376,15 +381,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -404,25 +424,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -487,6 +507,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -679,6 +702,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -712,6 +738,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- space-separated-tokens
- version: 2.0.2
- license: MIT
@ -818,7 +847,7 @@ This file is generated from multiple sources. Included packages:
- version: 5.94.0
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -24,7 +24,6 @@ SPDX-FileCopyrightText: Varun A P
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thorsten Lünborg
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
@ -309,7 +308,7 @@ This file is generated from multiple sources. Included packages:
- version: 10.9.0
- license: MIT
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -335,8 +334,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -368,15 +373,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -396,25 +416,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -479,6 +499,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -668,6 +691,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -701,6 +727,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- space-separated-tokens
- version: 2.0.2
- license: MIT
@ -801,7 +830,7 @@ This file is generated from multiple sources. Included packages:
- version: 4.11.3
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

Просмотреть файл

@ -24,7 +24,6 @@ SPDX-FileCopyrightText: Varun A P
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thorsten Lünborg
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
@ -309,7 +308,7 @@ This file is generated from multiple sources. Included packages:
- version: 10.9.0
- license: MIT
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -335,8 +334,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -368,15 +373,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -396,25 +416,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -479,6 +499,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -668,6 +691,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -701,6 +727,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- space-separated-tokens
- version: 2.0.2
- license: MIT
@ -801,7 +830,7 @@ This file is generated from multiple sources. Included packages:
- version: 4.11.3
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

Просмотреть файл

@ -24,7 +24,6 @@ SPDX-FileCopyrightText: Varun A P
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thorsten Lünborg
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
@ -322,7 +321,7 @@ This file is generated from multiple sources. Included packages:
- version: 10.9.0
- license: MIT
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -348,8 +347,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -381,15 +386,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -409,25 +429,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -492,6 +512,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -684,6 +707,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -717,6 +743,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- space-separated-tokens
- version: 2.0.2
- license: MIT
@ -817,7 +846,7 @@ This file is generated from multiple sources. Included packages:
- version: 4.11.3
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

Просмотреть файл

@ -23,7 +23,6 @@ SPDX-FileCopyrightText: Victor Felder <victor@draft.li> (https://draft.li)
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thorsten Lünborg
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
@ -297,7 +296,7 @@ This file is generated from multiple sources. Included packages:
- version: 10.9.0
- license: MIT
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -323,8 +322,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -356,15 +361,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -384,25 +404,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -467,6 +487,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -653,6 +676,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -686,6 +712,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- space-separated-tokens
- version: 2.0.2
- license: MIT
@ -783,7 +812,7 @@ This file is generated from multiple sources. Included packages:
- version: 4.11.3
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

Просмотреть файл

@ -24,7 +24,6 @@ SPDX-FileCopyrightText: Varun A P
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thorsten Lünborg
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
@ -325,7 +324,7 @@ This file is generated from multiple sources. Included packages:
- version: 10.9.0
- license: MIT
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -351,8 +350,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -387,15 +392,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -415,25 +435,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -498,6 +518,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -690,6 +713,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -723,6 +749,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- space-separated-tokens
- version: 2.0.2
- license: MIT
@ -823,7 +852,7 @@ This file is generated from multiple sources. Included packages:
- version: 4.11.3
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

Просмотреть файл

@ -24,7 +24,6 @@ SPDX-FileCopyrightText: Varun A P
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thorsten Lünborg
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Stefan-Gabriel Muscalu <stefan.gabriel.muscalu@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
@ -335,7 +334,7 @@ This file is generated from multiple sources. Included packages:
- version: 10.9.0
- license: MIT
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -361,8 +360,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -397,15 +402,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -425,25 +445,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -508,6 +528,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -703,6 +726,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -736,6 +762,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- simple-eta
- version: 3.0.2
- license: MIT
@ -839,7 +868,7 @@ This file is generated from multiple sources. Included packages:
- version: 4.11.3
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -23,7 +23,6 @@ SPDX-FileCopyrightText: Varun A P
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thorsten Lünborg
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
@ -316,7 +315,7 @@ This file is generated from multiple sources. Included packages:
- version: 10.9.0
- license: MIT
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -339,8 +338,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -372,15 +377,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -400,25 +420,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -483,6 +503,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -675,6 +698,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -708,6 +734,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- space-separated-tokens
- version: 2.0.2
- license: MIT
@ -811,7 +840,7 @@ This file is generated from multiple sources. Included packages:
- version: 5.94.0
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -23,7 +23,6 @@ SPDX-FileCopyrightText: Varun A P
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thorsten Lünborg
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
@ -311,7 +310,7 @@ This file is generated from multiple sources. Included packages:
- version: 10.9.0
- license: MIT
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -334,8 +333,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -367,15 +372,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -395,25 +415,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -478,6 +498,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -667,6 +690,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -700,6 +726,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- space-separated-tokens
- version: 2.0.2
- license: MIT
@ -800,7 +829,7 @@ This file is generated from multiple sources. Included packages:
- version: 4.11.3
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

Просмотреть файл

@ -24,7 +24,6 @@ SPDX-FileCopyrightText: Varun A P
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thorsten Lünborg
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Stefan-Gabriel Muscalu <stefan.gabriel.muscalu@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
@ -332,7 +331,7 @@ This file is generated from multiple sources. Included packages:
- version: 10.9.0
- license: MIT
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -358,8 +357,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -391,15 +396,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -419,25 +439,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -502,6 +522,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -697,6 +720,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -730,6 +756,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- simple-eta
- version: 3.0.2
- license: MIT
@ -833,7 +862,7 @@ This file is generated from multiple sources. Included packages:
- version: 4.11.3
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

Просмотреть файл

@ -23,7 +23,6 @@ SPDX-FileCopyrightText: Victor Felder <victor@draft.li> (https://draft.li)
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thorsten Lünborg
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
@ -297,7 +296,7 @@ This file is generated from multiple sources. Included packages:
- version: 10.9.0
- license: MIT
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -323,8 +322,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -356,15 +361,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -384,25 +404,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -467,6 +487,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -653,6 +676,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -686,6 +712,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- space-separated-tokens
- version: 2.0.2
- license: MIT
@ -783,7 +812,7 @@ This file is generated from multiple sources. Included packages:
- version: 4.11.3
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

Просмотреть файл

@ -23,7 +23,6 @@ SPDX-FileCopyrightText: Varun A P
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thorsten Lünborg
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
@ -304,7 +303,7 @@ This file is generated from multiple sources. Included packages:
- version: 10.9.0
- license: MIT
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -327,8 +326,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -360,15 +365,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -388,25 +408,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -471,6 +491,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -660,6 +683,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -693,6 +719,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- space-separated-tokens
- version: 2.0.2
- license: MIT
@ -793,7 +822,7 @@ This file is generated from multiple sources. Included packages:
- version: 4.11.3
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

Просмотреть файл

@ -11,7 +11,6 @@ SPDX-FileCopyrightText: inherits developers
SPDX-FileCopyrightText: escape-html developers
SPDX-FileCopyrightText: Varun A P
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
@ -105,7 +104,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -125,8 +124,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -143,9 +148,24 @@ This file is generated from multiple sources. Included packages:
- css-loader
- version: 6.8.1
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -159,25 +179,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- he
- version: 1.2.0
@ -212,6 +232,9 @@ This file is generated from multiple sources. Included packages:
- lodash.get
- version: 4.4.2
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -230,6 +253,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -242,6 +268,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- readable-stream
- version: 3.6.0
- license: MIT
@ -291,7 +320,7 @@ This file is generated from multiple sources. Included packages:
- version: 4.11.3
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- photos
- version: 4.0.0

Просмотреть файл

@ -23,7 +23,6 @@ SPDX-FileCopyrightText: Varun A P
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thorsten Lünborg
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
@ -311,7 +310,7 @@ This file is generated from multiple sources. Included packages:
- version: 10.9.0
- license: MIT
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -334,8 +333,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -367,15 +372,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -395,25 +415,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -478,6 +498,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -667,6 +690,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -700,6 +726,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- space-separated-tokens
- version: 2.0.2
- license: MIT
@ -800,7 +829,7 @@ This file is generated from multiple sources. Included packages:
- version: 4.11.3
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

Просмотреть файл

@ -24,7 +24,6 @@ SPDX-FileCopyrightText: Varun A P
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thorsten Lünborg
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
@ -322,7 +321,7 @@ This file is generated from multiple sources. Included packages:
- version: 10.9.0
- license: MIT
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -348,8 +347,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -381,15 +386,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -409,25 +429,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -492,6 +512,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -684,6 +707,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -717,6 +743,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- space-separated-tokens
- version: 2.0.2
- license: MIT
@ -817,7 +846,7 @@ This file is generated from multiple sources. Included packages:
- version: 4.11.3
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

Просмотреть файл

@ -23,7 +23,6 @@ SPDX-FileCopyrightText: Varun A P
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thorsten Lünborg
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
@ -297,7 +296,7 @@ This file is generated from multiple sources. Included packages:
- version: 10.9.0
- license: MIT
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -320,8 +319,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -353,15 +358,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -381,25 +401,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -464,6 +484,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -650,6 +673,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -683,6 +709,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- space-separated-tokens
- version: 2.0.2
- license: MIT
@ -783,7 +812,7 @@ This file is generated from multiple sources. Included packages:
- version: 4.11.3
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

Просмотреть файл

@ -23,7 +23,6 @@ SPDX-FileCopyrightText: Varun A P
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thorsten Lünborg
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Stefan-Gabriel Muscalu <stefan.gabriel.muscalu@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
@ -318,7 +317,7 @@ This file is generated from multiple sources. Included packages:
- version: 10.9.0
- license: MIT
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -341,8 +340,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -374,15 +379,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -402,25 +422,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -485,6 +505,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -677,6 +700,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -710,6 +736,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- simple-eta
- version: 3.0.2
- license: MIT
@ -816,7 +845,7 @@ This file is generated from multiple sources. Included packages:
- version: 4.11.3
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

Просмотреть файл

@ -22,7 +22,6 @@ SPDX-FileCopyrightText: Victor Felder <victor@draft.li> (https://draft.li)
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thorsten Lünborg
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
@ -299,7 +298,7 @@ This file is generated from multiple sources. Included packages:
- version: 10.9.0
- license: MIT
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -322,8 +321,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -355,15 +360,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -383,25 +403,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -466,6 +486,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -655,6 +678,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -688,6 +714,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- space-separated-tokens
- version: 2.0.2
- license: MIT
@ -785,7 +814,7 @@ This file is generated from multiple sources. Included packages:
- version: 4.11.3
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

Просмотреть файл

@ -24,7 +24,6 @@ SPDX-FileCopyrightText: Varun A P
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thorsten Lünborg
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Stefan-Gabriel Muscalu <stefan.gabriel.muscalu@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
@ -335,7 +334,7 @@ This file is generated from multiple sources. Included packages:
- version: 10.9.0
- license: MIT
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -361,8 +360,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -394,15 +399,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -422,25 +442,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -505,6 +525,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -700,6 +723,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -733,6 +759,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- simple-eta
- version: 3.0.2
- license: MIT
@ -836,7 +865,7 @@ This file is generated from multiple sources. Included packages:
- version: 4.11.3
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

Просмотреть файл

@ -22,7 +22,6 @@ SPDX-FileCopyrightText: Victor Felder <victor@draft.li> (https://draft.li)
SPDX-FileCopyrightText: Tobias Koppers @sokra
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
SPDX-FileCopyrightText: Thorsten Lünborg
SPDX-FileCopyrightText: Thiago de Arruda
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
SPDX-FileCopyrightText: Sindre Sorhus
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
@ -299,7 +298,7 @@ This file is generated from multiple sources. Included packages:
- version: 10.9.0
- license: MIT
- available-typed-arrays
- version: 1.0.5
- version: 1.0.7
- license: MIT
- axios
- version: 0.27.2
@ -322,8 +321,14 @@ This file is generated from multiple sources. Included packages:
- byte-length
- version: 1.0.2
- license: MIT
- call-bind-apply-helpers
- version: 1.0.1
- license: MIT
- call-bind
- version: 1.0.2
- version: 1.0.8
- license: MIT
- call-bound
- version: 1.0.3
- license: MIT
- camelcase
- version: 8.0.0
@ -355,15 +360,30 @@ This file is generated from multiple sources. Included packages:
- decode-named-character-reference
- version: 1.0.2
- license: MIT
- define-data-property
- version: 1.1.4
- license: MIT
- devlop
- version: 1.1.0
- license: MIT
- dompurify
- version: 3.1.5
- license: (MPL-2.0 OR Apache-2.0)
- dunder-proto
- version: 1.0.1
- license: MIT
- emoji-mart-vue-fast
- version: 15.0.1
- license: BSD-3-Clause
- es-define-property
- version: 1.0.1
- license: MIT
- es-errors
- version: 1.3.0
- license: MIT
- es-object-atoms
- version: 1.0.0
- license: MIT
- escape-html
- version: 1.0.3
- license: MIT
@ -383,25 +403,25 @@ This file is generated from multiple sources. Included packages:
- version: 0.3.3
- license: MIT
- function-bind
- version: 1.1.1
- version: 1.1.2
- license: MIT
- get-intrinsic
- version: 1.2.1
- version: 1.2.6
- license: MIT
- gopd
- version: 1.0.1
- version: 1.2.0
- license: MIT
- has-proto
- version: 1.0.1
- has-property-descriptors
- version: 1.0.2
- license: MIT
- has-symbols
- version: 1.0.3
- version: 1.1.0
- license: MIT
- has-tostringtag
- version: 1.0.0
- version: 1.0.2
- license: MIT
- has
- version: 1.0.3
- hasown
- version: 2.0.2
- license: MIT
- hast-to-hyperscript
- version: 10.0.3
@ -466,6 +486,9 @@ This file is generated from multiple sources. Included packages:
- markdown-table
- version: 3.0.3
- license: MIT
- math-intrinsics
- version: 1.1.0
- license: MIT
- md5
- version: 2.3.0
- license: BSD-3-Clause
@ -655,6 +678,9 @@ This file is generated from multiple sources. Included packages:
- path-posix
- version: 1.0.0
- license: ISC
- possible-typed-array-names
- version: 1.0.0
- license: MIT
- process
- version: 0.11.10
- license: MIT
@ -688,6 +714,9 @@ This file is generated from multiple sources. Included packages:
- safe-buffer
- version: 5.1.2
- license: MIT
- set-function-length
- version: 1.2.2
- license: MIT
- space-separated-tokens
- version: 2.0.2
- license: MIT
@ -785,7 +814,7 @@ This file is generated from multiple sources. Included packages:
- version: 4.11.3
- license: MIT
- which-typed-array
- version: 1.1.9
- version: 1.1.18
- license: MIT
- zwitch
- version: 2.0.4

2616
package-lock.json сгенерированный

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -89,17 +89,18 @@
"@nextcloud/eslint-config": "^8.2.1",
"@nextcloud/stylelint-config": "^2.4.0",
"@nextcloud/webpack-vue-config": "^5.5.1",
"@types/dockerode": "^3.3.20",
"@types/dockerode": "^3.3.32",
"@types/jest": "^29.5.1",
"@vue/test-utils": "^1.3.6",
"@vue/tsconfig": "^0.1.3",
"@vue/vue2-jest": "^29.2.6",
"autoprefixer": "^10.4.14",
"babel-loader-exclude-node-modules-except": "^1.2.1",
"cypress-visual-regression": "^5.0.0",
"cypress-split": "^1.24.7",
"cypress-visual-regression": "^5.2.2",
"cypress-wait-until": "^2.0.1",
"dockerode": "^3.3.5",
"eslint-plugin-cypress": "^2.12.1",
"dockerode": "^4.0.2",
"eslint-plugin-cypress": "^3.6.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"module-replace-webpack-plugin": "0.0.12",

Просмотреть файл

@ -1,22 +1,15 @@
{
"extends": "@vue/tsconfig/tsconfig.json",
"include": ["./src/**/*.ts"],
"include": ["./src"],
"compilerOptions": {
"types": ["cypress", "node", "dockerode"],
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"target": "ESNext",
"module": "esnext",
"declaration": true,
"strict": true,
"lib": [
"DOM",
"ES2015"
],
"rootDir": "src",
"noImplicitAny": false,
"resolveJsonModule": true
},
"ts-node": {
// these options are overrides used only by ts-node
// same as our --compilerOptions flag and our TS_NODE_COMPILER_OPTIONS environment variable
"compilerOptions": {
"module": "commonjs"
}
"vueCompilerOptions": {
"target": 2.7
}
}
}