Skip to content

Commit 8d4fe73

Browse files
Merge pull request #246 from conveyal/dev
v4.3.1
2 parents 7ec4c46 + ac95fc1 commit 8d4fe73

15 files changed

+4126
-2424
lines changed

.flowconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[ignore]
2-
.*/node_modules/module-deps/test/invalid_pkg/package.json
2+
.*/node_modules/*.

__tests__/lib/__snapshots__/jest.js.snap

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Array [
2323
"<rootDir>/node_modules/",
2424
"<rootDir>/__tests__/test-utils",
2525
],
26+
"testURL": "http://localhost:9966",
2627
},
2728
"these",
2829
"files",

bin/mastarm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const commander = require('commander')
44

5-
const mastarmVersion = require('../package.json').version
5+
const mastarmVersion = require('../package.json').version || 'development'
66

77
commander
88
.version(mastarmVersion)

flow-typed/npm/babel-preset-stage-2_vx.x.x.js

-32
This file was deleted.

flow-typed/npm/commander_v2.x.x.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// flow-typed signature: 9a1fb3feac221b50aab621209bf8ca9c
2-
// flow-typed version: 94e9f7e0a4/commander_v2.x.x/flow_>=v0.28.x
1+
// flow-typed signature: 2f8d6030763c8b095b61b80cc252dd2d
2+
// flow-typed version: 6a6e124485/commander_v2.x.x/flow_>=v0.28.x
33

44
declare module "commander" {
55
declare class Command extends events$EventEmitter {
@@ -275,7 +275,7 @@ declare module "commander" {
275275
}
276276

277277
declare module.exports: Command & {
278-
Command: Command,
279-
Option: Option
278+
Command: (name?: string) => Command;
279+
Options: (flags: string, description?: string) => Option;
280280
};
281281
}

0 commit comments

Comments
 (0)