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

ariane

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ariane - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

11

index.js

@@ -1,3 +0,8 @@

export * from './lib/core';
export * from './lib/logger'
export * from './lib/transports';
module.exports = require('./lib/core');
const transports = require('./lib/transports');
Object.entries(transports).forEach(entry => {
module.exports[entry[0]] = entry[1];
});
module.exports.Ariane = module.exports.Logger = require('./lib/logger');
const BaseTransport = require('./base');
module.exports.StreamTransport = class StreamTransport extends BaseTransport {
module.exports = class StreamTransport extends BaseTransport {
constructor(opts = {}, writableStream) {

@@ -24,3 +24,3 @@ super(opts);

this.stream.write(`${level}: ${msg}\n`, this.encoding);
this.stream.write(`${msg}\n`, this.encoding);

@@ -27,0 +27,0 @@ return true;

{
"name": "ariane",
"version": "0.1.1",
"version": "0.1.2",
"description": "Helps you find your way out of the labyrinth",

@@ -16,3 +16,3 @@ "main": "index.js",

"license": "ISC",
"repository": "git@github.com:jberube/ariadne.git",
"repository": "git@github.com:jberube/ariane.git",
"devDependencies": {

@@ -19,0 +19,0 @@ "nodemon": "^1.17.5",

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