@devcontainer/generator
Advanced tools
Comparing version 1.2.4 to 1.2.5
@@ -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
24917