diff -Nru node-browser-resolve-1.11.3/debian/changelog node-browser-resolve-1.11.3/debian/changelog --- node-browser-resolve-1.11.3/debian/changelog 2019-11-19 06:13:56.000000000 +0000 +++ node-browser-resolve-1.11.3/debian/changelog 2020-12-27 08:47:31.000000000 +0000 @@ -1,3 +1,18 @@ +node-browser-resolve (1.11.3-3) unstable; urgency=medium + + * Team upload + + [ Debian Janitor ] + * Set upstream metadata fields: Bug-Submit. + + [ Xavier Guimard ] + * Bump debhelper compatibility level to 13 + * Declare compliance with policy 4.5.1 + * Use dh-sequence-nodejs + * Add patch for mocha ≥ 8 (Closes: #978297) + + -- Xavier Guimard Sun, 27 Dec 2020 09:47:31 +0100 + node-browser-resolve (1.11.3-2) unstable; urgency=medium * Team upload diff -Nru node-browser-resolve-1.11.3/debian/control node-browser-resolve-1.11.3/debian/control --- node-browser-resolve-1.11.3/debian/control 2019-11-19 06:04:57.000000000 +0000 +++ node-browser-resolve-1.11.3/debian/control 2020-12-27 08:45:05.000000000 +0000 @@ -5,11 +5,11 @@ Testsuite: autopkgtest-pkg-nodejs Priority: optional Build-Depends: - debhelper-compat (= 12) + debhelper-compat (= 13) , mocha (>= 4) , node-resolve (>= 1.1.7) - , pkg-js-tools (>= 0.9.12~) -Standards-Version: 4.4.1 + , dh-sequence-nodejs +Standards-Version: 4.5.1 Vcs-Browser: https://salsa.debian.org/js-team/node-browser-resolve Vcs-Git: https://salsa.debian.org/js-team/node-browser-resolve.git Homepage: https://github.com/shtylman/node-browser-resolve#readme diff -Nru node-browser-resolve-1.11.3/debian/patches/fix-test-for-mocha-8.patch node-browser-resolve-1.11.3/debian/patches/fix-test-for-mocha-8.patch --- node-browser-resolve-1.11.3/debian/patches/fix-test-for-mocha-8.patch 1970-01-01 00:00:00.000000000 +0000 +++ node-browser-resolve-1.11.3/debian/patches/fix-test-for-mocha-8.patch 2020-12-27 08:47:06.000000000 +0000 @@ -0,0 +1,618 @@ +Description: fix test for mocha ≥ 8 +Author: Xavier Guimard +Forwarded: no +Last-Update: 2020-12-27 + +--- a/test/core-sync.js ++++ b/test/core-sync.js +@@ -6,12 +6,12 @@ + events: 'foo' + }; + +-test('shim found', function() { ++it('shim found', function() { + var path = resolve.sync('events', { modules: shims }); + assert.equal(path, 'foo'); + }); + +-test('core shim not found', function() { ++it('core shim not found', function() { + var path = resolve.sync('http', {}); + assert.equal(path, 'http'); + }); +--- a/test/core.js ++++ b/test/core.js +@@ -6,7 +6,7 @@ + events: 'foo' + }; + +-test('shim found', function(done) { ++it('shim found', function(done) { + resolve('events', { modules: shims }, function(err, path) { + assert.ifError(err); + assert.equal(path, 'foo'); +@@ -14,7 +14,7 @@ + }); + }); + +-test('core shim not found', function(done) { ++it('core shim not found', function(done) { + resolve('http', {}, function(err, path) { + assert.ifError(err); + assert.equal(path, 'http'); +--- a/test/ext.js ++++ b/test/ext.js +@@ -3,7 +3,7 @@ + + var fixtures_dir = __dirname + '/fixtures'; + +-test('module to implicit extension', function(done) { ++it('module to implicit extension', function(done) { + var opts = { filename: fixtures_dir + '/node_modules/module-o/main.js' } + resolve('module-a', opts, function(err, path) { + assert.ifError(err); +@@ -12,7 +12,7 @@ + }); + }); + +-test('implicit extension to implicit extension', function(done) { ++it('implicit extension to implicit extension', function(done) { + var opts = { filename: fixtures_dir + '/node_modules/module-p/main.js' } + resolve('./z.js', opts, function(err, path) { + assert.ifError(err); +@@ -21,7 +21,7 @@ + }); + }); + +-test('implicit extension to implicit extension', function(done) { ++it('implicit extension to implicit extension', function(done) { + var opts = { filename: fixtures_dir + '/node_modules/module-p/main.js' } + resolve('./z', opts, function(err, path) { + assert.ifError(err); +@@ -30,7 +30,7 @@ + }); + }); + +-test('explicit extension to explicit extension', function(done) { ++it('explicit extension to explicit extension', function(done) { + var opts = { filename: fixtures_dir + '/node_modules/module-q/main.js' } + resolve('./z.js', opts, function(err, path) { + assert.ifError(err); +@@ -39,7 +39,7 @@ + }); + }); + +-test('implicit extension to explicit extension', function(done) { ++it('implicit extension to explicit extension', function(done) { + var opts = { filename: fixtures_dir + '/node_modules/module-r/main.js' } + resolve('./z.js', opts, function(err, path) { + assert.ifError(err); +@@ -48,7 +48,7 @@ + }); + }); + +-test('module implicit extension to explicit extension', function(done) { ++it('module implicit extension to explicit extension', function(done) { + var opts = { filename: fixtures_dir + '/node_modules/module-s/main.js' } + resolve('whatever/z.js', opts, function(err, path) { + assert.ifError(err); +@@ -57,7 +57,7 @@ + }); + }); + +-test('module implicit extension to explicit extension', function(done) { ++it('module implicit extension to explicit extension', function(done) { + var opts = { filename: fixtures_dir + '/node_modules/module-s/main.js' } + resolve('whatever/z', opts, function(err, path) { + assert.ifError(err); +--- a/test/false-sync.js ++++ b/test/false-sync.js +@@ -4,13 +4,13 @@ + + var fixtures_dir = __dirname + '/fixtures'; + +-test('false file', function() { ++it('false file', function() { + var parent_file = fixtures_dir + '/node_modules/false/index.js'; + var p = resolve.sync('./fake.js', { filename: parent_file }); + assert.equal(p, path.normalize(__dirname + '/../empty.js')); + }); + +-test('false module', function() { ++it('false module', function() { + var parent_file = fixtures_dir + '/node_modules/false/index.js'; + var p = resolve.sync('ignore-me', { filename: parent_file }); + assert.equal(p, path.normalize(__dirname + '/../empty.js')); +--- a/test/false.js ++++ b/test/false.js +@@ -4,7 +4,7 @@ + + var fixtures_dir = __dirname + '/fixtures'; + +-test('false file', function(done) { ++it('false file', function(done) { + var parent_file = fixtures_dir + '/node_modules/false/index.js'; + resolve('./fake.js', { filename: parent_file }, function(err, p) { + assert.ifError(err); +@@ -13,7 +13,7 @@ + }); + }); + +-test('false module', function(done) { ++it('false module', function(done) { + var parent_file = fixtures_dir + '/node_modules/false/index.js'; + resolve('ignore-me', { filename: parent_file }, function(err, p) { + assert.ifError(err); +@@ -22,7 +22,7 @@ + }); + }); + +-test('false expand path', function(done) { ++it('false expand path', function(done) { + var parent = { + filename: fixtures_dir + '/node_modules/module-m/lib/index.js' + }; +--- a/test/local-coffee.js ++++ b/test/local-coffee.js +@@ -3,7 +3,7 @@ + + var fixtures_dir = __dirname + '/fixtures-coffee'; + +-test('local', function(done) { ++it('local', function(done) { + // resolve needs a parent filename or paths to be able to lookup files + // we provide a phony parent file + var parent = { +--- a/test/local-sync.js ++++ b/test/local-sync.js +@@ -3,7 +3,7 @@ + + var fixtures_dir = __dirname + '/fixtures'; + +-test('local', function() { ++it('local', function() { + // resolve needs a parent filename or paths to be able to lookup files + // we provide a phony parent file + var path = resolve.sync('./foo', { filename: fixtures_dir + '/phony.js' }); +--- a/test/local.js ++++ b/test/local.js +@@ -3,7 +3,7 @@ + + var fixtures_dir = __dirname + '/fixtures'; + +-test('local', function(done) { ++it('local', function(done) { + // resolve needs a parent filename or paths to be able to lookup files + // we provide a phony parent file + resolve('./foo', { filename: fixtures_dir + '/phony.js' }, function(err, path) { +--- a/test/modules-coffee.js ++++ b/test/modules-coffee.js +@@ -4,7 +4,7 @@ + var fixtures_dir = __dirname + '/fixtures-coffee/node_modules'; + + // no package.json, load index.js +-test('index.js of module dir', function(done) { ++it('index.js of module dir', function(done) { + var parent = { + paths: [ fixtures_dir ], + extensions: ['.js', '.coffee'] +@@ -17,7 +17,7 @@ + }); + + // package.json main field specifies other location +-test('alternate main', function(done) { ++it('alternate main', function(done) { + var parent = { + paths: [ fixtures_dir ], + extensions: ['.js', '.coffee'] +@@ -30,7 +30,7 @@ + }); + + // package.json has 'browser' field which is a string +-test('string browser field as main', function(done) { ++it('string browser field as main', function(done) { + var parent = { + paths: [ fixtures_dir ], + extensions: ['.js', '.coffee'] +@@ -43,7 +43,7 @@ + }); + + // package.json has 'browser' field which is a string +-test('string browser field as main - require subfile', function(done) { ++it('string browser field as main - require subfile', function(done) { + var parent = { + filename: fixtures_dir + '/module-c/browser.js', + paths: [ fixtures_dir + '/module-c/node_modules' ], +@@ -60,7 +60,7 @@ + // package.json has browser field as object + // one of the keys replaces the main file + // this would be done if the user needed to replace main and some other module +-test('object browser field as main', function(done) { ++it('object browser field as main', function(done) { + var parent = { + paths: [ fixtures_dir ], + extensions: ['.js', '.coffee'] +@@ -75,7 +75,7 @@ + // browser field in package.json maps ./foo.js -> ./browser.js + // when we resolve ./foo while in module-e, this mapping should take effect + // the result is that ./foo resolves to ./browser +-test('object browser field replace file', function(done) { ++it('object browser field replace file', function(done) { + var parent = { + filename: fixtures_dir + '/module-e/main.coffee', + extensions: ['.js', '.coffee'] +@@ -90,7 +90,7 @@ + + // same as above, but without a paths field in parent + // should still checks paths on the filename of parent +-test('object browser field replace file - no paths', function(done) { ++it('object browser field replace file - no paths', function(done) { + var parent = { + filename: fixtures_dir + '/module-f/lib/main.coffee', + extensions: ['.js', '.coffee'] +@@ -103,7 +103,7 @@ + }); + }); + +-test('replace module in browser field object', function(done) { ++it('replace module in browser field object', function(done) { + var parent = { + filename: fixtures_dir + '/module-g/index.js', + extensions: ['.js', '.coffee'] +--- a/test/modules-sync.js ++++ b/test/modules-sync.js +@@ -4,25 +4,25 @@ + var fixtures_dir = __dirname + '/fixtures/node_modules'; + + // no package.json, load index.js +-test('index.js of module dir', function() { ++it('index.js of module dir', function() { + var path = resolve.sync('module-a', { paths: [ fixtures_dir ], package: { main: 'fixtures' } }); + assert.equal(path, require.resolve('./fixtures/node_modules/module-a/index')); + }); + + // package.json main field specifies other location +-test('alternate main', function() { ++it('alternate main', function() { + var path = resolve.sync('module-b', { paths: [ fixtures_dir ], package: { main: 'fixtures' } }); + assert.equal(path, require.resolve('./fixtures/node_modules/module-b/main')); + }); + + // package.json has 'browser' field which is a string +-test('string browser field as main', function() { ++it('string browser field as main', function() { + var path = resolve.sync('module-c', { paths: [ fixtures_dir ], package: { main: 'fixtures' } }); + assert.equal(path, require.resolve('./fixtures/node_modules/module-c/browser')); + }); + + // package.json has 'browser' field which is a string +-test('string browser field as main - require subfile', function() { ++it('string browser field as main - require subfile', function() { + var parent = { + filename: fixtures_dir + '/module-c/browser.js', + paths: [ fixtures_dir + '/module-c/node_modules' ], +@@ -36,7 +36,7 @@ + // package.json has browser field as object + // one of the keys replaces the main file + // this would be done if the user needed to replace main and some other module +-test('object browser field as main', function() { ++it('object browser field as main', function() { + var path = resolve.sync('module-d', { paths: [ fixtures_dir ], package: { main: 'fixtures' } }); + assert.equal(path, require.resolve('./fixtures/node_modules/module-d/browser')); + }); +@@ -44,7 +44,7 @@ + // package.json has browser field as object + // one of the keys replaces the main file + // however the main has no prefix and browser uses ./ prefix for the same file +-test('object browser field as main', function() { ++it('object browser field as main', function() { + var path = resolve.sync('module-k', { paths: [ fixtures_dir ], package: { main: 'fixtures' } }); + assert.equal(path, require.resolve('./fixtures/node_modules/module-k/browser')); + }); +@@ -52,7 +52,7 @@ + // browser field in package.json maps ./foo.js -> ./browser.js + // when we resolve ./foo while in module-e, this mapping should take effect + // the result is that ./foo resolves to ./browser +-test('object browser field replace file', function() { ++it('object browser field replace file', function() { + var parent = { + filename: fixtures_dir + '/module-e/main.js', + package: { main: './main.js' } +@@ -63,7 +63,7 @@ + }); + + // browser field in package.json maps "module" -> "alternate module" +-test('test foobar -> module-b replacement', function() { ++it('test foobar -> module-b replacement', function() { + var parent = { + filename: fixtures_dir + '/module-h/index.js', + package: { main: './index.js' } +@@ -74,7 +74,7 @@ + }); + + // browser field in package.json maps "relative file" -> "relative file" with no extension +-test('test ./x -> ./y replacement', function() { ++it('test ./x -> ./y replacement', function() { + var parent = { + filename: fixtures_dir + '/module-t/index.js', + package: { main: './index.js' } +@@ -85,7 +85,7 @@ + }); + + // same as above but replacing core +-test('test core -> module-c replacement', function() { ++it('test core -> module-c replacement', function() { + var parent = { + filename: fixtures_dir + '/module-h/index.js', + package: { main: './index.js' } +@@ -96,7 +96,7 @@ + }); + + // browser field in package.json maps "module" -> "alternate module" +-test('test foobar -> module-b replacement with transform', function() { ++it('test foobar -> module-b replacement with transform', function() { + var parent = { + filename: fixtures_dir + '/module-i/index.js', + package: { main: './index.js' } +@@ -106,7 +106,7 @@ + assert.equal(path, require.resolve('./fixtures/node_modules/module-b/main')); + }); + +-test('test foobar -> module-i replacement with transform in replacement', function() { ++it('test foobar -> module-i replacement with transform in replacement', function() { + var parent = { + filename: fixtures_dir + '/module-j/index.js', + package: { main: './index.js' } +@@ -118,7 +118,7 @@ + + // same as above, but without a paths field in parent + // should still checks paths on the filename of parent +-test('object browser field replace file - no paths', function() { ++it('object browser field replace file - no paths', function() { + var parent = { + filename: fixtures_dir + '/module-f/lib/main.js', + package: { main: './lib/main.js' } +@@ -128,7 +128,7 @@ + assert.equal(path, require.resolve('./fixtures/node_modules/module-f/lib/browser')); + }); + +-test('replace module in browser field object', function() { ++it('replace module in browser field object', function() { + var parent = { + filename: fixtures_dir + '/module-g/index.js', + package: { main: './index.js' } +@@ -138,7 +138,7 @@ + assert.equal(path, require.resolve('./fixtures/node_modules/module-g/foobar-browser')); + }); + +-test('override engine shim', function() { ++it('override engine shim', function() { + var parent = { + filename: fixtures_dir + '/override-engine-shim/index.js', + package: { main: './index.js' }, +@@ -148,7 +148,7 @@ + assert.equal(path, require.resolve('./fixtures/node_modules/override-engine-shim/url-browser')); + }); + +-test('alt-browser field', function() { ++it('alt-browser field', function() { + var parent = { + filename: fixtures_dir + '/alt-browser-field/index.js', + package: { main: './index.js' }, +--- a/test/modules.js ++++ b/test/modules.js +@@ -4,7 +4,7 @@ + var fixtures_dir = __dirname + '/fixtures/node_modules'; + + // no package.json, load index.js +-test('index.js of module dir', function(done) { ++it('index.js of module dir', function(done) { + resolve('module-a', { paths: [ fixtures_dir ], package: { main: 'fixtures' } }, function(err, path, pkg) { + assert.ifError(err); + assert.equal(path, require.resolve('./fixtures/node_modules/module-a/index')); +@@ -14,7 +14,7 @@ + }); + + // package.json main field specifies other location +-test('alternate main', function(done) { ++it('alternate main', function(done) { + resolve('module-b', { paths: [ fixtures_dir ], package: { main: 'fixtures' } }, function(err, path, pkg) { + assert.ifError(err); + assert.equal(path, require.resolve('./fixtures/node_modules/module-b/main')); +@@ -24,7 +24,7 @@ + }); + + // package.json has 'browser' field which is a string +-test('string browser field as main', function(done) { ++it('string browser field as main', function(done) { + resolve('module-c', { paths: [ fixtures_dir ], package: { main: 'fixtures' } }, function(err, path, pkg) { + assert.ifError(err); + assert.equal(path, require.resolve('./fixtures/node_modules/module-c/browser')); +@@ -34,7 +34,7 @@ + }); + + // package.json has 'browser' field which is a string +-test('string browser field as main - require subfile', function(done) { ++it('string browser field as main - require subfile', function(done) { + var parent = { + filename: fixtures_dir + '/module-c/browser.js', + paths: [ fixtures_dir + '/module-c/node_modules' ], +@@ -50,7 +50,7 @@ + }); + + // package.json has an alternative 'browser' field which is a string +-test('string alt browser field as main - require subfile', function(done) { ++it('string alt browser field as main - require subfile', function(done) { + var parent = { + filename: fixtures_dir + '/module-c/chromeapp.js', + paths: [ fixtures_dir + '/module-c/node_modules' ], +@@ -69,7 +69,7 @@ + // package.json has browser field as object + // one of the keys replaces the main file + // this would be done if the user needed to replace main and some other module +-test('object browser field as main', function(done) { ++it('object browser field as main', function(done) { + resolve('module-d', { paths: [ fixtures_dir ], package: { main: 'fixtures' } }, function(err, path, pkg) { + assert.ifError(err); + assert.equal(path, require.resolve('./fixtures/node_modules/module-d/browser')); +@@ -81,7 +81,7 @@ + // package.json has browser field as object + // one of the keys replaces the main file + // however the main has no prefix and browser uses ./ prefix for the same file +-test('object browser field as main', function(done) { ++it('object browser field as main', function(done) { + resolve('module-k', { paths: [ fixtures_dir ], package: { main: 'fixtures' } }, function(err, path, pkg) { + assert.ifError(err); + assert.equal(path, require.resolve('./fixtures/node_modules/module-k/browser')); +@@ -90,7 +90,7 @@ + }); + }); + +-test('deep module reference mapping', function(done) { ++it('deep module reference mapping', function(done) { + resolve('module-l/direct', { basedir: __dirname + '/fixtures', package: { main: 'fixtures' } }, function(err, path, pkg) { + assert.ifError(err); + assert.equal(path, require.resolve('./fixtures/node_modules/module-l/browser-direct')); +@@ -101,14 +101,14 @@ + + // package.json has browser field as object + // test that file resolves even though the file extension is omitted +-test('deep module reference mapping without file extension - .js', function(done) { ++it('deep module reference mapping without file extension - .js', function(done) { + resolve('module-n/foo', { basedir: __dirname + '/fixtures', package: { main: 'fixtures' } }, function(err, path, pkg) { + assert.ifError(err); + assert.equal(path, require.resolve('./fixtures/node_modules/module-n/browser-foo')); + done(); + }); + }); +-test('deep module reference mapping without file extension - .json', function(done) { ++it('deep module reference mapping without file extension - .json', function(done) { + resolve('module-n/bar', { basedir: __dirname + '/fixtures', package: { main: 'fixtures' } }, function(err, path, pkg) { + assert.ifError(err); + assert.equal(path, require.resolve('./fixtures/node_modules/module-n/browser-bar')); +@@ -119,7 +119,7 @@ + // browser field in package.json maps ./foo.js -> ./browser.js + // when we resolve ./foo while in module-e, this mapping should take effect + // the result is that ./foo resolves to ./browser +-test('object browser field replace file', function(done) { ++it('object browser field replace file', function(done) { + var parent = { + filename: fixtures_dir + '/module-e/main.js', + package: { main: './main.js' } +@@ -134,7 +134,7 @@ + }); + + // browser field in package.json maps "module" -> "alternate module" +-test('test foobar -> module-b replacement', function(done) { ++it('test foobar -> module-b replacement', function(done) { + var parent = { + filename: fixtures_dir + '/module-h/index.js', + package: { main: './index.js' } +@@ -149,7 +149,7 @@ + }); + + // same as above but replacing core +-test('test core -> module-c replacement', function(done) { ++it('test core -> module-c replacement', function(done) { + var parent = { + filename: fixtures_dir + '/module-h/index.js', + package: { main: './index.js' } +@@ -164,7 +164,7 @@ + }); + + // same as above but with alt browser +-test('test core -> module-c replacement with alt browser', function(done) { ++it('test core -> module-c replacement with alt browser', function(done) { + var parent = { + filename: fixtures_dir + '/module-h/index.js', + package: { main: './index.js' }, +@@ -180,7 +180,7 @@ + }); + + // browser field in package.json maps "module" -> "alternate module" +-test('test foobar -> module-b replacement with transform', function(done) { ++it('test foobar -> module-b replacement with transform', function(done) { + var parent = { + filename: fixtures_dir + '/module-i/index.js', + package: { main: './index.js' } +@@ -195,7 +195,7 @@ + }); + + // browser field in package.json maps "relative file" -> "relative file" with no extension +-test('test ./x -> ./y replacement', function(done) { ++it('test ./x -> ./y replacement', function(done) { + var parent = { + filename: fixtures_dir + '/module-t/index.js', + package: { main: './index.js' } +@@ -208,7 +208,7 @@ + }); + }); + +-test('test foobar -> module-i replacement with transform in replacement', function(done) { ++it('test foobar -> module-i replacement with transform in replacement', function(done) { + var parent = { + filename: fixtures_dir + '/module-j/index.js', + package: { main: './index.js' } +@@ -226,7 +226,7 @@ + + // same as above, but without a paths field in parent + // should still checks paths on the filename of parent +-test('object browser field replace file - no paths', function(done) { ++it('object browser field replace file - no paths', function(done) { + var parent = { + filename: fixtures_dir + '/module-f/lib/main.js', + package: { main: './lib/main.js' } +@@ -240,7 +240,7 @@ + }); + }); + +-test('replace module in browser field object', function(done) { ++it('replace module in browser field object', function(done) { + var parent = { + filename: fixtures_dir + '/module-g/index.js', + package: { main: './index.js' } +@@ -254,7 +254,7 @@ + }); + }); + +-test('override engine shim', function(done) { ++it('override engine shim', function(done) { + var parent = { + filename: fixtures_dir + '/override-engine-shim/index.js', + package: { main: './index.js' }, +@@ -267,7 +267,7 @@ + }); + }); + +-test('alt-browser field', function(done) { ++it('alt-browser field', function(done) { + var parent = { + filename: fixtures_dir + '/alt-browser-field/index.js', + package: { main: './index.js' }, +@@ -282,7 +282,7 @@ + }); + }); + +-test('alt-browser deep module reference mapping', function(done) { ++it('alt-browser deep module reference mapping', function(done) { + resolve('alt-browser-field/direct', { + basedir: __dirname + '/fixtures', + package: { main: 'fixtures' }, +@@ -295,7 +295,7 @@ + }); + }); + +-test('alt-browser fallback to "browser" on deps of deps', function(done) { ++it('alt-browser fallback to "browser" on deps of deps', function(done) { + var parent = { + filename: fixtures_dir + '/alt-browser-field/foo.js', + package: { main: './index.js' }, +@@ -311,7 +311,7 @@ + }); + }); + +-test('not fail on accessing path name defined in Object.prototype', function (done) { ++it('not fail on accessing path name defined in Object.prototype', function (done) { + resolve('toString', { paths: [ fixtures_dir ], package: { main: 'fixtures' } }, function(err, path, pkg) { + assert.ifError(err); + assert.equal(path, require.resolve('./fixtures/node_modules/toString/index')); diff -Nru node-browser-resolve-1.11.3/debian/patches/series node-browser-resolve-1.11.3/debian/patches/series --- node-browser-resolve-1.11.3/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ node-browser-resolve-1.11.3/debian/patches/series 2020-12-27 08:46:34.000000000 +0000 @@ -0,0 +1 @@ +fix-test-for-mocha-8.patch diff -Nru node-browser-resolve-1.11.3/debian/rules node-browser-resolve-1.11.3/debian/rules --- node-browser-resolve-1.11.3/debian/rules 2019-11-19 06:03:33.000000000 +0000 +++ node-browser-resolve-1.11.3/debian/rules 2020-12-27 08:45:05.000000000 +0000 @@ -5,7 +5,7 @@ #export DH_VERBOSE=1 %: - dh $@ --with nodejs + dh $@ override_dh_installexamples: ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS) $(DEB_BUILD_PROFILES))) diff -Nru node-browser-resolve-1.11.3/debian/salsa-ci.yml node-browser-resolve-1.11.3/debian/salsa-ci.yml --- node-browser-resolve-1.11.3/debian/salsa-ci.yml 1970-01-01 00:00:00.000000000 +0000 +++ node-browser-resolve-1.11.3/debian/salsa-ci.yml 2020-12-27 08:45:08.000000000 +0000 @@ -0,0 +1,4 @@ +--- +include: + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml diff -Nru node-browser-resolve-1.11.3/debian/upstream/metadata node-browser-resolve-1.11.3/debian/upstream/metadata --- node-browser-resolve-1.11.3/debian/upstream/metadata 2019-11-19 05:59:50.000000000 +0000 +++ node-browser-resolve-1.11.3/debian/upstream/metadata 2020-12-27 08:45:02.000000000 +0000 @@ -1,5 +1,6 @@ --- Archive: GitHub Bug-Database: https://github.com/shtylman/node-browser-resolve/issues +Bug-Submit: https://github.com/shtylman/node-browser-resolve/issues/new Repository: https://github.com/shtylman/node-browser-resolve.git Repository-Browse: https://github.com/shtylman/node-browser-resolve