Skip to content

Commit d87d4a1

Browse files
authored
fix(compatibility): chasing chrome webstore approval (#330)
* fix(compatibility): remove "tabs" permission * fix(compatibility): set minimum browser reqs * fix(compatibility): bump package version * fix(compatibility): update gecko id for FF compat * fix(compatibility): update yarn install-state * fix(compatibility): update yarn install-state * fix(compatibility): remove & untrack install-state * fix husky * fix(compatibility): repair husky config
1 parent 6ffc688 commit d87d4a1

File tree

9 files changed

+21
-5
lines changed

9 files changed

+21
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ dist
44
.next
55
out
66
.DS_Store
7+
.yarn/install-state.gz

.husky/commit-msg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
yarn commitlint --edit $1

.husky/pre-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
yarn lint

.yarn/install-state.gz

-2.46 MB
Binary file not shown.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"reset": "yarn cache clean && yarn clean && yarn install && yarn build",
99
"format": "lerna run format --stream",
1010
"format:diff": "lerna run format:diff --stream",
11-
"lint": "lerna run lint --stream",
11+
"lint": "lerna run lint",
1212
"lint:js": "lerna run lint:js --stream",
1313
"lint:css": "lerna run lint:css --stream",
1414
"test": "lerna run test --stream"

packages/component-list/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@carbon/devtools-component-list",
3-
"version": "2.8.3",
3+
"version": "2.8.4",
44
"description": "Generates a list of components and their selectors across all of the Carbon libraries.",
55
"main": "./dist/index.json",
66
"scripts": {

packages/utilities/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@carbon/devtools-utilities",
3-
"version": "2.8.3",
3+
"version": "2.8.4",
44
"description": "Common utilities and functions used across throughout Carbon Devtools.",
55
"main": "index.js",
66
"scripts": {

packages/web-extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "carbon-devtools-v10",
3-
"version": "2.8.3",
3+
"version": "2.8.4",
44
"private": true,
55
"description": "A basic set of tools for teams building live Carbon pages for Carbon v10.",
66
"main": "dist/manifest.json",

packages/web-extension/src/manifest.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"manifest_version": 3,
55
"description": "{package_description}",
66
"author": "{package_author}",
7-
"permissions": ["activeTab", "storage", "scripting", "tabs"],
7+
"permissions": ["activeTab", "storage", "scripting"],
88
"host_permissions": [
99
"https://*.mybluemix.net/*",
1010
"https://*.carbondesignsystem.com/*"
@@ -13,6 +13,13 @@
1313
"service_worker": "/background/index.js",
1414
"scripts": ["/background/index.js"]
1515
},
16+
"minimum_chrome_version": "121",
17+
"browser_specific_settings": {
18+
"gecko": {
19+
"strict_min_version": "121.0",
20+
"id": "{a12521e6-1ba2-4d48-9ec2-9286a37d82d1}"
21+
}
22+
},
1623
"web_accessible_resources": [
1724
{
1825
"resources": ["/inject/index.css", "/validate/validationScript.js"],

0 commit comments

Comments
 (0)