Skip to content

Commit

Permalink
feat: bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
louisgv committed Mar 30, 2023
1 parent d7bb04f commit d5b0aa6
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 14 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plasmohq/bms",
"version": "2.3.0",
"version": "2.3.1",
"description": "Browser Market Submission",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/markets/chrome.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, test } from "@jest/globals"
import fs from "fs/promises"

import { ChromeOptions, submitChrome } from "~index"
import { type ChromeOptions, submitChrome } from "~index"

test("Chrome dry run successful", async () => {
const opt = JSON.parse(await fs.readFile("keys.json", "utf8"))
Expand Down
4 changes: 2 additions & 2 deletions src/markets/chrome.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
ChromeWebstoreAPI,
Options,
PublishTarget,
type Options,
type PublishTarget,
errorMap
} from "@plasmohq/chrome-webstore-api"

Expand Down
8 changes: 6 additions & 2 deletions src/markets/edge.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import { EdgeAddonsAPI, Options, errorMap } from "@plasmohq/edge-addons-api"
import {
EdgeAddonsAPI,
type Options,
errorMap
} from "@plasmohq/edge-addons-api"

import { BrowserName, CommonOptions } from "~commons"
import { BrowserName, type CommonOptions } from "~commons"
import { getVerboseError } from "~utils/error"
import { getCorrectZip, getManifestJson } from "~utils/file"
import {
Expand Down
2 changes: 1 addition & 1 deletion src/markets/firefox.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, test } from "@jest/globals"
import fs from "fs/promises"

import { FirefoxOptions, submitFirefox } from "~index"
import { type FirefoxOptions, submitFirefox } from "~index"

test("Firefox dry run successful", async () => {
const opt = JSON.parse(await fs.readFile("keys.json", "utf8"))
Expand Down
4 changes: 2 additions & 2 deletions src/markets/firefox.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import {
MozillaAddonsAPI,
Options,
type Options,
errorMap
} from "@plasmohq/mozilla-addons-api"

import { BrowserName, CommonOptions } from "~commons"
import { BrowserName, type CommonOptions } from "~commons"
import { getVerboseError } from "~utils/error"
import { getCorrectZip, getManifestJson } from "~utils/file"
import {
Expand Down
2 changes: 1 addition & 1 deletion src/markets/opera.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, test } from "@jest/globals"
import fs from "fs/promises"

import { OperaOptions, submitOpera } from "~index"
import { type OperaOptions, submitOpera } from "~index"

test.skip("Opera dry run successful", async () => {
const opt = JSON.parse(await fs.readFile("keys.json", "utf8"))
Expand Down
2 changes: 1 addition & 1 deletion src/markets/opera/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { getCorrectZip } from "~utils/file.js"
import { enableVerboseLogging } from "~utils/logging"
import { validateOptions } from "~utils/validator.js"

import { OperaOptions, errorMap } from "./options"
import { type OperaOptions, errorMap } from "./options"

export type { OperaOptions }

Expand Down
5 changes: 2 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@
"esModuleInterop": true,
"noImplicitAny": false,
"moduleResolution": "node",
"isolatedModules": true,
"module": "commonjs",
"module": "ESNext",
"target": "es6",
"allowJs": true,
"importsNotUsedAsValues": "error"
"verbatimModuleSyntax": true
},
"include": ["src/**/*"]
}

0 comments on commit d5b0aa6

Please sign in to comment.