Socket
Socket
Sign inDemoInstall

collabs

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

collabs - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

package.json
{
"name": "collabs",
"version": "1.0.0",
"version": "1.0.1",
"description": "A tool to generate cross-language enums and interfaces.",

@@ -5,0 +5,0 @@ "main": "parse.js",

@@ -6,3 +6,3 @@

const nearley = require('nearley');
const grammar = require('./collab');
const grammar = require(`${__dirname}/collab`);

@@ -24,3 +24,3 @@ if(!argv.file) {

if(!fs.existsSync(`./formats/${argv.format}.js`)) {
if(!fs.existsSync(`${__dirname}/formats/${argv.format}.js`)) {
console.error(`Invalid --format.`);

@@ -30,3 +30,3 @@ return;

const format = require(`./formats/${argv.format}.js`);
const format = require(`${__dirname}/formats/${argv.format}.js`);

@@ -33,0 +33,0 @@ const parser = new nearley.Parser(nearley.Grammar.fromCompiled(grammar));

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