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

cleaver

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cleaver - npm Package Compare versions

Comparing version 0.5.2 to 0.5.3

7

lib/helper.js

@@ -13,3 +13,3 @@ var Q = require('q');

*/
var ROOT_DIR = path.normalize(__dirname + '/../');
var ROOT_DIR = path.resolve(__dirname, '..');

@@ -74,3 +74,3 @@

filename = map[key];
if (!external) filename = ROOT_DIR + filename;
if (!external) filename = path.resolve(ROOT_DIR, filename);

@@ -248,4 +248,5 @@ promises.push(loadSingle(filename)

if (pathname[0] == '/') return pathname;
if (path.resolve(pathname) == pathname) return pathname;
return path.normalize(path.dirname(inputPath) + '/' + pathname);
return path.resolve(path.dirname(inputPath), pathname);
}

@@ -252,0 +253,0 @@

{
"name": "cleaver",
"preferGlobal": true,
"version": "0.5.2",
"version": "0.5.3",
"author": "Jordan Scales <scalesjordan@gmail.com>",

@@ -6,0 +6,0 @@ "description": "30-second slideshows for hackers",

@@ -76,5 +76,2 @@ # Cleaver

All you need to do is write some blocks of markdown, separated by `--`
on its own line and include options at the top.
Slides are written in [Markdown](http://daringfireball.net/projects/markdown/),

@@ -81,0 +78,0 @@ and are separated by two dashes (`--`).

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