@gitkraken/gitkraken-components 13.0.0-vnext.19 → 13.0.0-vnext.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitkraken/gitkraken-components",
3
- "version": "13.0.0-vnext.19",
3
+ "version": "13.0.0-vnext.26",
4
4
  "description": "GitKraken React components shared between the app and GitLens",
5
5
  "engines": {
6
6
  "node": ">= 22.12.0",
@@ -23,12 +23,12 @@
23
23
  },
24
24
  "peerDependencies": {
25
25
  "dragula": "3.7.3",
26
- "react": "19.2.0",
27
- "react-dom": "19.2.0"
26
+ "react": "19.2.3",
27
+ "react-dom": "19.2.3"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@eamodio/eslint-lite-webpack-plugin": "0.3.4",
31
- "@eslint/compat": "1.4.1",
31
+ "@eslint/compat": "2.0.0",
32
32
  "@eslint/js": "9.39.1",
33
33
  "@swc/core": "1.15.1",
34
34
  "@types/chai": "4.3.20",
@@ -36,18 +36,18 @@
36
36
  "@types/dragula": "3.7.5",
37
37
  "@types/mocha": "10.0.10",
38
38
  "@types/node": "20.16.15",
39
- "@types/react": "19.2.5",
39
+ "@types/react": "19.2.7",
40
40
  "@types/react-dom": "19.2.3",
41
41
  "@types/react-dragula": "1.1.3",
42
42
  "@types/react-onclickoutside": "6.7.10",
43
43
  "@types/react-virtualized": "^9.22.3",
44
- "@typescript-eslint/parser": "8.46.3",
44
+ "@typescript-eslint/parser": "8.47.0",
45
45
  "chai": "4.5.0",
46
46
  "chai-spies": "1.1.0",
47
47
  "css-loader": "7.1.2",
48
48
  "css-minimizer-webpack-plugin": "7.0.2",
49
49
  "cssnano-preset-advanced": "7.0.10",
50
- "esbuild": "0.27.0",
50
+ "esbuild": "0.27.1",
51
51
  "esbuild-loader": "4.4.0",
52
52
  "eslint": "9.39.1",
53
53
  "eslint-import-resolver-typescript": "4.4.4",
@@ -71,17 +71,22 @@
71
71
  "ts-loader": "9.5.4",
72
72
  "ts-node": "10.9.2",
73
73
  "typescript": "5.9.3",
74
- "typescript-eslint": "8.46.3",
75
- "webpack": "5.102.1",
76
- "webpack-bundle-analyzer": "4.10.2",
74
+ "typescript-eslint": "8.47.0",
75
+ "webpack": "5.103.0",
76
+ "webpack-bundle-analyzer": "5.0.1",
77
77
  "webpack-cli": "6.0.1",
78
78
  "webpack-remove-empty-scripts": "1.1.1"
79
79
  },
80
+ "publishConfig": {
81
+ "provenance": false
82
+ },
80
83
  "scripts": {
81
84
  "analyze:bundle": "webpack --mode production --env analyzeBundle",
82
85
  "clean": "git clean -xdff -e /.vscode/",
86
+ "clean:lint": "pnpx rimraf .eslintcache",
83
87
  "lint": "eslint",
84
88
  "build": "webpack --mode production --env debug",
89
+ "build:quick": "webpack --mode production --env debug --env quick",
85
90
  "build:types": "tsc --emitDeclarationOnly --incremental false",
86
91
  "bundle": "webpack --mode production",
87
92
  "prep-release": "node ./scripts/prep-release.mjs",
@@ -90,6 +95,7 @@
90
95
  "test": "mocha --config .mocharc.js",
91
96
  "update-licenses": "node ./scripts/generateLicenses.mjs",
92
97
  "verifyAndCompile": "pnpm lint && pnpm test && pnpm build",
93
- "watch": "webpack --watch --mode production --env debug"
98
+ "watch": "webpack --watch --mode production --env debug",
99
+ "watch:quick": "webpack --watch --mode production --env debug --env quick"
94
100
  }
95
101
  }