Skip to content

Commit 2070613

Browse files
committed
feat: uploadOnly for cws
1 parent 083539e commit 2070613

10 files changed

+893
-1017
lines changed

keys.schema.json

+5
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,11 @@
7575
"description": "The target audience to publish to. Defaults to 'default'",
7676
"enum": ["default", "trustedTesters"],
7777
"default": "default"
78+
},
79+
"uploadOnly": {
80+
"type": "boolean",
81+
"description": "Only upload the extension, do not publish it. Defaults to false",
82+
"default": false
7883
}
7984
},
8085
"required": ["extId", "refreshToken", "clientId", "clientSecret"]

keys.template.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"clientId": "123",
55
"clientSecret": "123",
66
"refreshToken": "789",
7-
"extId": "abcd"
7+
"extId": "abcd",
8+
"uploadOnly": true
89
},
910
"firefox": {
1011
"extId": "aaaaaaa-aaaa-bbbb-cccc-dddddddddddd",

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
"vp": "pnpm --filter \"./packages/**\" --parallel -r exec pnpm version --commit-hooks false --git-tag-version false --workspaces-update"
1212
},
1313
"devDependencies": {
14-
"@plasmohq/prettier-plugin-sort-imports": "3.6.1",
15-
"esbuild": "0.17.0",
16-
"prettier": "2.8.3",
17-
"turbo": "1.7.0"
14+
"@plasmohq/prettier-plugin-sort-imports": "3.6.3",
15+
"esbuild": "0.17.14",
16+
"prettier": "2.8.7",
17+
"turbo": "1.8.8"
1818
},
1919
"packageManager": "[email protected]"
2020
}

packages/bms

packages/bpp/package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plasmo/bpp",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"private": true,
55
"description": "Browser Platform Publisher",
66
"main": "lib/main.js",
@@ -34,15 +34,15 @@
3434
"@plasmohq/bms": "workspace:*"
3535
},
3636
"devDependencies": {
37-
"@jest/globals": "29.3.1",
38-
"@plasmohq/prettier-plugin-sort-imports": "3.6.1",
39-
"@plasmohq/rps": "1.8.1",
40-
"@types/node": "18.11.18",
41-
"esbuild": "0.17.0",
42-
"jest": "29.3.1",
37+
"@jest/globals": "29.5.0",
38+
"@plasmohq/prettier-plugin-sort-imports": "3.6.3",
39+
"@plasmohq/rps": "1.8.4",
40+
"@types/node": "18.15.11",
41+
"esbuild": "0.17.14",
42+
"jest": "29.5.0",
4343
"js-yaml": "4.1.0",
44-
"prettier": "2.8.3",
44+
"prettier": "2.8.7",
4545
"ts-jest": "29.0.5",
46-
"typescript": "4.9.4"
46+
"typescript": "5.0.2"
4747
}
4848
}

packages/edge-addons-api

0 commit comments

Comments
 (0)