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

@devcontainer/generator

Package Overview
Dependencies
Maintainers
1
Versions
330
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@devcontainer/generator - npm Package Compare versions

Comparing version 1.2.4 to 1.2.5

2

lib/src/devcontainerGenerator.d.ts

@@ -1,2 +0,2 @@

declare type Base = "debian:stretch-slim" | "debian:buster-slim" | "ubuntu:disco" | "ubuntu:eoan";
declare type Base = "stretch" | "buster" | "disco" | "eoan";
declare type NodeVesion = "lts" | "current";

@@ -3,0 +3,0 @@ export declare class DevcontainerGenerator {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const fs_1 = require("fs");
const getVersion = (b) => b === "debian:stretch-slim" ? '9' :
b === "debian:buster-slim" ? '10' :
b === "ubuntu:disco" ? '19.04' : '19.10';
const getDistro = (b) => (b === "debian:stretch-slim" || b === "debian:buster-slim") ? "Debian" : "Ubuntu";
const getVersion = (b) => b === "stretch" ? '9' :
b === "buster" ? '10' :
b === "disco" ? '19.04' : '19.10';
const getDistro = (b) => (b === "stretch" || b === "buster") ? "Debian" : "Ubuntu";
const softwareVersions = require("../versions.json");

@@ -9,0 +9,0 @@ class DevcontainerGenerator {

{
"name": "@devcontainer/generator",
"version": "1.2.4",
"version": "1.2.5",
"description": "generates custorm devcontainer Dockerfiles",

@@ -23,3 +23,3 @@ "files": [

"license": "MIT",
"gitHead": "43a7f9d726488e2ae993a31422bc9f7f35abe7bd"
"gitHead": "a5a9846903033819696447adfd83bb0dab039e50"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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