glass-easel-devtools-extension 0.12.1 → 0.13.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.
package/README.md CHANGED
@@ -14,3 +14,12 @@ In the project root directory (glass-easel-devtools):
14
14
  2. run `npm run pack-extension` to build.
15
15
 
16
16
  The final product can be found in `extension/pkg` directory.
17
+
18
+ ## Publish
19
+
20
+ The extension packages should be publish manually (the `publish.js` does not do this).
21
+
22
+ Modify the version in [Chrome Manifest](./chrome.manifest.json) and [Firefox Manifest](./firefox.manifest.json), then run `npm run pack-extension` in the project root.
23
+
24
+ * For Chrome extension, go to [this page](https://chrome.google.com/webstore/devconsole), find the published extension, and upload the new `pkg/glass-easel-devtools-chrome.zip`.
25
+ * For Firefox extension, go to [this page](https://addons.mozilla.org/developers/addons), find the published extension, and upload the new `pkg/glass-easel-devtools-chrome.zip`.
@@ -2,7 +2,7 @@
2
2
  "description": "DevTools extension for developing glass-easel applications",
3
3
  "manifest_version": 3,
4
4
  "name": "glass-easel DevTools",
5
- "version": "0.12.0",
5
+ "version": "0.12.1",
6
6
  "homepage_url": "https://github.com/wechat-miniprogram/glass-easel-devtools",
7
7
  "icons": {
8
8
  "16": "icons/glass-easel-16.png",
@@ -2,7 +2,7 @@
2
2
  "description": "DevTools extension for developing glass-easel applications",
3
3
  "manifest_version": 3,
4
4
  "name": "glass-easel DevTools",
5
- "version": "0.12.0",
5
+ "version": "0.12.1",
6
6
  "homepage_url": "https://github.com/wechat-miniprogram/glass-easel-devtools",
7
7
  "icons": {
8
8
  "16": "icons/glass-easel-16.png",
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "glass-easel-devtools-extension",
3
- "version": "0.12.1",
3
+ "version": "0.13.0",
4
4
  "main": "src/utils.ts",
5
5
  "dependencies": {
6
- "glass-easel": ">=0.12.0",
7
- "glass-easel-devtools-agent": "0.12.1",
8
- "glass-easel-devtools-panel": "0.12.1"
6
+ "glass-easel": ">=0.13.0",
7
+ "glass-easel-devtools-agent": "0.13.0",
8
+ "glass-easel-devtools-panel": "0.13.0"
9
9
  },
10
10
  "devDependencies": {
11
11
  "archiver": "^7.0.1",