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

untool

Package Overview
Dependencies
Maintainers
6
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

untool - npm Package Compare versions

Comparing version 0.7.0 to 0.8.0

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

<a name="0.8.0"></a>
# [0.8.0](https://github.com/untool/untool/compare/v0.7.0...v0.8.0) (2018-06-13)
**Note:** Version bump only for package untool
<a name="0.7.0"></a>

@@ -8,0 +16,0 @@ # [0.7.0](https://github.com/untool/untool/compare/v0.4.0...v0.7.0) (2018-06-05)

23

index.js
#!/usr/bin/env node
'use strict';
const { promisify } = require('util');
const { dirname } = require('path');
const findUp = require('find-up');
const resolve = promisify(require('enhanced-resolve'));
const { sync: findUp } = require('find-up');
const { sync: resolve } = require('enhanced-resolve');
findUp('package.json')
.then(pkgFile =>
resolve(dirname(pkgFile), '@untool/yargs').then(path => require(path).run())
)
.catch(error => {
// eslint-disable-next-line no-console
console.error(error.stack ? error.stack.toString() : error.toString());
process.exit(1);
});
try {
const pkgFile = findUp('package.json');
const yargsPath = resolve(dirname(pkgFile), '@untool/yargs');
require(yargsPath).run();
} catch (_) {
// eslint-disable-next-line no-console
console.error("Error: Can't find @untool/yargs \n");
process.exit(1);
}
{
"name": "untool",
"version": "0.7.0",
"version": "0.8.0",
"description": "untool cli",

@@ -5,0 +5,0 @@ "preferGlobal": true,

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