Skip to content

Commit 543bb33

Browse files
committed
chore: bump dependencies
1 parent bff0a11 commit 543bb33

25 files changed

+1841
-1001
lines changed
File renamed without changes.

β€Ž.github/ISSUE_TEMPLATE/0.rfc.yml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: ⚑ Request for Comments
2+
description: File an RFC for Feature Request/Enhancement/Refactor
3+
title: "[RFC] "
4+
labels: ["enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
**Thank you for taking the time to fill out this RFC!** πŸ₯³
10+
11+
- type: textarea
12+
id: description
13+
attributes:
14+
label: How do you envision this feature/change to look/work like?
15+
description: Please be as detailed as possible, providing any relevant context.
16+
placeholder: The action should read safari config and spit out fire
17+
validations:
18+
required: true
19+
20+
- type: textarea
21+
id: purpose
22+
attributes:
23+
label: What is the purpose of this change/feature? Why?
24+
description: Please provide a simple summary/abstraction.
25+
placeholder: |
26+
The current image is not versatile enough, i.e it is too small.
27+
validations:
28+
required: true
29+
30+
- type: textarea
31+
id: examples
32+
attributes:
33+
label: (OPTIONAL) Example implementations
34+
description: If you have any examples of how this feature/change works, please list them here.
35+
validations:
36+
required: false
37+
38+
- type: checkboxes
39+
id: terms
40+
attributes:
41+
label: Code of Conduct
42+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/PlasmoHQ/plasmo/blob/main/.github/CONTRIBUTING.md).
43+
options:
44+
- label: I agree to follow this project's Code of Conduct
45+
required: true
46+
- label: I checked the [current issues](https://github.com/PlasmoHQ/bpp/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement+) for duplicate problems.
47+
required: true

β€Ž.github/ISSUE_TEMPLATE/1.bug.yml

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: πŸ› Bug Report
2+
description: File a bug report
3+
title: "[BUG] "
4+
labels: ["bug", "triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
**Thank you for taking the time to fill out this bug report!** πŸ₯³
10+
11+
- type: textarea
12+
id: what-happened
13+
attributes:
14+
label: What happened?
15+
description: Also tell us, what did you expect to happen?
16+
placeholder: Tell us what you see!
17+
value: "A bug happened!"
18+
validations:
19+
required: true
20+
21+
- type: dropdown
22+
id: browsers
23+
attributes:
24+
label: Which browsers are you seeing the problem on?
25+
multiple: true
26+
options:
27+
- Chrome
28+
- Microsoft Edge
29+
- Opera
30+
- Safari
31+
- Firefox
32+
33+
- type: textarea
34+
id: logs
35+
attributes:
36+
label: Relevant log output
37+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
38+
render: Shell
39+
40+
- type: checkboxes
41+
id: terms
42+
attributes:
43+
label: Code of Conduct
44+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/PlasmoHQ/plasmo/blob/main/.github/CONTRIBUTING.md).
45+
options:
46+
- label: I agree to follow this project's Code of Conduct
47+
required: true
48+
- label: I checked the [current issues](https://github.com/PlasmoHQ/bpp/issues?q=is%3Aopen+is%3Aissue+label%3Abug) for duplicate problems.
49+
required: true

β€Ž.github/ISSUE_TEMPLATE/config.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Join our Discord server
4+
url: https://www.plasmo.com/s/d
5+
about: Ask questions and discuss with other community members

β€Ž.gitmodules

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[submodule "packages/bms"]
2+
path = packages/bms
3+
url = [email protected]:plasmo-corp/bms.git
4+
[submodule "packages/edge-addons-api"]
5+
path = packages/edge-addons-api
6+
url = [email protected]:PlasmoHQ/edge-addons-api.git
7+
[submodule "packages/chrome-webstore-api"]
8+
path = packages/chrome-webstore-api
9+
url = [email protected]:plasmo-corp/chrome-webstore-api.git
10+
[submodule "packages/mozilla-addons-api"]
11+
path = packages/mozilla-addons-api
12+
url = [email protected]:PlasmoHQ/mozilla-addons-api.git
13+
[submodule "packages/safari-webstore-upload"]
14+
path = packages/safari-webstore-upload
15+
url = [email protected]:plasmo-corp/safari-webstore-upload.git

β€Ž.npmrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
save-workspace-protocol = true
2+
prefer-workspace-packages = true
3+
save-exact = true
4+
link-workspace-packages = true
5+
strict-peer-dependencies = false

β€Žpackage.json

+7-41
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,12 @@
11
{
2-
"name": "@plasmo/bpp",
3-
"version": "2.5.0",
2+
"name": "p1asm0-bpp",
43
"private": true,
5-
"description": "Browser Platform Publisher",
6-
"main": "lib/main.js",
7-
"scripts": {
8-
"dev": "run-p dev:*",
9-
"dev:build": "esbuild src/main.ts --sourcemap --bundle --watch --platform=node --outfile=dist/index.js",
10-
"dev:test": "jest --watch",
11-
"format": "prettier --write **/*.ts",
12-
"format-check": "prettier --check **/*.ts",
13-
"package": "esbuild src/main.ts --platform=node --minify --bundle --outfile=dist/index.js",
14-
"test": "jest",
15-
"all": "run-s format package test"
16-
},
17-
"repository": {
18-
"type": "git",
19-
"url": "https://github.com/plasmohq/bpp.git"
20-
},
21-
"keywords": [
22-
"browser-extensions",
23-
"chrome",
24-
"firefox",
25-
"safari",
26-
"actions"
4+
"workspaces": [
5+
"packages/*"
276
],
28-
"author": "Plasmo Corp. <[email protected]>",
29-
"license": "MIT",
30-
"dependencies": {
31-
"@actions/core": "1.9.0",
32-
"@plasmohq/bms": "1.14.0"
33-
},
347
"devDependencies": {
35-
"@jest/globals": "28.1.1",
36-
"@plasmohq/rps": "1.3.4",
37-
"@trivago/prettier-plugin-sort-imports": "3.2.0",
38-
"@types/node": "18.0.0",
39-
"esbuild": "0.14.44",
40-
"jest": "28.1.1",
41-
"js-yaml": "4.1.0",
42-
"prettier": "2.7.1",
43-
"ts-jest": "28.0.5",
44-
"typescript": "4.7.3"
45-
}
8+
"@plasmohq/prettier-plugin-sort-imports": "3.5.1",
9+
"prettier": "2.7.1"
10+
},
11+
"packageManager": "[email protected]"
4612
}

β€Žpackages/bms

Submodule bms added at 05235fe
File renamed without changes.
File renamed without changes.
File renamed without changes.

β€Žpackages/bpp/package.json

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"name": "@plasmo/bpp",
3+
"version": "2.5.0",
4+
"private": true,
5+
"description": "Browser Platform Publisher",
6+
"main": "lib/main.js",
7+
"scripts": {
8+
"dev": "run-p dev:*",
9+
"dev:build": "esbuild src/main.ts --sourcemap --bundle --watch --platform=node --outfile=dist/index.js",
10+
"dev:test": "jest --watch",
11+
"format": "prettier --write **/*.ts",
12+
"format-check": "prettier --check **/*.ts",
13+
"package": "esbuild src/main.ts --platform=node --minify --bundle --outfile=dist/index.js",
14+
"test": "jest",
15+
"all": "run-s format package test"
16+
},
17+
"repository": {
18+
"type": "git",
19+
"url": "https://github.com/plasmohq/bpp.git"
20+
},
21+
"keywords": [
22+
"browser-extensions",
23+
"chrome",
24+
"firefox",
25+
"safari",
26+
"actions"
27+
],
28+
"author": "Plasmo Corp. <[email protected]>",
29+
"license": "MIT",
30+
"dependencies": {
31+
"@actions/core": "1.9.1",
32+
"@plasmohq/bms": "1.14.0"
33+
},
34+
"devDependencies": {
35+
"@jest/globals": "29.0.3",
36+
"@plasmohq/rps": "1.5.1",
37+
"@trivago/prettier-plugin-sort-imports": "3.3.0",
38+
"@types/node": "18.7.18",
39+
"esbuild": "0.15.8",
40+
"jest": "29.0.3",
41+
"js-yaml": "4.1.0",
42+
"prettier": "2.7.1",
43+
"ts-jest": "29.0.1",
44+
"typescript": "4.8.3"
45+
}
46+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

β€Žpackages/chrome-webstore-api

Submodule chrome-webstore-api added at 8e25c95

β€Žpackages/edge-addons-api

Submodule edge-addons-api added at bcb0762

β€Žpackages/mozilla-addons-api

Submodule mozilla-addons-api added at 22a1fc1

β€Žpackages/safari-webstore-upload

Submodule safari-webstore-upload added at 7519cc2

0 commit comments

Comments
Β (0)