Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: PlasmoHQ/chrome-webstore-api
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 453d4300475606773dbfdcd7da6dc631b07476aa
Choose a base ref
..
head repository: PlasmoHQ/chrome-webstore-api
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4756104340620da38e80374ce64b7af6372674b7
Choose a head ref
Showing with 24 additions and 6 deletions.
  1. +18 −0 .prettierrc.cjs
  2. +6 −6 package.json
18 changes: 18 additions & 0 deletions .prettierrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/**
* @type {import('prettier').Options}
*/
module.exports = {
printWidth: 80,
tabWidth: 2,
useTabs: false,
semi: false,
singleQuote: false,
trailingComma: "none",
bracketSpacing: true,
bracketSameLine: true,
importOrder: ["^~(.*)$", "^[./]"],
importOrderSeparation: true,
importOrderSortSpecifiers: true,

plugins: [require.resolve("@plasmohq/prettier-plugin-sort-imports")]
}
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plasmohq/chrome-webstore-api",
"version": "2.11.0",
"version": "2.10.0",
"description": "Chrome webstore API",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
@@ -31,12 +31,12 @@
"license": "MIT",
"devDependencies": {
"@plasmo/config": "workspace:*",
"@plasmohq/rps": "1.8.7",
"@types/node": "22.9.1",
"tsup": "8.3.5",
"typescript": "5.6.3"
"@plasmohq/rps": "1.8.6",
"@types/node": "22.9.0",
"tsup": "7.0.0",
"typescript": "5.1.3"
},
"dependencies": {
"got": "14.4.4"
"got": "13.0.0"
}
}