@theia/electron 1.57.1 → 1.58.1
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/README.md +1 -1
- package/package.json +7 -13
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ The `@theia/electron` extension bundles all Electron-specific dependencies and c
|
|
|
20
20
|
- `native-keymap` (from [`native-keymap@^2.2.1`](https://www.npmjs.com/package/native-keymap))
|
|
21
21
|
- `electron` (from [`electron@30.1.2`](https://www.npmjs.com/package/electron/v/30.1.2))
|
|
22
22
|
- `electron-store` (from [`electron-store@^8.0.0`](https://www.npmjs.com/package/electron-store))
|
|
23
|
-
- `fix-path` (from [`fix-path@^
|
|
23
|
+
- `fix-path` (from [`fix-path@^4.0.0`](https://www.npmjs.com/package/fix-path))
|
|
24
24
|
|
|
25
25
|
## Additional Information
|
|
26
26
|
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/electron",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.58.1",
|
|
4
4
|
"description": "Theia - Electron utility package",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"electron-store": "^8.0.0",
|
|
7
|
-
"fix-path": "^
|
|
7
|
+
"fix-path": "^4.0.0",
|
|
8
8
|
"native-keymap": "^2.2.1"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@theia/ext-scripts": "1.
|
|
12
|
-
"@theia/re-exports": "1.
|
|
11
|
+
"@theia/ext-scripts": "1.58.1",
|
|
12
|
+
"@theia/re-exports": "1.58.1"
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
15
|
"electron": "30.1.2"
|
|
@@ -48,17 +48,11 @@
|
|
|
48
48
|
"shared"
|
|
49
49
|
],
|
|
50
50
|
"scripts": {
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"lint": "echo skip || theiaext lint",
|
|
54
|
-
"build": "echo skip || theiaext build",
|
|
55
|
-
"watch": "echo skip || theiaext watch",
|
|
56
|
-
"clean": "echo skip || theiaext clean",
|
|
57
|
-
"test": "echo skip || theiaext test",
|
|
58
|
-
"version": "yarn -s generate-theia-re-exports"
|
|
51
|
+
"afterInstall": "npm run generate-theia-re-exports",
|
|
52
|
+
"generate-theia-re-exports": "theia-re-exports generate && theia-re-exports template README_TEMPLATE.md > README.md"
|
|
59
53
|
},
|
|
60
54
|
"nyc": {
|
|
61
55
|
"extends": "../../configs/nyc.json"
|
|
62
56
|
},
|
|
63
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "39f65022e1a40b95e4c1972d6cd3c7bf896187ce"
|
|
64
58
|
}
|