Browse Source

reoganize package versions and npm scripts

Yuki Takei 1 year ago
parent
commit
838863b48e

+ 2 - 2
package.json

@@ -2,6 +2,8 @@
   "name": "growi",
   "name": "growi",
   "version": "7.0.6-RC.0",
   "version": "7.0.6-RC.0",
   "description": "Team collaboration software using markdown",
   "description": "Team collaboration software using markdown",
+  "license": "MIT",
+  "private": "true",
   "tags": [
   "tags": [
     "wiki",
     "wiki",
     "communication",
     "communication",
@@ -10,7 +12,6 @@
   ],
   ],
   "author": "Yuki Takei <yuki@weseek.co.jp>",
   "author": "Yuki Takei <yuki@weseek.co.jp>",
   "contributors": [],
   "contributors": [],
-  "license": "MIT",
   "homepage": "https://growi.org",
   "homepage": "https://growi.org",
   "repository": {
   "repository": {
     "type": "git",
     "type": "git",
@@ -19,7 +20,6 @@
   "bugs": {
   "bugs": {
     "url": "https://github.com/weseek/growi/issues"
     "url": "https://github.com/weseek/growi/issues"
   },
   },
-  "private": true,
   "workspaces": {
   "workspaces": {
     "packages": [
     "packages": [
       "packages/*",
       "packages/*",

+ 2 - 3
packages/core/package.json

@@ -1,6 +1,6 @@
 {
 {
   "name": "@growi/core",
   "name": "@growi/core",
-  "version": "7.0.6-RC.0",
+  "version": "0.9.0",
   "description": "GROWI Core Libraries",
   "description": "GROWI Core Libraries",
   "license": "MIT",
   "license": "MIT",
   "keywords": [
   "keywords": [
@@ -61,8 +61,7 @@
     "lint:js": "yarn eslint **/*.{js,ts}",
     "lint:js": "yarn eslint **/*.{js,ts}",
     "lint:typecheck": "tsc",
     "lint:typecheck": "tsc",
     "lint": "npm-run-all -p lint:*",
     "lint": "npm-run-all -p lint:*",
-    "test": "vitest run --coverage",
-    "version": "yarn version --no-git-tag-version --preid=RC"
+    "test": "vitest run --coverage"
   },
   },
   "// comments for dependencies": {
   "// comments for dependencies": {
     "escape-string-regexp": "5.0.0 or above exports only ESM"
     "escape-string-regexp": "5.0.0 or above exports only ESM"

+ 3 - 1
packages/custom-icons/package.json

@@ -1,7 +1,9 @@
 {
 {
   "name": "@growi/custom-icons",
   "name": "@growi/custom-icons",
-  "version": "7.0.0-RC.0",
+  "version": "1.0.0",
+  "description": "Custom icons builder project for GROWI",
   "license": "MIT",
   "license": "MIT",
+  "private": "true",
   "scripts": {
   "scripts": {
     "build": "svgtofont --sources ./svg --output ./dist",
     "build": "svgtofont --sources ./svg --output ./dist",
     "dev": "svgtofont --sources ./svg --output ./dist"
     "dev": "svgtofont --sources ./svg --output ./dist"

+ 4 - 3
packages/editor/package.json

@@ -1,7 +1,9 @@
 {
 {
   "name": "@growi/editor",
   "name": "@growi/editor",
-  "version": "7.0.6-RC.0",
+  "version": "1.0.0",
+  "description": "A markdown editor for GROWI",
   "license": "MIT",
   "license": "MIT",
+  "private": "true",
   "type": "module",
   "type": "module",
   "module": "dist/index.js",
   "module": "dist/index.js",
   "types": "dist/index.d.ts",
   "types": "dist/index.d.ts",
@@ -13,8 +15,7 @@
     "serve": "vite",
     "serve": "vite",
     "lint:js": "yarn eslint **/*.{js,ts}",
     "lint:js": "yarn eslint **/*.{js,ts}",
     "lint:typecheck": "tsc",
     "lint:typecheck": "tsc",
-    "lint": "npm-run-all -p lint:*",
-    "version": "yarn version --no-git-tag-version --preid=RC"
+    "lint": "npm-run-all -p lint:*"
   },
   },
   "dependencies": {
   "dependencies": {
     "markdown-table": "^3.0.3",
     "markdown-table": "^3.0.3",

+ 2 - 1
packages/pluginkit/package.json

@@ -1,6 +1,7 @@
 {
 {
   "name": "@growi/pluginkit",
   "name": "@growi/pluginkit",
-  "version": "0.1.0",
+  "version": "0.9.0",
+  "description": "Plugin kit for GROWI",
   "license": "MIT",
   "license": "MIT",
   "main": "dist/index.cjs",
   "main": "dist/index.cjs",
   "module": "dist/index.js",
   "module": "dist/index.js",

+ 4 - 4
packages/presentation/package.json

@@ -1,8 +1,9 @@
 {
 {
   "name": "@growi/presentation",
   "name": "@growi/presentation",
-  "version": "7.0.6-RC.0",
-  "description": "GROWI plugin for presentation",
+  "version": "1.0.0",
+  "description": "A package for GROWI presentation feature",
   "license": "MIT",
   "license": "MIT",
+  "private": "true",
   "keywords": [
   "keywords": [
     "growi",
     "growi",
     "growi-plugin"
     "growi-plugin"
@@ -32,8 +33,7 @@
     "lint:js": "yarn eslint **/*.{js,jsx,ts,tsx}",
     "lint:js": "yarn eslint **/*.{js,jsx,ts,tsx}",
     "lint:styles": "stylelint --allow-empty-input src/**/*.scss src/**/*.css",
     "lint:styles": "stylelint --allow-empty-input src/**/*.scss src/**/*.css",
     "lint:typecheck": "tsc",
     "lint:typecheck": "tsc",
-    "lint": "run-p lint:*",
-    "version": "yarn version --no-git-tag-version --preid=RC"
+    "lint": "run-p lint:*"
   },
   },
   "dependencies": {
   "dependencies": {
     "@growi/core": "link:../core"
     "@growi/core": "link:../core"

+ 5 - 3
packages/preset-templates/package.json

@@ -1,9 +1,11 @@
 {
 {
   "name": "@growi/preset-templates",
   "name": "@growi/preset-templates",
-  "version": "7.0.6-RC.0",
+  "version": "1.0.0",
+  "description": "GROWI preset templates",
+  "license": "MIT",
+  "private": "true",
   "scripts": {
   "scripts": {
-    "test": "vitest run",
-    "version": "yarn version --no-git-tag-version --preid=RC"
+    "test": "vitest run"
   },
   },
   "dependencies": {},
   "dependencies": {},
   "devDependencies": {
   "devDependencies": {

+ 3 - 3
packages/preset-themes/package.json

@@ -1,8 +1,9 @@
 {
 {
   "name": "@growi/preset-themes",
   "name": "@growi/preset-themes",
+  "version": "1.0.0",
   "description": "GROWI preset themes",
   "description": "GROWI preset themes",
-  "version": "7.0.6-RC.0",
   "license": "MIT",
   "license": "MIT",
+  "private": "true",
   "main": "dist/libs/preset-themes.umd.js",
   "main": "dist/libs/preset-themes.umd.js",
   "module": "dist/libs/preset-themes.mjs",
   "module": "dist/libs/preset-themes.mjs",
   "types": "dist/libs/index.d.ts",
   "types": "dist/libs/index.d.ts",
@@ -24,8 +25,7 @@
     "lint:styles": "stylelint src/**/*.scss",
     "lint:styles": "stylelint src/**/*.scss",
     "lint:typecheck": "tsc",
     "lint:typecheck": "tsc",
     "lint": "run-p lint:*",
     "lint": "run-p lint:*",
-    "preview": "vite preview",
-    "version": "yarn version --no-git-tag-version --preid=RC"
+    "preview": "vite preview"
   },
   },
   "dependencies": {},
   "dependencies": {},
   "devDependencies": {
   "devDependencies": {

+ 4 - 4
packages/remark-attachment-refs/package.json

@@ -1,8 +1,9 @@
 {
 {
   "name": "@growi/remark-attachment-refs",
   "name": "@growi/remark-attachment-refs",
-  "version": "7.0.6-RC.0",
-  "description": "GROWI Plugin to add ref/refimg/refs/refsimg tags",
+  "version": "1.0.0",
+  "description": "Remark plugin to add ref/refimg/refs/refsimg tags",
   "license": "MIT",
   "license": "MIT",
+  "private": "true",
   "keywords": [
   "keywords": [
     "growi",
     "growi",
     "growi-plugin"
     "growi-plugin"
@@ -40,8 +41,7 @@
     "lint:styles": "stylelint src/**/*.scss src/**/*.css",
     "lint:styles": "stylelint src/**/*.scss src/**/*.css",
     "lint:typecheck": "tsc",
     "lint:typecheck": "tsc",
     "lint": "run-p lint:*",
     "lint": "run-p lint:*",
-    "test": "",
-    "version": "yarn version --no-git-tag-version --preid=RC"
+    "test": ""
   },
   },
   "dependencies": {
   "dependencies": {
     "@growi/core": "link:../core",
     "@growi/core": "link:../core",

+ 4 - 4
packages/remark-drawio/package.json

@@ -1,8 +1,9 @@
 {
 {
   "name": "@growi/remark-drawio",
   "name": "@growi/remark-drawio",
-  "version": "7.0.6-RC.0",
-  "description": "remark plugin to draw diagrams with draw.io (diagrams.net)",
+  "version": "1.0.0",
+  "description": "Remark plugin to draw diagrams with draw.io (diagrams.net)",
   "license": "MIT",
   "license": "MIT",
+  "private": "true",
   "keywords": [
   "keywords": [
     "unified",
     "unified",
     "remark",
     "remark",
@@ -27,8 +28,7 @@
     "lint:js": "yarn eslint **/*.{js,jsx,ts,tsx}",
     "lint:js": "yarn eslint **/*.{js,jsx,ts,tsx}",
     "lint:styles": "stylelint --allow-empty-input src/**/*.scss src/**/*.css",
     "lint:styles": "stylelint --allow-empty-input src/**/*.scss src/**/*.css",
     "lint:typecheck": "tsc",
     "lint:typecheck": "tsc",
-    "lint": "run-p lint:*",
-    "version": "yarn version --no-git-tag-version --preid=RC"
+    "lint": "run-p lint:*"
   },
   },
   "dependencies": {},
   "dependencies": {},
   "devDependencies": {
   "devDependencies": {

+ 3 - 4
packages/remark-growi-directive/package.json

@@ -1,7 +1,7 @@
 {
 {
   "name": "@growi/remark-growi-directive",
   "name": "@growi/remark-growi-directive",
-  "version": "7.0.6-RC.0",
-  "description": "remark plugin to support GROWI plugin (forked from remark-directive@2.0.1)",
+  "version": "0.9.0",
+  "description": "Remark plugin to support GROWI original directive (forked from remark-directive@2.0.1)",
   "license": "MIT",
   "license": "MIT",
   "keywords": [
   "keywords": [
     "unified",
     "unified",
@@ -24,8 +24,7 @@
     "test-api": "tape --conditions development test/**.test.js",
     "test-api": "tape --conditions development test/**.test.js",
     "test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api",
     "test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api",
     "lint": "yarn eslint \"**/*.{cjs, js,jsx,ts,tsx}\"",
     "lint": "yarn eslint \"**/*.{cjs, js,jsx,ts,tsx}\"",
-    "lint:fix": "yarn eslint \"**/*.{cjs, js,jsx,ts,tsx}\" --fix",
-    "version": "yarn version --no-git-tag-version --preid=RC"
+    "lint:fix": "yarn eslint \"**/*.{cjs, js,jsx,ts,tsx}\" --fix"
   },
   },
   "dependencies": {
   "dependencies": {
     "@types/mdast": "^3.0.0",
     "@types/mdast": "^3.0.0",

+ 4 - 4
packages/remark-lsx/package.json

@@ -1,8 +1,9 @@
 {
 {
   "name": "@growi/remark-lsx",
   "name": "@growi/remark-lsx",
-  "version": "7.0.6-RC.0",
-  "description": "GROWI plugin to list pages",
+  "version": "1.0.0",
+  "description": "Remark plugin to list pages",
   "license": "MIT",
   "license": "MIT",
+  "private": "true",
   "keywords": [
   "keywords": [
     "growi",
     "growi",
     "growi-plugin"
     "growi-plugin"
@@ -26,8 +27,7 @@
     "lint:styles": "stylelint --allow-empty-input src/**/*.scss src/**/*.css",
     "lint:styles": "stylelint --allow-empty-input src/**/*.scss src/**/*.css",
     "lint:typecheck": "tsc",
     "lint:typecheck": "tsc",
     "lint": "run-p lint:*",
     "lint": "run-p lint:*",
-    "test": "vitest run --coverage",
-    "version": "yarn version --no-git-tag-version --preid=RC"
+    "test": "vitest run --coverage"
   },
   },
   "// comments for dependencies": {
   "// comments for dependencies": {
     "escape-string-regexp": "5.0.0 or above exports only ESM"
     "escape-string-regexp": "5.0.0 or above exports only ESM"

+ 4 - 3
packages/slack/package.json

@@ -1,7 +1,9 @@
 {
 {
   "name": "@growi/slack",
   "name": "@growi/slack",
-  "version": "7.0.6-RC.0",
+  "version": "1.0.0",
+  "description": "Slack integration libraries for GROWI",
   "license": "MIT",
   "license": "MIT",
+  "private": "true",
   "type": "module",
   "type": "module",
   "main": "dist/index.cjs",
   "main": "dist/index.cjs",
   "module": "dist/index.js",
   "module": "dist/index.js",
@@ -44,8 +46,7 @@
     "lint:js": "yarn eslint **/*.{js,ts}",
     "lint:js": "yarn eslint **/*.{js,ts}",
     "lint:typecheck": "tsc",
     "lint:typecheck": "tsc",
     "lint": "npm-run-all -p lint:*",
     "lint": "npm-run-all -p lint:*",
-    "test": "vitest run --coverage",
-    "version": "yarn version --no-git-tag-version --preid=RC"
+    "test": "vitest run --coverage"
   },
   },
   "dependencies": {
   "dependencies": {
     "@slack/oauth": "^2.0.1",
     "@slack/oauth": "^2.0.1",

+ 3 - 3
packages/ui/package.json

@@ -1,8 +1,9 @@
 {
 {
   "name": "@growi/ui",
   "name": "@growi/ui",
-  "version": "7.0.6-RC.0",
+  "version": "1.0.0",
   "description": "GROWI UI Libraries",
   "description": "GROWI UI Libraries",
   "license": "MIT",
   "license": "MIT",
+  "private": "true",
   "keywords": [
   "keywords": [
     "growi"
     "growi"
   ],
   ],
@@ -33,8 +34,7 @@
     "watch": "yarn dev -w --emptyOutDir=false",
     "watch": "yarn dev -w --emptyOutDir=false",
     "lint:js": "yarn eslint **/*.{js,ts}",
     "lint:js": "yarn eslint **/*.{js,ts}",
     "lint:typecheck": "tsc",
     "lint:typecheck": "tsc",
-    "lint": "npm-run-all -p lint:*",
-    "version": "yarn version --no-git-tag-version --preid=RC"
+    "lint": "npm-run-all -p lint:*"
   },
   },
   "dependencies": {
   "dependencies": {
     "@growi/core": "link:../core"
     "@growi/core": "link:../core"

+ 17 - 50
yarn.lock

@@ -1854,40 +1854,40 @@
     xdg-basedir "^4.0.0"
     xdg-basedir "^4.0.0"
 
 
 "@growi/core@link:packages/core":
 "@growi/core@link:packages/core":
-  version "7.0.6-RC.0"
+  version "0.9.0"
   dependencies:
   dependencies:
     bson-objectid "^2.0.4"
     bson-objectid "^2.0.4"
     escape-string-regexp "^4.0.0"
     escape-string-regexp "^4.0.0"
 
 
 "@growi/custom-icons@link:packages/custom-icons":
 "@growi/custom-icons@link:packages/custom-icons":
-  version "7.0.0-RC.0"
+  version "1.0.0"
 
 
 "@growi/editor@link:packages/editor":
 "@growi/editor@link:packages/editor":
-  version "7.0.6-RC.0"
+  version "1.0.0"
   dependencies:
   dependencies:
     markdown-table "^3.0.3"
     markdown-table "^3.0.3"
     react "^18.2.0"
     react "^18.2.0"
     react-dom "^18.2.0"
     react-dom "^18.2.0"
 
 
 "@growi/pluginkit@link:packages/pluginkit":
 "@growi/pluginkit@link:packages/pluginkit":
-  version "0.1.0"
+  version "0.9.0"
   dependencies:
   dependencies:
     "@growi/core" "link:packages/core"
     "@growi/core" "link:packages/core"
     extensible-custom-error "^0.0.7"
     extensible-custom-error "^0.0.7"
 
 
 "@growi/presentation@link:packages/presentation":
 "@growi/presentation@link:packages/presentation":
-  version "7.0.6-RC.0"
+  version "1.0.0"
   dependencies:
   dependencies:
     "@growi/core" "link:packages/core"
     "@growi/core" "link:packages/core"
 
 
 "@growi/preset-templates@link:packages/preset-templates":
 "@growi/preset-templates@link:packages/preset-templates":
-  version "7.0.6-RC.0"
+  version "1.0.0"
 
 
 "@growi/preset-themes@link:packages/preset-themes":
 "@growi/preset-themes@link:packages/preset-themes":
-  version "7.0.6-RC.0"
+  version "1.0.0"
 
 
 "@growi/remark-attachment-refs@link:packages/remark-attachment-refs":
 "@growi/remark-attachment-refs@link:packages/remark-attachment-refs":
-  version "7.0.6-RC.0"
+  version "1.0.0"
   dependencies:
   dependencies:
     "@growi/core" "link:packages/core"
     "@growi/core" "link:packages/core"
     "@growi/remark-growi-directive" "link:packages/remark-growi-directive"
     "@growi/remark-growi-directive" "link:packages/remark-growi-directive"
@@ -1900,10 +1900,10 @@
     universal-bunyan "^0.9.2"
     universal-bunyan "^0.9.2"
 
 
 "@growi/remark-drawio@link:packages/remark-drawio":
 "@growi/remark-drawio@link:packages/remark-drawio":
-  version "7.0.6-RC.0"
+  version "1.0.0"
 
 
 "@growi/remark-growi-directive@link:packages/remark-growi-directive":
 "@growi/remark-growi-directive@link:packages/remark-growi-directive":
-  version "7.0.6-RC.0"
+  version "0.9.0"
   dependencies:
   dependencies:
     "@types/mdast" "^3.0.0"
     "@types/mdast" "^3.0.0"
     "@types/unist" "^2.0.0"
     "@types/unist" "^2.0.0"
@@ -1920,7 +1920,7 @@
     uvu "^0.5.0"
     uvu "^0.5.0"
 
 
 "@growi/remark-lsx@link:packages/remark-lsx":
 "@growi/remark-lsx@link:packages/remark-lsx":
-  version "7.0.6-RC.0"
+  version "1.0.0"
   dependencies:
   dependencies:
     "@growi/core" "link:packages/core"
     "@growi/core" "link:packages/core"
     "@growi/remark-growi-directive" "link:packages/remark-growi-directive"
     "@growi/remark-growi-directive" "link:packages/remark-growi-directive"
@@ -1932,7 +1932,7 @@
     swr "^2.2.2"
     swr "^2.2.2"
 
 
 "@growi/slack@link:packages/slack":
 "@growi/slack@link:packages/slack":
-  version "7.0.6-RC.0"
+  version "1.0.0"
   dependencies:
   dependencies:
     "@slack/oauth" "^2.0.1"
     "@slack/oauth" "^2.0.1"
     "@slack/web-api" "^6.2.4"
     "@slack/web-api" "^6.2.4"
@@ -1951,7 +1951,7 @@
     url-join "^4.0.0"
     url-join "^4.0.0"
 
 
 "@growi/ui@link:packages/ui":
 "@growi/ui@link:packages/ui":
-  version "7.0.6-RC.0"
+  version "1.0.0"
   dependencies:
   dependencies:
     "@growi/core" "link:packages/core"
     "@growi/core" "link:packages/core"
 
 
@@ -14465,7 +14465,7 @@ postcss-scss@^4.0.3:
   resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-4.0.3.tgz#36c23c19a804274e722e83a54d20b838ab4767ac"
   resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-4.0.3.tgz#36c23c19a804274e722e83a54d20b838ab4767ac"
   integrity sha512-j4KxzWovfdHsyxwl1BxkUal/O4uirvHgdzMKS1aWJBAV0qh2qj5qAZqpeBfVUYGWv+4iK9Az7SPyZ4fyNju1uA==
   integrity sha512-j4KxzWovfdHsyxwl1BxkUal/O4uirvHgdzMKS1aWJBAV0qh2qj5qAZqpeBfVUYGWv+4iK9Az7SPyZ4fyNju1uA==
 
 
-postcss-selector-parser@^6.0.13:
+postcss-selector-parser@^6.0.13, postcss-selector-parser@^6.0.7:
   version "6.0.16"
   version "6.0.16"
   resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz#3b88b9f5c5abd989ef4e2fc9ec8eedd34b20fb04"
   resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz#3b88b9f5c5abd989ef4e2fc9ec8eedd34b20fb04"
   integrity sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==
   integrity sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==
@@ -14473,14 +14473,6 @@ postcss-selector-parser@^6.0.13:
     cssesc "^3.0.0"
     cssesc "^3.0.0"
     util-deprecate "^1.0.2"
     util-deprecate "^1.0.2"
 
 
-postcss-selector-parser@^6.0.7:
-  version "6.0.11"
-  resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz#2e41dc39b7ad74046e1615185185cd0b17d0c8dc"
-  integrity sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==
-  dependencies:
-    cssesc "^3.0.0"
-    util-deprecate "^1.0.2"
-
 postcss-sorting@^7.0.1:
 postcss-sorting@^7.0.1:
   version "7.0.1"
   version "7.0.1"
   resolved "https://registry.yarnpkg.com/postcss-sorting/-/postcss-sorting-7.0.1.tgz#923b5268451cf2d93ebf8835e17a6537757049a5"
   resolved "https://registry.yarnpkg.com/postcss-sorting/-/postcss-sorting-7.0.1.tgz#923b5268451cf2d93ebf8835e17a6537757049a5"
@@ -16689,7 +16681,7 @@ string-template@>=1.0.0:
   resolved "https://registry.yarnpkg.com/string-template/-/string-template-1.0.0.tgz#9e9f2233dc00f218718ec379a28a5673ecca8b96"
   resolved "https://registry.yarnpkg.com/string-template/-/string-template-1.0.0.tgz#9e9f2233dc00f218718ec379a28a5673ecca8b96"
   integrity sha1-np8iM9wA8hhxjsN5oopWc+zKi5Y=
   integrity sha1-np8iM9wA8hhxjsN5oopWc+zKi5Y=
 
 
-"string-width-cjs@npm:string-width@^4.2.0":
+"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
   version "4.2.3"
   version "4.2.3"
   resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
   resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
   integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
   integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -16707,15 +16699,6 @@ string-width@=4.2.2:
     is-fullwidth-code-point "^3.0.0"
     is-fullwidth-code-point "^3.0.0"
     strip-ansi "^6.0.0"
     strip-ansi "^6.0.0"
 
 
-"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
-  version "4.2.3"
-  resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
-  integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
-  dependencies:
-    emoji-regex "^8.0.0"
-    is-fullwidth-code-point "^3.0.0"
-    strip-ansi "^6.0.1"
-
 string-width@^5.0.1, string-width@^5.1.2:
 string-width@^5.0.1, string-width@^5.1.2:
   version "5.1.2"
   version "5.1.2"
   resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794"
   resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794"
@@ -16798,7 +16781,7 @@ stringify-entities@^4.0.0:
     character-entities-html4 "^2.0.0"
     character-entities-html4 "^2.0.0"
     character-entities-legacy "^3.0.0"
     character-entities-legacy "^3.0.0"
 
 
-"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
+"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
   version "6.0.1"
   version "6.0.1"
   resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
   resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
   integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
   integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
@@ -16812,13 +16795,6 @@ strip-ansi@^3.0.0:
   dependencies:
   dependencies:
     ansi-regex "^2.0.0"
     ansi-regex "^2.0.0"
 
 
-strip-ansi@^6.0.0, strip-ansi@^6.0.1:
-  version "6.0.1"
-  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
-  integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
-  dependencies:
-    ansi-regex "^5.0.1"
-
 strip-ansi@^7.0.1:
 strip-ansi@^7.0.1:
   version "7.1.0"
   version "7.1.0"
   resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45"
   resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45"
@@ -18538,7 +18514,7 @@ word-wrap@^1.2.3:
   resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
   resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
   integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
   integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
 
 
-"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
+"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
   version "7.0.0"
   version "7.0.0"
   resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
   resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
   integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
   integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
@@ -18556,15 +18532,6 @@ wrap-ansi@^6.2.0:
     string-width "^4.1.0"
     string-width "^4.1.0"
     strip-ansi "^6.0.0"
     strip-ansi "^6.0.0"
 
 
-wrap-ansi@^7.0.0:
-  version "7.0.0"
-  resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
-  integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
-  dependencies:
-    ansi-styles "^4.0.0"
-    string-width "^4.1.0"
-    strip-ansi "^6.0.0"
-
 wrap-ansi@^8.1.0:
 wrap-ansi@^8.1.0:
   version "8.1.0"
   version "8.1.0"
   resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"
   resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"