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

barely-a-dev-server

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

barely-a-dev-server - npm Package Compare versions

Comparing version 0.4.12 to 0.5.0

4

package.json
{
"name": "barely-a-dev-server",
"version": "0.4.12",
"version": "0.5.0",
"type": "module",

@@ -11,3 +11,3 @@ "description": "",

"peerDependencies": {
"esbuild": "0.16.17"
"esbuild": "^0.17.19"
},

@@ -14,0 +14,0 @@ "types": "./src/index.d.ts",

@@ -22,3 +22,3 @@ import * as esbuild from "esbuild";

);
return (currentBuildResult = esbuild.build({
const buildContext = await esbuild.context({
target: "es2020",

@@ -33,6 +33,8 @@ logLevel: "info",

entryPoints,
outbase: options.entryRoot,
outdir: options.outDir,
watch: options.dev,
}));
});
if (options.dev) {
buildContext.watch();
}
return buildContext;
}
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