Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@garoon/plugin-uploader

Package Overview
Dependencies
Maintainers
12
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@garoon/plugin-uploader - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

4

dist/utils.d.ts

@@ -1,5 +0,5 @@

export declare type BasicAuth = {
export type BasicAuth = {
username: string;
password: string;
};
export declare const run: (baseUrl: string, username: string, password: string, pluginPath: string, pluginId: string | undefined, basicAuth: BasicAuth | null, proxy: string | undefined) => Promise<void>;
export declare const run: (baseUrl: string | undefined, username: string | undefined, password: string | undefined, pluginPath: string, pluginId: string | undefined, basicAuth: BasicAuth | null, proxy: string | undefined) => Promise<void>;

@@ -140,2 +140,11 @@ "use strict";

try {
if (!baseUrl) {
throw new Error("Required argument is undefined: base-url");
}
if (!username) {
throw new Error("Required argument is undefined: username");
}
if (!password) {
throw new Error("Required argument is undefined: password");
}
const page = await login(baseUrl, browser, username, password, basicAuth);

@@ -142,0 +151,0 @@ if (pluginId) {

{
"name": "@garoon/plugin-uploader",
"version": "1.0.1",
"version": "1.0.2",
"main": "dist/main.js",

@@ -32,7 +32,7 @@ "description": "plugin uploader for Garoon.",

"chalk": "4.1.2",
"puppeteer": "^16.1.1",
"puppeteer": "^19.4.1",
"yargs": "^17.4.1"
},
"devDependencies": {
"@cybozu/eslint-config": "^17.0.3",
"@cybozu/eslint-config": "^18.0.0",
"@types/yargs": "^17.0.11",

@@ -39,0 +39,0 @@ "eslint": "^8.22.0",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc