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

@frozzare/pkg

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@frozzare/pkg - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

2

dist/index.d.ts
import { BuildOptions as ESBuildOptions } from 'esbuild';
export type BuildOptions = Omit<ESBuildOptions, 'bundle' | 'entryPoints'>;
export declare const build: (entryPoint: string, config?: BuildOptions) => Promise<string | void>;
export declare const build: (entryPoint: string, options?: BuildOptions) => Promise<string | void>;

@@ -10,3 +10,7 @@ "use strict";

const esbuild_1 = require("esbuild");
const build = async (entryPoint, config = {}) => {
const defaultOptions = {
write: true,
};
const build = async (entryPoint, options = {}) => {
const config = { ...defaultOptions, ...options };
const out = await (0, esbuild_1.build)({

@@ -13,0 +17,0 @@ ...config,

{
"name": "@frozzare/pkg",
"version": "1.0.1",
"version": "1.0.2",
"description": "",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

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