New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@enplug/scripts

Package Overview
Dependencies
Maintainers
5
Versions
368
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@enplug/scripts - npm Package Compare versions

Comparing version 1.1.3 to 1.1.4

4

bin/build-legacy.js

@@ -15,4 +15,4 @@ #! /usr/bin/env node

const pkg = require(packagePath);
const version = pkg.version;
const destination = pkg.config.destination;
const version = options.dev ? pkg.version_dev : pkg.version;
const destination = options.dev ? pkg.config.destination_dev : pkg.config.destination;

@@ -19,0 +19,0 @@ const optionDefinitions = [

@@ -10,2 +10,3 @@ #! /usr/bin/env node

{ name: 'bucket', alias: 'b', type: String },
{ name: 'dev', alias: 'd', type: Boolean },
{ name: 'prefix', alias: 'p', type: String },

@@ -18,3 +19,4 @@ { name: 'root', alias: 'r', type: String },

const options = commandLineArgs(optionDefinitions);
const version = options['version'];
const version = options.dev ? pkg.version_dev : pkg.version;
const pkg = require(`${options['root']}/package.json`);

@@ -21,0 +23,0 @@

{
"name": "@enplug/scripts",
"version": "1.1.3",
"version": "1.1.4",
"description": "Enplug scripts",

@@ -5,0 +5,0 @@ "scripts": {

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