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

seeli

Package Overview
Dependencies
Maintainers
2
Versions
89
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

seeli - npm Package Compare versions

Comparing version 10.0.0 to 10.0.1

15

CHANGELOG.md
# Changelog
## v10.0.1 (2020-07-03)
* 10.0.1 [View](https://github.com/esatterwhite/node-seeli/commit/e142f1541f44db34a514e519dc7d677d6f3bf66a)
* conf: wrap os calls in try catch. [View](https://github.com/esatterwhite/node-seeli/commit/4b4e984e9e80444e4724d14e071e2b754ac7cafd)
* update change log [View](https://github.com/esatterwhite/node-seeli/commit/55b9bc29ecb5f9bea03ac8869ed0c56505e85d82)
## v10.0.0 (2020-06-01)
* 10.0.0 [View](https://github.com/esatterwhite/node-seeli/commit/edbe192b3e95ec64a3467ee0a92fa495a51fb313)
* pkg: softens the error handling [View](https://github.com/esatterwhite/node-seeli/commit/33071952aa777d37cc8272ef2b0d11f1895fc79c)
## v9.0.0 (2020-04-14)
* 9.0.0 [View](https://github.com/esatterwhite/node-seeli/commit/67e85436269511cecd242c37f25b30089dada1a4)
* 9.0.0 [View](https://github.com/esatterwhite/node-seeli/commit/ce2bbbbcf882962daf1bff182d535422f2677f8e)
* example: include updated demo gif and asset files [View](https://github.com/esatterwhite/node-seeli/commit/44b4f4ed143cff0133e00f36feb82ad328d143ba)

@@ -7,0 +20,0 @@ * example: include updated demo gif and asset files [View](https://github.com/esatterwhite/node-seeli/commit/fcc9246318d6f520bdb8e3f2fc6b321d61993e20)

10

lib/conf.js

@@ -14,4 +14,10 @@ /*jshint node: true, laxcomma: true */

const {username = 'seeli'} = os.userInfo()
const host = os.hostname()
let username = 'seeli'
let host = 'local'
try {
const info = os.userInfo()
host = os.hostname()
username = info.username
} catch (_) {}
const PS1 = `${username}@${host}`

@@ -18,0 +24,0 @@ const name = filename ? path.basename(filename, '.js') : 'seeli'

{
"name": "seeli",
"version": "10.0.0",
"version": "10.0.1",
"description": "Object oriented, flexible CLI tools",

@@ -5,0 +5,0 @@ "main": "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