@theia/electron 1.57.1 → 1.58.0

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. 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@^3.0.0`](https://www.npmjs.com/package/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.57.1",
3
+ "version": "1.58.0",
4
4
  "description": "Theia - Electron utility package",
5
5
  "dependencies": {
6
6
  "electron-store": "^8.0.0",
7
- "fix-path": "^3.0.0",
7
+ "fix-path": "^4.0.0",
8
8
  "native-keymap": "^2.2.1"
9
9
  },
10
10
  "devDependencies": {
11
- "@theia/ext-scripts": "1.57.1",
12
- "@theia/re-exports": "1.57.1"
11
+ "@theia/ext-scripts": "1.58.0",
12
+ "@theia/re-exports": "1.58.0"
13
13
  },
14
14
  "peerDependencies": {
15
15
  "electron": "30.1.2"
@@ -48,17 +48,11 @@
48
48
  "shared"
49
49
  ],
50
50
  "scripts": {
51
- "generate-theia-re-exports": "theia-re-exports generate && theia-re-exports template README_TEMPLATE.md > README.md",
52
- "prepare": "yarn -s generate-theia-re-exports",
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": "6e84ac8d37bbeb45f999894e80cb92a761c1ee1e"
57
+ "gitHead": "6594f32b9727aea20d88934bf386dee06d08fa5e"
64
58
  }