Release version 2.13.0

This commit is contained in:
CES Marvin
2021-01-29 10:04:49 +00:00
parent 8d20c5fa76
commit 6e54f19dc9
44 changed files with 753 additions and 43 deletions

View File

@@ -0,0 +1,10 @@
{
"name": "cypress",
"productName": "Cypress",
"description": "Cypress.io end to end testing tool",
"version": "6.2.1",
"electronVersion": "11.1.1",
"electronNodeVersion": "12.18.3",
"main": "index.js",
"env": "production"
}

View File

@@ -0,0 +1,22 @@
{
"name": "@packages/desktop-gui",
"version": "0.0.0",
"private": true,
"main": "lib/gui.js",
"scripts": {
"build": "webpack",
"build-prod": "cross-env NODE_ENV=production yarn build",
"clean-deps": "rm -rf node_modules",
"cypress:open": "cross-env TZ=America/New_York node ../../scripts/cypress open --project .",
"cypress:run": "cross-env TZ=America/New_York node ../../scripts/cypress run --project .",
"dev": "yarn start-test 5005 cypress:open",
"postinstall": "echo '@packages/desktop-gui needs: yarn build'",
"start": "http-server -p 5005 dist",
"watch": "yarn build --watch --progress"
},
"files": [
"dist",
"lib",
"!lib/**/*_spec.jsx"
]
}

View File

@@ -0,0 +1,22 @@
{
"name": "@packages/driver",
"version": "0.0.0",
"private": true,
"scripts": {
"clean-deps": "rm -rf node_modules",
"cypress:open": "node ../../scripts/cypress open",
"cypress:run": "node ../../scripts/cypress run",
"postinstall": "patch-package",
"start": "node -e 'console.log(require(`chalk`).red(`\nError:\n\tRunning \\`yarn start\\` is no longer needed for driver/cypress tests.\n\tWe now automatically spawn the server in the pluginsFile.\n\tChanges to the server will be watched and reloaded automatically.`))'"
},
"dependencies": {},
"files": [
"lib",
"patches"
],
"workspaces": {
"nohoist": [
"*"
]
}
}

View File

@@ -0,0 +1,33 @@
{
"name": "@packages/electron",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"build": "node ./bin/cypress-electron --install",
"build-prod": "yarn build",
"clean-deps": "rm -rf node_modules",
"postinstall": "echo '@packages/electron needs: yarn build'",
"start": "./bin/cypress-electron",
"test": "yarn test-unit",
"test-debug": "yarn test-unit --inspect-brk=5566",
"test-unit": "mocha",
"test-watch": "yarn test-unit --watch"
},
"dependencies": {
"@cypress/icons": "0.7.0",
"bluebird": "3.5.3",
"debug": "4.1.1",
"electron-packager": "14.1.1",
"fs-extra": "8.1.0",
"lodash": "4.17.19",
"minimist": "1.2.5"
},
"files": [
"dist",
"lib"
],
"bin": {
"cypress-electron": "./bin/cypress-electron"
}
}

View File

@@ -0,0 +1,5 @@
{
"name": "Using fixtures to represent data",
"email": "hello@cypress.io",
"body": "Fixtures are a great way to mock data for responses to routes"
}

View File

@@ -0,0 +1,27 @@
{
"name": "@packages/example",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"postinstall": "echo '@packages/example needs: yarn build'",
"clean-deps": "rm -rf node_modules",
"test": "yarn test-unit",
"test-e2e": "cypress run",
"test-debug": "yarn test-unit --inspect-brk=5566",
"test-unit": "cross-env NODE_ENV=test mocha",
"test-watch": "yarn test-unit --watch",
"build": "node ./bin/build.js && gulp build",
"build-prod": "yarn build",
"predeploy": "yarn build",
"deploy": "gulp deploy"
},
"files": [
"cypress",
"lib"
],
"dependencies": {
"bluebird": "3.5.3",
"glob": "7.1.3"
}
}

View File

@@ -0,0 +1,40 @@
{
"name": "Cypress",
"description": "Adds WebExtension APIs for testing with Cypress",
"applications": {
"gecko": {
"id": "automation-extension@cypress.io"
}
},
"permissions": [
"cookies",
"tabs",
"http://*/*",
"https://*/*",
"<all_urls>"
],
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAugoxpSqfoblTYUGvyXZpmBgjYQUY9k2Hx3PaDwquyaTH6GBxitwVMSu5sZuDYgPHpGYoF4ol6A4PZHhd6JvfuUDS9ZrxTW0XzP+dSS9AwmJo3uLuP88zBs4mhpje1+WE5NGM0pTzyCXYTPoyzyPRmToALWD96cahSGuhG8bSmaBw3py+16qNKm8SOlANbUvHtEaTpmrSWBUIq7YV8SIPLtR8G47vjqPTE1yEsBQ3GAgllhi0cJolwk/629fRLr3KVckICmU6spXD/jVhIgAeyHhFuFGYNuubzbel8trBVw5Q/HE5F6j66sBvEvW64tH4lPxnM5JPv0qie5wouPiT0wIDAQAB",
"icons": {
"16": "icons/icon_16x16.png",
"48": "icons/icon_48x48.png",
"128": "icons/icon_128x128.png"
},
"browser_action": {
"default_title": "Cypress",
"default_icon": {
"19": "icons/icon_19x19.png",
"38": "icons/icon_38x38.png"
},
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
]
},
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"manifest_version": 2,
"version": "0.0.0"
}

View File

@@ -0,0 +1,40 @@
{
"name": "Cypress",
"description": "Adds WebExtension APIs for testing with Cypress",
"applications": {
"gecko": {
"id": "automation-extension@cypress.io"
}
},
"permissions": [
"cookies",
"tabs",
"http://*/*",
"https://*/*",
"<all_urls>"
],
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAugoxpSqfoblTYUGvyXZpmBgjYQUY9k2Hx3PaDwquyaTH6GBxitwVMSu5sZuDYgPHpGYoF4ol6A4PZHhd6JvfuUDS9ZrxTW0XzP+dSS9AwmJo3uLuP88zBs4mhpje1+WE5NGM0pTzyCXYTPoyzyPRmToALWD96cahSGuhG8bSmaBw3py+16qNKm8SOlANbUvHtEaTpmrSWBUIq7YV8SIPLtR8G47vjqPTE1yEsBQ3GAgllhi0cJolwk/629fRLr3KVckICmU6spXD/jVhIgAeyHhFuFGYNuubzbel8trBVw5Q/HE5F6j66sBvEvW64tH4lPxnM5JPv0qie5wouPiT0wIDAQAB",
"icons": {
"16": "icons/icon_16x16.png",
"48": "icons/icon_48x48.png",
"128": "icons/icon_128x128.png"
},
"browser_action": {
"default_title": "Cypress",
"default_icon": {
"19": "icons/icon_19x19.png",
"38": "icons/icon_38x38.png"
},
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
]
},
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"manifest_version": 2,
"version": "0.0.0"
}

View File

@@ -0,0 +1,28 @@
{
"name": "@packages/extension",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"build": "gulp build",
"build-prod": "yarn build",
"clean": "gulp clean",
"clean-deps": "rm -rf node_modules",
"postinstall": "echo '@packages/extension needs: yarn build'",
"test": "yarn test-unit",
"test-debug": "yarn test-unit --inspect-brk=5566",
"test-unit": "cross-env NODE_ENV=test mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
"test-watch": "yarn test-unit --watch",
"watch": "gulp watch"
},
"dependencies": {
"bluebird": "3.5.3",
"lodash": "4.17.19"
},
"files": [
"app",
"dist",
"lib",
"theme"
]
}

View File

@@ -0,0 +1,44 @@
{
"name": "Cypress Theme",
"version": "1.0",
"manifest_version": 2,
"theme": {
"colors": {
"bookmark_text": [
0,
0,
0
],
"frame": [
29,
31,
33
],
"tab_background_text": [
255,
255,
255
],
"ntp_section": [
255,
255,
255
]
},
"images": {
"theme_frame": "images/theme_frame.png"
},
"tints": {
"frame_inactive": [
-1,
-1,
-1
],
"background_tab": [
-1,
-1,
-1
]
}
}
}

View File

@@ -0,0 +1,27 @@
{
"name": "@packages/https-proxy",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"clean-deps": "rm -rf node_modules",
"https": "node https.js",
"regenerate:certs": "cd ./test/helpers/certs && ./regenerate-certs.sh",
"start": "node index.js",
"test": "yarn test-unit",
"test-debug": "yarn test-unit --inspect-brk=5566",
"test-unit": "cross-env NODE_ENV=test mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
"test-watch": "cross-env NODE_ENV=test mocha --watch"
},
"dependencies": {
"bluebird": "3.5.3",
"debug": "4.1.1",
"fs-extra": "8.1.0",
"lodash": "4.17.19",
"node-forge": "0.10.0",
"semaphore": "1.1.0"
},
"files": [
"lib"
]
}

View File

@@ -0,0 +1,28 @@
{
"name": "@packages/launcher",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"build-prod": "tsc --project .",
"clean": "node scripts/clean.js || true",
"clean-deps": "rm -rf node_modules",
"clean-js": "yarn clean",
"size": "t=\"cypress-v0.0.0.tgz\"; yarn pack --filename \"${t}\"; wc -c \"cli/${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"test": "yarn test-unit",
"test-unit": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json"
},
"dependencies": {
"bluebird": "3.5.3",
"debug": "4.1.1",
"execa": "4.0.0",
"fs-extra": "8.1.0",
"lodash": "4.17.19",
"plist": "3.0.1",
"ramda": "0.24.1"
},
"files": [
"lib"
],
"types": "./lib/types.ts"
}

View File

@@ -0,0 +1,22 @@
{
"name": "@packages/net-stubbing",
"version": "0.0.0",
"private": true,
"main": "./lib/server",
"scripts": {
"build-prod": "tsc --project .",
"clean-deps": "rm -rf node_modules",
"test": "mocha -r @packages/ts/register --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json --exit test/unit/*"
},
"dependencies": {
"@types/mime-types": "2.1.0",
"is-html": "^2.0.0",
"lodash": "4.17.15",
"mime-types": "2.1.27",
"minimatch": "^3.0.4",
"throttle": "^1.0.3"
},
"files": [
"lib"
]
}

View File

@@ -0,0 +1,27 @@
{
"name": "@packages/network",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"build-prod": "tsc --project .",
"clean": "rm lib/*.js",
"clean-deps": "rm -rf node_modules",
"test": "yarn test-unit",
"test-debug": "yarn test-unit --inspect-brk=5566",
"test-unit": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
"test-watch": "yarn test-unit --watch"
},
"dependencies": {
"@cypress/parse-domain": "2.4.0",
"bluebird": "3.5.3",
"concat-stream": "1.6.2",
"debug": "4.1.1",
"lodash": "4.17.19",
"proxy-from-env": "1.0.0"
},
"files": [
"lib"
],
"types": "./lib/index.ts"
}

View File

@@ -0,0 +1,30 @@
{
"name": "@packages/proxy",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"build-prod": "tsc --project .",
"clean-deps": "rm -rf node_modules",
"run-mocha": "mocha -r @packages/ts/register -r test/pretest.ts --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
"test": "yarn run-mocha \"test/integration/*.spec.ts\" \"test/unit/**/*.spec.ts\"",
"test-integration": "yarn run-mocha \"test/integration/*.spec.ts\"",
"test-unit": "yarn run-mocha \"test/unit/**/*.spec.ts\""
},
"dependencies": {
"bluebird": "3.5.3",
"charset": "1.0.1",
"common-tags": "1.8.0",
"debug": "4.1.1",
"grapheme-splitter": "1.0.4",
"iconv-lite": "0.6.2",
"lodash": "4.17.19",
"pumpify": "1.5.1",
"through": "2.3.8",
"utf8-stream": "0.0.0"
},
"files": [
"lib"
],
"types": "./lib/index.ts"
}

View File

@@ -0,0 +1,16 @@
{
"name": "@packages/reporter",
"version": "0.0.0",
"private": true,
"main": "src/main.tsx",
"scripts": {
"build-for-tests": "webpack",
"clean-deps": "rm -rf node_modules",
"cypress:open": "node ../../scripts/cypress open --project .",
"cypress:run": "node ../../scripts/cypress run --project .",
"watch": "yarn build-for-tests --watch --progress"
},
"files": [
"lib"
]
}

View File

@@ -0,0 +1,33 @@
{
"name": "@packages/rewriter",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"build-prod": "tsc --project .",
"build-test": "yarn build-prod --noEmit",
"clean-deps": "rm -rf node_modules",
"test": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json"
},
"dependencies": {
"ast-types": "0.13.3",
"bluebird": "3.7.2",
"chai-as-promised": "7.1.1",
"debug": "4.1.1",
"lodash": "4.17.19",
"parse5-html-rewriting-stream": "5.1.1",
"recast": "0.19.1"
},
"files": [
"lib"
],
"types": "./lib/index.ts",
"workspaces": {
"nohoist": [
"parse5-html-rewriting-stream",
"parse5-html-rewriting-stream/**",
"@types/parse5-html-rewriting-stream",
"@types/parse5-html-rewriting-stream/**"
]
}
}

View File

@@ -0,0 +1,6 @@
{
"name": "@packages/root",
"version": "0.0.0",
"description": "dummy package pointing at the root package",
"main": "index.js"
}

View File

@@ -0,0 +1,23 @@
{
"name": "@packages/runner",
"version": "0.0.0",
"private": true,
"main": "src/index.js",
"scripts": {
"build": "webpack",
"build-prod": "cross-env NODE_ENV=production yarn build",
"clean-deps": "rm -rf node_modules",
"cypress:open": "node ../../scripts/cypress open",
"cypress:run": "node ../../scripts/cypress run",
"postinstall": "echo '@packages/runner needs: yarn build'",
"test": "yarn test-unit",
"test-debug": "yarn test-unit --inspect-brk=5566",
"test-unit": "mocha --config test/.mocharc.json src/**/*.spec.*",
"test-watch": "yarn test-unit --watch",
"watch": "webpack --watch --progress"
},
"files": [
"dist",
"lib"
]
}

View File

@@ -0,0 +1,5 @@
{
"name": "Using fixtures to represent data",
"email": "hello@cypress.io",
"body": "Fixtures are a great way to mock data for responses to routes"
}

View File

@@ -0,0 +1,137 @@
{
"name": "@packages/server",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"build-prod": "tsc",
"clean-deps": "rm -rf node_modules",
"codecov": "codecov",
"dev": "node index.js",
"docker": "cd ../.. && WORKING_DIR=/packages/server ./scripts/run-docker-local.sh",
"postinstall": "patch-package",
"repl": "node repl.js",
"start": "node ../../scripts/cypress open --dev --global",
"test": "node ./test/scripts/run.js",
"test-e2e": "node ./test/scripts/run.js --glob-in-dir=test/e2e",
"test-integration": "node ./test/scripts/run.js --glob-in-dir=test/integration",
"test-performance": "node ./test/scripts/run.js --glob-in-dir=test/performance",
"test-unit": "node ./test/scripts/run.js --glob-in-dir=test/unit",
"test-watch": "./test/support/watch test"
},
"dependencies": {
"@benmalka/foxdriver": "0.4.1",
"@cypress/commit-info": "2.2.0",
"@cypress/get-windows-proxy": "1.6.1",
"@cypress/icons": "0.7.0",
"@cypress/mocha-teamcity-reporter": "1.0.0",
"@cypress/request": "2.88.5",
"@cypress/request-promise": "4.2.6",
"@cypress/webpack-batteries-included-preprocessor": "2.1.3",
"@cypress/webpack-preprocessor": "*",
"@ffmpeg-installer/ffmpeg": "1.0.20",
"ansi_up": "4.0.4",
"black-hole-stream": "0.0.1",
"bluebird": "3.7.0",
"chai": "1.10.0",
"chalk": "2.4.2",
"check-more-types": "2.24.0",
"chokidar": "3.2.2",
"chrome-remote-interface": "0.28.2",
"cli-table3": "0.5.1",
"coffeescript": "1.12.7",
"color-string": "1.5.4",
"command-exists": "1.2.9",
"common-tags": "1.8.0",
"compression": "1.7.4",
"content-type": "1.0.4",
"cookie-parser": "1.4.5",
"data-uri-to-buffer": "2.0.1",
"debug": "4.1.1",
"dependency-tree": "7.0.2",
"duplexify": "4.1.1",
"electron-context-menu": "2.2.0",
"errorhandler": "1.5.1",
"evil-dns": "0.2.0",
"execa": "1.0.0",
"express": "4.17.1",
"find-process": "1.4.1",
"firefox-profile": "4.0.0",
"fix-path": "3.0.0",
"fluent-ffmpeg": "2.1.2",
"fs-extra": "8.1.0",
"get-port": "5.1.1",
"getos": "3.2.1",
"glob": "7.1.3",
"graceful-fs": "4.2.0",
"http-proxy": "cypress-io/node-http-proxy#9322b4b69b34f13a6f3874e660a35df3305179c6",
"human-interval": "1.0.0",
"image-size": "0.8.3",
"is-fork-pr": "2.5.0",
"is-html": "2.0.0",
"jimp": "0.14.0",
"jsonlint": "1.6.3",
"konfig": "0.2.1",
"launch-editor": "2.2.1",
"lazy-ass": "1.6.0",
"lockfile": "1.0.4",
"lodash": "4.17.19",
"log-symbols": "2.2.0",
"marionette-client": "cypress-io/marionette-client#2cddf7d791cca7be5191d7fe103d58be7283957d",
"md5": "2.3.0",
"mime": "2.4.4",
"minimatch": "3.0.4",
"minimist": "1.2.5",
"mocha-7.0.1": "npm:mocha@7.0.1",
"mocha-junit-reporter": "2.0.0",
"mocha-teamcity-reporter": "3.0.0",
"moment": "2.27.0",
"morgan": "1.9.1",
"node-machine-id": "1.1.12",
"opn": "cypress-io/opn#2f4e9a216ca7bdb95dfae9d46d99ddf004b3cbb5",
"ospath": "1.2.2",
"p-queue": "6.1.0",
"pluralize": "8.0.0",
"ramda": "0.24.1",
"randomstring": "1.1.5",
"resolve": "1.17.0",
"return-deep-diff": "0.4.0",
"sanitize-filename": "1.6.3",
"semver": "7.3.2",
"send": "0.17.1",
"shell-env": "3.0.0",
"signal-exit": "3.0.3",
"squirrelly": "7.9.2",
"strip-ansi": "6.0.0",
"syntax-error": "1.4.0",
"systeminformation": "4.27.11",
"term-size": "2.1.0",
"through": "2.3.8",
"tough-cookie": "4.0.0",
"trash": "5.2.0",
"tree-kill": "1.2.2",
"ts-node": "8.5.4",
"underscore": "1.9.1",
"underscore.string": "3.3.5",
"url-parse": "1.4.7",
"uuid": "8.2.0",
"which": "2.0.2",
"widest-line": "3.1.0",
"winston": "2.4.4"
},
"files": [
"config",
"lib",
"patches"
],
"types": "index.d.ts",
"productName": "Cypress",
"workspaces": {
"nohoist": [
"@benmalka/foxdriver"
]
},
"optionalDependencies": {
"registry-js": "1.8.0"
}
}

View File

@@ -0,0 +1,28 @@
{
"name": "@packages/socket",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"clean-deps": "rm -rf node_modules",
"postinstall": "patch-package",
"test": "yarn test-unit",
"test-debug": "yarn test-unit --inspect-brk=5566",
"test-unit": "cross-env NODE_ENV=test mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
"test-watch": "cross-env NODE_ENV=test mocha --watch"
},
"dependencies": {
"socket.io": "2.3.0",
"socket.io-circular-parser": "cypress-io/socket.io-circular-parser#unpatched-has-binary-2",
"socket.io-client": "2.3.0"
},
"files": [
"lib",
"patches"
],
"workspaces": {
"nohoist": [
"**"
]
}
}

View File

@@ -0,0 +1,16 @@
{
"name": "@packages/static",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"build": "gulp build",
"build-prod": "yarn build",
"clean-deps": "rm -rf node_modules",
"postinstall": "echo '@packages/static needs: yarn build'"
},
"files": [
"dist",
"lib"
]
}

View File

@@ -0,0 +1,19 @@
{
"name": "@packages/ts",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"clean-deps": "rm -rf node_modules",
"postinstall": "patch-package",
"test": "yarn test-unit",
"test-unit": "node test",
"test-watch": "echo 'no watching of tests'"
},
"dependencies": {
"debug": "4.1.1"
},
"files": [
"register.js"
]
}

View File

@@ -0,0 +1,16 @@
{
"name": "@packages/ui-components",
"version": "0.0.0",
"private": true,
"main": "src/index.tsx",
"scripts": {
"build-for-tests": "webpack",
"check-deps": "node ../../scripts/check-deps.js --verbose",
"check-deps-pre": "npm run check-deps -- --prescript",
"clean-deps": "rm -rf node_modules",
"cypress:open": "node ../../scripts/cypress open --project .",
"cypress:run": "node ../../scripts/cypress run --project .",
"pretest": "npm run check-deps-pre",
"watch": "npm run build-for-tests -- --watch --progress"
}
}

View File

@@ -0,0 +1,4 @@
{
"name": "@packages/web-config",
"version": "0.0.0"
}

View File

@@ -0,0 +1 @@
{"file_format_version": "1.0.0", "ICD": {"library_path": "./libvk_swiftshader.so", "api_version": "1.0.5"}}

View File

@@ -0,0 +1 @@
{"metricId":"888c6cc9-ebdc-4646-950e-b3921a9635a4","metrics":{"from":"2021-01-29T09:58:11.338Z","to":"2021-01-29T09:58:11.338Z","successfulInstalls":1,"failedInstalls":0}}

View File

@@ -22,5 +22,5 @@
# SOFTWARE. # SOFTWARE.
# #
group = sonia.scm group = sonia.scm
version = 2.13.0-SNAPSHOT version = 2.13.0
org.gradle.jvmargs=-Xmx1024M org.gradle.jvmargs=-Xmx1024M

View File

@@ -5,5 +5,5 @@
], ],
"npmClient": "yarn", "npmClient": "yarn",
"useWorkspaces": true, "useWorkspaces": true,
"version": "2.13.0-SNAPSHOT" "version": "2.13.0"
} }

View File

@@ -1,7 +1,7 @@
{ {
"name": "@scm-manager/scm-git-plugin", "name": "@scm-manager/scm-git-plugin",
"private": true, "private": true,
"version": "2.13.0-SNAPSHOT", "version": "2.13.0",
"license": "MIT", "license": "MIT",
"main": "./src/main/js/index.ts", "main": "./src/main/js/index.ts",
"scripts": { "scripts": {
@@ -11,14 +11,14 @@
"typecheck": "tsc" "typecheck": "tsc"
}, },
"dependencies": { "dependencies": {
"@scm-manager/ui-plugins": "^2.13.0-SNAPSHOT" "@scm-manager/ui-plugins": "^2.13.0"
}, },
"devDependencies": { "devDependencies": {
"@scm-manager/plugin-scripts": "^1.0.1",
"@scm-manager/babel-preset": "^2.11.1", "@scm-manager/babel-preset": "^2.11.1",
"@scm-manager/eslint-config": "^2.11.1",
"@scm-manager/jest-preset": "^2.12.3", "@scm-manager/jest-preset": "^2.12.3",
"@scm-manager/prettier-config": "^2.11.1", "@scm-manager/plugin-scripts": "^1.0.1",
"@scm-manager/eslint-config": "^2.11.1" "@scm-manager/prettier-config": "^2.11.1"
}, },
"babel": { "babel": {
"presets": [ "presets": [

View File

@@ -1,7 +1,7 @@
{ {
"name": "@scm-manager/scm-hg-plugin", "name": "@scm-manager/scm-hg-plugin",
"private": true, "private": true,
"version": "2.13.0-SNAPSHOT", "version": "2.13.0",
"license": "MIT", "license": "MIT",
"main": "./src/main/js/index.ts", "main": "./src/main/js/index.ts",
"scripts": { "scripts": {
@@ -10,14 +10,14 @@
"typecheck": "tsc" "typecheck": "tsc"
}, },
"dependencies": { "dependencies": {
"@scm-manager/ui-plugins": "^2.13.0-SNAPSHOT" "@scm-manager/ui-plugins": "^2.13.0"
}, },
"devDependencies": { "devDependencies": {
"@scm-manager/plugin-scripts": "^1.0.1",
"@scm-manager/babel-preset": "^2.11.1", "@scm-manager/babel-preset": "^2.11.1",
"@scm-manager/eslint-config": "^2.11.1",
"@scm-manager/jest-preset": "^2.12.3", "@scm-manager/jest-preset": "^2.12.3",
"@scm-manager/prettier-config": "^2.11.1", "@scm-manager/plugin-scripts": "^1.0.1",
"@scm-manager/eslint-config": "^2.11.1" "@scm-manager/prettier-config": "^2.11.1"
}, },
"babel": { "babel": {
"presets": [ "presets": [

View File

@@ -1,7 +1,7 @@
{ {
"name": "@scm-manager/scm-legacy-plugin", "name": "@scm-manager/scm-legacy-plugin",
"private": true, "private": true,
"version": "2.13.0-SNAPSHOT", "version": "2.13.0",
"license": "MIT", "license": "MIT",
"main": "./src/main/js/index.tsx", "main": "./src/main/js/index.tsx",
"scripts": { "scripts": {
@@ -10,14 +10,14 @@
"typecheck": "tsc" "typecheck": "tsc"
}, },
"dependencies": { "dependencies": {
"@scm-manager/ui-plugins": "^2.13.0-SNAPSHOT" "@scm-manager/ui-plugins": "^2.13.0"
}, },
"devDependencies": { "devDependencies": {
"@scm-manager/plugin-scripts": "^1.0.1",
"@scm-manager/babel-preset": "^2.11.1", "@scm-manager/babel-preset": "^2.11.1",
"@scm-manager/eslint-config": "^2.11.1",
"@scm-manager/jest-preset": "^2.12.3", "@scm-manager/jest-preset": "^2.12.3",
"@scm-manager/prettier-config": "^2.11.1", "@scm-manager/plugin-scripts": "^1.0.1",
"@scm-manager/eslint-config": "^2.11.1" "@scm-manager/prettier-config": "^2.11.1"
}, },
"babel": { "babel": {
"presets": [ "presets": [

View File

@@ -1,7 +1,7 @@
{ {
"name": "@scm-manager/scm-svn-plugin", "name": "@scm-manager/scm-svn-plugin",
"private": true, "private": true,
"version": "2.13.0-SNAPSHOT", "version": "2.13.0",
"license": "MIT", "license": "MIT",
"main": "./src/main/js/index.ts", "main": "./src/main/js/index.ts",
"scripts": { "scripts": {
@@ -10,14 +10,14 @@
"typecheck": "tsc" "typecheck": "tsc"
}, },
"dependencies": { "dependencies": {
"@scm-manager/ui-plugins": "^2.13.0-SNAPSHOT" "@scm-manager/ui-plugins": "^2.13.0"
}, },
"devDependencies": { "devDependencies": {
"@scm-manager/plugin-scripts": "^1.0.1",
"@scm-manager/babel-preset": "^2.11.1", "@scm-manager/babel-preset": "^2.11.1",
"@scm-manager/eslint-config": "^2.11.1",
"@scm-manager/jest-preset": "^2.12.3", "@scm-manager/jest-preset": "^2.12.3",
"@scm-manager/prettier-config": "^2.11.1", "@scm-manager/plugin-scripts": "^1.0.1",
"@scm-manager/eslint-config": "^2.11.1" "@scm-manager/prettier-config": "^2.11.1"
}, },
"babel": { "babel": {
"presets": [ "presets": [

View File

@@ -1,6 +1,6 @@
{ {
"name": "@scm-manager/e2e-tests", "name": "@scm-manager/e2e-tests",
"version": "2.13.0-SNAPSHOT", "version": "2.13.0",
"description": "End to end Tests for SCM-Manager", "description": "End to end Tests for SCM-Manager",
"main": "index.js", "main": "index.js",
"author": "Eduard Heimbuch <eduard.heimbuch@cloudogu.com>", "author": "Eduard Heimbuch <eduard.heimbuch@cloudogu.com>",

View File

@@ -1,6 +1,6 @@
{ {
"name": "@scm-manager/ui-components", "name": "@scm-manager/ui-components",
"version": "2.13.0-SNAPSHOT", "version": "2.13.0",
"description": "UI Components for SCM-Manager and its plugins", "description": "UI Components for SCM-Manager and its plugins",
"main": "src/index.ts", "main": "src/index.ts",
"files": [ "files": [
@@ -23,7 +23,7 @@
"@scm-manager/jest-preset": "^2.12.4", "@scm-manager/jest-preset": "^2.12.4",
"@scm-manager/prettier-config": "^2.10.1", "@scm-manager/prettier-config": "^2.10.1",
"@scm-manager/tsconfig": "^2.10.1", "@scm-manager/tsconfig": "^2.10.1",
"@scm-manager/ui-tests": "^2.13.0-SNAPSHOT", "@scm-manager/ui-tests": "^2.13.0",
"@storybook/addon-actions": "^6.0.28", "@storybook/addon-actions": "^6.0.28",
"@storybook/addon-storyshots": "^6.0.28", "@storybook/addon-storyshots": "^6.0.28",
"@storybook/react": "^6.0.28", "@storybook/react": "^6.0.28",
@@ -55,8 +55,8 @@
"worker-plugin": "^3.2.0" "worker-plugin": "^3.2.0"
}, },
"dependencies": { "dependencies": {
"@scm-manager/ui-extensions": "^2.13.0-SNAPSHOT", "@scm-manager/ui-extensions": "^2.13.0",
"@scm-manager/ui-types": "^2.13.0-SNAPSHOT", "@scm-manager/ui-types": "^2.13.0",
"classnames": "^2.2.6", "classnames": "^2.2.6",
"date-fns": "^2.4.1", "date-fns": "^2.4.1",
"gitdiff-parser": "^0.1.2", "gitdiff-parser": "^0.1.2",

View File

@@ -1,6 +1,6 @@
{ {
"name": "@scm-manager/ui-extensions", "name": "@scm-manager/ui-extensions",
"version": "2.13.0-SNAPSHOT", "version": "2.13.0",
"main": "src/index.ts", "main": "src/index.ts",
"license": "MIT", "license": "MIT",
"private": false, "private": false,

View File

@@ -1,13 +1,13 @@
{ {
"name": "@scm-manager/ui-plugins", "name": "@scm-manager/ui-plugins",
"version": "2.13.0-SNAPSHOT", "version": "2.13.0",
"license": "MIT", "license": "MIT",
"bin": { "bin": {
"ui-plugins": "./bin/ui-plugins.js" "ui-plugins": "./bin/ui-plugins.js"
}, },
"dependencies": { "dependencies": {
"@scm-manager/ui-components": "^2.13.0-SNAPSHOT", "@scm-manager/ui-components": "^2.13.0",
"@scm-manager/ui-extensions": "^2.13.0-SNAPSHOT", "@scm-manager/ui-extensions": "^2.13.0",
"classnames": "^2.2.6", "classnames": "^2.2.6",
"query-string": "^5.0.1", "query-string": "^5.0.1",
"react": "^16.10.2", "react": "^16.10.2",
@@ -23,9 +23,9 @@
"@scm-manager/jest-preset": "^2.12.4", "@scm-manager/jest-preset": "^2.12.4",
"@scm-manager/prettier-config": "^2.10.1", "@scm-manager/prettier-config": "^2.10.1",
"@scm-manager/tsconfig": "^2.10.1", "@scm-manager/tsconfig": "^2.10.1",
"@scm-manager/ui-scripts": "^2.13.0-SNAPSHOT", "@scm-manager/ui-scripts": "^2.13.0",
"@scm-manager/ui-tests": "^2.13.0-SNAPSHOT", "@scm-manager/ui-tests": "^2.13.0",
"@scm-manager/ui-types": "^2.13.0-SNAPSHOT", "@scm-manager/ui-types": "^2.13.0",
"@types/classnames": "^2.2.9", "@types/classnames": "^2.2.9",
"@types/enzyme": "^3.10.3", "@types/enzyme": "^3.10.3",
"@types/fetch-mock": "^7.3.1", "@types/fetch-mock": "^7.3.1",

View File

@@ -1,6 +1,6 @@
{ {
"name": "@scm-manager/ui-polyfill", "name": "@scm-manager/ui-polyfill",
"version": "2.13.0-SNAPSHOT", "version": "2.13.0",
"description": "Polyfills for SCM-Manager UI", "description": "Polyfills for SCM-Manager UI",
"main": "src/index.js", "main": "src/index.js",
"author": "Sebastian Sdorra <sebastian.sdorra@cloudogu.com>", "author": "Sebastian Sdorra <sebastian.sdorra@cloudogu.com>",

View File

@@ -1,6 +1,6 @@
{ {
"name": "@scm-manager/ui-scripts", "name": "@scm-manager/ui-scripts",
"version": "2.13.0-SNAPSHOT", "version": "2.13.0",
"description": "Build scripts for SCM-Manager", "description": "Build scripts for SCM-Manager",
"main": "src/index.js", "main": "src/index.js",
"author": "Sebastian Sdorra <sebastian.sdorra@cloudogu.com>", "author": "Sebastian Sdorra <sebastian.sdorra@cloudogu.com>",

View File

@@ -1,6 +1,6 @@
{ {
"name": "@scm-manager/ui-styles", "name": "@scm-manager/ui-styles",
"version": "2.13.0-SNAPSHOT", "version": "2.13.0",
"description": "Styles for SCM-Manager", "description": "Styles for SCM-Manager",
"main": "src/scm.scss", "main": "src/scm.scss",
"license": "MIT", "license": "MIT",

View File

@@ -1,6 +1,6 @@
{ {
"name": "@scm-manager/ui-tests", "name": "@scm-manager/ui-tests",
"version": "2.13.0-SNAPSHOT", "version": "2.13.0",
"description": "UI-Tests helpers", "description": "UI-Tests helpers",
"author": "Sebastian Sdorra <sebastian.sdorra@cloudogu.com>", "author": "Sebastian Sdorra <sebastian.sdorra@cloudogu.com>",
"license": "MIT", "license": "MIT",

View File

@@ -1,6 +1,6 @@
{ {
"name": "@scm-manager/ui-types", "name": "@scm-manager/ui-types",
"version": "2.13.0-SNAPSHOT", "version": "2.13.0",
"description": "Flow types for SCM-Manager related Objects", "description": "Flow types for SCM-Manager related Objects",
"main": "src/index.ts", "main": "src/index.ts",
"files": [ "files": [

View File

@@ -1,10 +1,10 @@
{ {
"name": "@scm-manager/ui-webapp", "name": "@scm-manager/ui-webapp",
"version": "2.13.0-SNAPSHOT", "version": "2.13.0",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@scm-manager/ui-components": "^2.13.0-SNAPSHOT", "@scm-manager/ui-components": "^2.13.0",
"@scm-manager/ui-extensions": "^2.13.0-SNAPSHOT", "@scm-manager/ui-extensions": "^2.13.0",
"classnames": "^2.2.5", "classnames": "^2.2.5",
"history": "^4.10.1", "history": "^4.10.1",
"i18next": "^19.6.0", "i18next": "^19.6.0",
@@ -30,7 +30,7 @@
}, },
"devDependencies": { "devDependencies": {
"@scm-manager/jest-preset": "^2.12.4", "@scm-manager/jest-preset": "^2.12.4",
"@scm-manager/ui-tests": "^2.13.0-SNAPSHOT", "@scm-manager/ui-tests": "^2.13.0",
"@types/classnames": "^2.2.9", "@types/classnames": "^2.2.9",
"@types/enzyme": "^3.10.3", "@types/enzyme": "^3.10.3",
"@types/fetch-mock": "^7.3.1", "@types/fetch-mock": "^7.3.1",