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

boost2fs

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

boost2fs - npm Package Compare versions

Comparing version 0.2.1 to 0.3.0

1

cli.js
#!/usr/bin/env node
require('async-to-gen/register')
const meow = require('meow')

@@ -5,0 +4,0 @@ const B2f = require('.')

4

index.js

@@ -93,3 +93,5 @@ const path = require('path')

const outputFolderPath = await this.makeFolderDirectories(folder)
await fs.writeFile(path.resolve(outputFolderPath, title + '.md'), content, 'utf-8')
// fix unexpected too long title, see https://github.com/viko16/boost2fs/issues/2
const safeTitle = title.substr(0, 200)
await fs.writeFile(path.resolve(outputFolderPath, safeTitle + '.md'), content, 'utf-8')
}

@@ -96,0 +98,0 @@

{
"name": "boost2fs",
"description": "Convert Boostnote to normal files.",
"version": "0.2.1",
"version": "0.3.0",
"repository": "viko16/boost2fs",

@@ -22,21 +22,20 @@ "license": "MIT",

"engines": {
"node": ">=4"
"node": ">=8"
},
"scripts": {
"test": "mocha --require async-to-gen/register",
"test": "mocha",
"lint": "standard"
},
"devDependencies": {
"coffee": "^4.1.0",
"mocha": "^3.5.0",
"standard": "^10.0.0"
"coffee": "^5.1.0",
"mocha": "^5.2.0",
"standard": "^12.0.1"
},
"dependencies": {
"async-to-gen": "^1.3.3",
"colors": "^1.1.2",
"cson": "^4.1.0",
"fs-extra": "^4.0.1",
"meow": "^3.7.0",
"ora": "^1.3.0"
"colors": "^1.3.2",
"cson": "^5.1.0",
"fs-extra": "^7.0.0",
"meow": "^5.0.0",
"ora": "^3.0.0"
}
}
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