diff -Nru node-minimist-1.2.5+~cs5.3.1/debian/changelog node-minimist-1.2.5+~cs5.3.2/debian/changelog --- node-minimist-1.2.5+~cs5.3.1/debian/changelog 2020-11-24 09:37:46.000000000 +0000 +++ node-minimist-1.2.5+~cs5.3.2/debian/changelog 2021-09-28 18:30:13.000000000 +0000 @@ -1,3 +1,12 @@ +node-minimist (1.2.5+~cs5.3.2-1) unstable; urgency=medium + + * Team upload + * New upstream version for node-types-minimist (bundled) + * MA: foreign + * Bump standard version (no changes) + + -- Bastien Roucariès Tue, 28 Sep 2021 18:30:13 +0000 + node-minimist (1.2.5+~cs5.3.1-2) unstable; urgency=medium * Team upload diff -Nru node-minimist-1.2.5+~cs5.3.1/debian/control node-minimist-1.2.5+~cs5.3.2/debian/control --- node-minimist-1.2.5+~cs5.3.1/debian/control 2020-11-24 09:36:56.000000000 +0000 +++ node-minimist-1.2.5+~cs5.3.2/debian/control 2021-09-28 18:30:13.000000000 +0000 @@ -10,7 +10,7 @@ , node-kind-of , node-tap , node-tape -Standards-Version: 4.5.0 +Standards-Version: 4.6.0 Vcs-Browser: https://salsa.debian.org/js-team/node-minimist Vcs-Git: https://salsa.debian.org/js-team/node-minimist.git Homepage: https://github.com/substack/minimist @@ -25,6 +25,7 @@ , node-kind-of Provides: ${nodejs:Provides} Breaks: node-typescript-types (<< 20201111~) +Multi-Arch: foreign Description: Argument options parsing for Node.js Minimist is the guts of optimist's argument parser without all the fanciful decoration. diff -Nru node-minimist-1.2.5+~cs5.3.1/debian/copyright node-minimist-1.2.5+~cs5.3.2/debian/copyright --- node-minimist-1.2.5+~cs5.3.1/debian/copyright 2020-11-24 09:09:08.000000000 +0000 +++ node-minimist-1.2.5+~cs5.3.2/debian/copyright 2021-09-28 18:25:27.000000000 +0000 @@ -19,7 +19,7 @@ Files: debian/* Copyright: 2015, Bas Couwenberg - 2020, Xavier Guimard + 2020, Yadd License: Expat License: Expat diff -Nru node-minimist-1.2.5+~cs5.3.1/debian/watch node-minimist-1.2.5+~cs5.3.2/debian/watch --- node-minimist-1.2.5+~cs5.3.1/debian/watch 2020-11-24 09:04:50.000000000 +0000 +++ node-minimist-1.2.5+~cs5.3.2/debian/watch 2021-09-28 18:25:27.000000000 +0000 @@ -1,16 +1,17 @@ version=4 opts=\ dversionmangle=auto,\ -filenamemangle=s/.*\/v?([\d\.-]+)\.tar\.gz/node-minimist-$1.tar.gz/ \ -https://github.com/substack/minimist/tags .*/archive/v?([\d\.]+).tar.gz group +filenamemangle=s%(?:.*?/)?v?@ANY_VERSION@(@ARCHIVE_EXT@)%@PACKAGE@-$1$2% \ +https://github.com/substack/minimist/tags (?:.*?/)?v?@ANY_VERSION@@ARCHIVE_EXT@ group # It is not recommended use npmregistry. Please investigate more. # Take a look at https://wiki.debian.org/debian/watch/ -opts="searchmode=plain,component=types-minimist,pgpmode=none" \ - https://registry.npmjs.org/@types/minimist https://registry.npmjs.org/@types/minimist/-/minimist-([\d\.]+)@ARCHIVE_EXT@ checksum +opts="searchmode=plain,ctype=nodejs,component=types-minimist,pgpmode=none" \ + https://registry.npmjs.org/@types/minimist https://registry.npmjs.org/@types/minimist/-/minimist-@ANY_VERSION@@ARCHIVE_EXT@ checksum opts=\ +ctype=nodejs,\ component=minimist-options,\ dversionmangle=auto,\ -filenamemangle=s/.*\/v?([\d\.-]+)\.tar\.gz/node-minimist-options-$1.tar.gz/ \ - https://github.com/vadimdemedes/minimist-options/tags .*/archive/v?([\d\.]+).tar.gz checksum +filenamemangle=s%(?:.*?/)?v?@ANY_VERSION@(@ARCHIVE_EXT@)%node-minimist-options-$1$2% \ + https://github.com/vadimdemedes/minimist-options/tags (?:.*?/)?v?@ANY_VERSION@@ARCHIVE_EXT@ checksum diff -Nru node-minimist-1.2.5+~cs5.3.1/types-minimist/index.d.ts node-minimist-1.2.5+~cs5.3.2/types-minimist/index.d.ts --- node-minimist-1.2.5+~cs5.3.1/types-minimist/index.d.ts 2020-11-09 17:27:47.000000000 +0000 +++ node-minimist-1.2.5+~cs5.3.2/types-minimist/index.d.ts 2021-07-07 00:01:41.000000000 +0000 @@ -41,40 +41,40 @@ /** * A string or array of strings argument names to always treat as strings */ - string?: string | string[]; + string?: string | string[] | undefined; /** * A boolean, string or array of strings to always treat as booleans. If true will treat * all double hyphenated arguments without equals signs as boolean (e.g. affects `--foo`, not `-f` or `--foo=bar`) */ - boolean?: boolean | string | string[]; + boolean?: boolean | string | string[] | undefined; /** * An object mapping string names to strings or arrays of string argument names to use as aliases */ - alias?: { [key: string]: string | string[] }; + alias?: { [key: string]: string | string[] } | undefined; /** * An object mapping string argument names to default values */ - default?: { [key: string]: any }; + default?: { [key: string]: any } | undefined; /** * When true, populate argv._ with everything after the first non-option */ - stopEarly?: boolean; + stopEarly?: boolean | undefined; /** * A function which is invoked with a command line parameter not defined in the opts * configuration object. If the function returns false, the unknown option is not added to argv */ - unknown?: (arg: string) => boolean; + unknown?: ((arg: string) => boolean) | undefined; /** * When true, populate argv._ with everything before the -- and argv['--'] with everything after the --. * Note that with -- set, parsing for arguments still stops after the `--`. */ - '--'?: boolean; + '--'?: boolean | undefined; } interface ParsedArgs { @@ -83,7 +83,7 @@ /** * If opts['--'] is true, populated with everything after the -- */ - '--'?: string[]; + '--'?: string[] | undefined; /** * Contains all the arguments that didn't have an option associated with them diff -Nru node-minimist-1.2.5+~cs5.3.1/types-minimist/package.json node-minimist-1.2.5+~cs5.3.2/types-minimist/package.json --- node-minimist-1.2.5+~cs5.3.1/types-minimist/package.json 2020-11-09 17:27:47.000000000 +0000 +++ node-minimist-1.2.5+~cs5.3.2/types-minimist/package.json 2021-07-07 00:01:41.000000000 +0000 @@ -1,7 +1,8 @@ { "name": "@types/minimist", - "version": "1.2.1", + "version": "1.2.2", "description": "TypeScript definitions for minimist", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/minimist", "license": "MIT", "contributors": [ { @@ -34,6 +35,6 @@ }, "scripts": {}, "dependencies": {}, - "typesPublisherContentHash": "667fc995e0c27b056df3363beba9993fa62a101799c0839748d9f5f30c16ddf2", - "typeScriptVersion": "3.2" + "typesPublisherContentHash": "9032205d52417d0f537f1e52af6f7ac447acb4b87dca0ab5840b83ec7818232e", + "typeScriptVersion": "3.6" } \ No newline at end of file diff -Nru node-minimist-1.2.5+~cs5.3.1/types-minimist/README.md node-minimist-1.2.5+~cs5.3.2/types-minimist/README.md --- node-minimist-1.2.5+~cs5.3.1/types-minimist/README.md 2020-11-09 17:27:47.000000000 +0000 +++ node-minimist-1.2.5+~cs5.3.2/types-minimist/README.md 2021-07-07 00:01:41.000000000 +0000 @@ -8,7 +8,7 @@ Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/minimist. ### Additional Details - * Last updated: Mon, 09 Nov 2020 17:27:47 GMT + * Last updated: Wed, 07 Jul 2021 00:01:41 GMT * Dependencies: none * Global values: none