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

@apt-repositories/generator

Package Overview
Dependencies
Maintainers
1
Versions
431
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@apt-repositories/generator - npm Package Compare versions

Comparing version 0.0.19 to 0.0.20

6

output/observe.js

@@ -140,7 +140,7 @@ #!/usr/bin/env node

import { cp, mkdir, readdir, rm } from "node:fs/promises";
import { join, resolve } from "node:path";
import { join } from "node:path";
import { argv } from "node:process";
var DEBIAN_COMPONENT = process.env.DEBIAN_COMPONENT ?? "main";
var DEBIAN_OBSERVABLES = process.env.DEBIAN_OBSERVABLES?.split("\n").filter(Boolean) ?? [];
var OUTPUT_DIRECTORY = resolve(process.env.OUTPUT_DIRECTORY ?? argv[2] ?? process.cwd());
var OUTPUT_DIRECTORY = process.env.OUTPUT_DIRECTORY ?? argv[2] ?? process.cwd();
var main = async () => {

@@ -154,3 +154,3 @@ console.log(

console.log(`Processing '${observable}'...`);
const observedPathDebs = resolve(join("apt", observable, DEBIAN_COMPONENT));
const observedPathDebs = join("apt", observable, DEBIAN_COMPONENT);
console.log(` Reading contents of '${observedPathDebs}'...`);

@@ -157,0 +157,0 @@ const debs = await readdir(observedPathDebs).catch(() => []);

{
"$schema": "https://json.schemastore.org/package.json",
"name": "@apt-repositories/generator",
"version": "0.0.19",
"version": "0.0.20",
"license": "MIT",

@@ -6,0 +6,0 @@ "author": "Oliver Salzburg <oliver.salzburg@gmail.com>",

Sorry, the diff of this file is not supported yet

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