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

@daybrush/builder

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@daybrush/builder - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

yarn-error.log

14

index.js

@@ -22,2 +22,3 @@ const fs = require("fs");

*/`;
const prototypeMinify = require("rollup-plugin-prototype-minify")();
const commonjsPlugin = require("@rollup/plugin-commonjs")();

@@ -62,4 +63,5 @@ const typescriptPlugin = require("@rollup/plugin-typescript");

banner = defaultBanner,
minifyPrototype, // minify prototype
} = options;
const nextPlugins = plugins.concat([
const nextPlugins = [
typescriptPlugin({

@@ -69,7 +71,13 @@ tsconfig,

}),
replacePlugin
]);
replacePlugin,
]
nextPlugins.push(...replacePlugin);
minifyPrototype && nextPlugins.push(prototypeMinify({
sourcemap,
exclude: /node_modules/g,
}));
commonjs && nextPlugins.push(commonjsPlugin);
resolve && nextPlugins.push(resolvePlugin);
if (uglify) {

@@ -76,0 +84,0 @@ const condition = typeof uglify === "string" ? uglify : `name:(\\s*)${pkg.name.replace(/\//g, "\\/")}`;

{
"name": "@daybrush/builder",
"version": "0.2.0",
"version": "0.2.1",
"description": "",

@@ -26,4 +26,5 @@ "main": "index.js",

"rollup": "^3.7.1",
"rollup-plugin-prototype-minify": "^1.1.0",
"rollup-plugin-visualizer": "^5.8.3"
}
}
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