@theia/core 1.21.0-next.32 → 1.21.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 +3 -3
  2. package/package.json +7 -5
package/README.md CHANGED
@@ -78,9 +78,9 @@ export class SomeClass {
78
78
  - [`@phosphor/signaling@1`](https://www.npmjs.com/package/@phosphor/signaling)
79
79
  - [`@phosphor/virtualdom@1`](https://www.npmjs.com/package/@phosphor/virtualdom)
80
80
  - [`@phosphor/widgets@1`](https://www.npmjs.com/package/@phosphor/widgets)
81
- - [`@theia/application-package@1.20.0`](https://www.npmjs.com/package/@theia/application-package)
82
- - [`@theia/application-package/lib/api@1.20.0`](https://www.npmjs.com/package/@theia/application-package)
83
- - [`@theia/application-package/lib/environment@1.20.0`](https://www.npmjs.com/package/@theia/application-package)
81
+ - [`@theia/application-package@1.21.0`](https://www.npmjs.com/package/@theia/application-package)
82
+ - [`@theia/application-package/lib/api@1.21.0`](https://www.npmjs.com/package/@theia/application-package)
83
+ - [`@theia/application-package/lib/environment@1.21.0`](https://www.npmjs.com/package/@theia/application-package)
84
84
  - [`dompurify@^2.2.9`](https://www.npmjs.com/package/dompurify)
85
85
  - [`electron@^9.0.2`](https://www.npmjs.com/package/electron)
86
86
  - [`express@^4.16.3`](https://www.npmjs.com/package/express)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/core",
3
- "version": "1.21.0-next.32+6175dfa0a4b",
3
+ "version": "1.21.0",
4
4
  "description": "Theia is a cloud & desktop IDE framework implemented in TypeScript.",
5
5
  "main": "lib/common/index.js",
6
6
  "typings": "lib/common/index.d.ts",
@@ -17,7 +17,7 @@
17
17
  "@phosphor/virtualdom": "1",
18
18
  "@phosphor/widgets": "1",
19
19
  "@primer/octicons-react": "^9.0.0",
20
- "@theia/application-package": "1.21.0-next.32+6175dfa0a4b",
20
+ "@theia/application-package": "1.21.0",
21
21
  "@types/body-parser": "^1.16.4",
22
22
  "@types/cookie": "^0.3.3",
23
23
  "@types/dompurify": "^2.2.2",
@@ -164,17 +164,19 @@
164
164
  "clean": "theiaext clean",
165
165
  "compile": "theiaext compile",
166
166
  "generate-layout": "electron ./scripts/generate-layout",
167
+ "generate-shared": "node scripts/generate-shared.js",
167
168
  "lint": "theiaext lint",
168
- "prepare": "node scripts/generate-shared.js",
169
+ "prepare": "yarn generate-shared",
169
170
  "test": "theiaext test",
171
+ "version": "yarn generate-shared",
170
172
  "watch": "theiaext watch"
171
173
  },
172
174
  "devDependencies": {
173
- "@theia/ext-scripts": "1.20.0",
175
+ "@theia/ext-scripts": "1.21.0",
174
176
  "minimist": "^1.2.0"
175
177
  },
176
178
  "nyc": {
177
179
  "extends": "../../configs/nyc.json"
178
180
  },
179
- "gitHead": "6175dfa0a4bcf58b51105e026381ca83f1cdc000"
181
+ "gitHead": "c028633b08a9ef11811f60d6314df72a7fa8468b"
180
182
  }