New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

flavor

Package Overview
Dependencies
Maintainers
2
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flavor - npm Package Compare versions

Comparing version 0.0.8 to 0.0.9

10

dist/compiler.js

@@ -23,3 +23,13 @@ #!/usr/bin/env node

var argz = process.argv.slice(2);
_fs2.default.openSync(argz[0], 'r', function (err) {
if (err) throw new Error('File isn\'t available to translate!');else console.log('Translating...');
});
if (argz.length !== 2) {
throw new Error('Must specify <inputfile> and <outputfile> in that order.');
}
var inputPath = _path2.default.resolve(argz[0]);
var rawInput = _shelljs2.default.cat(inputPath);

@@ -26,0 +36,0 @@

2

package.json
{
"name": "flavor",
"version": "0.0.8",
"version": "0.0.9",
"description": "Add some flavor",

@@ -5,0 +5,0 @@ "scripts": {

@@ -9,3 +9,15 @@ #!/usr/bin/env node

const argz = process.argv.slice(2)
fs.openSync(argz[0], 'r', (err) => {
if (err) throw new Error('File isn\'t available to translate!')
else console.log('Translating...');
});
if (argz.length !== 2) {
throw new Error('Must specify <inputfile> and <outputfile> in that order.')
}
const inputPath = path.resolve(argz[0])
const rawInput = shell.cat(inputPath)

@@ -12,0 +24,0 @@ const { keys } = require(path.parse(inputPath).dir + '/flavor.config.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