Skip to content

Commit 5d3503a

Browse files
Merge pull request #67 from RobotlegsJS/greenkeeper/@robotlegsjs/core-0.2.0
Update @robotlegsjs/core to the latest version 🚀
2 parents b0936d1 + 942e2b5 commit 5d3503a

29 files changed

+42
-66
lines changed

CHANGELOG.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,21 @@
66

77
- [ ] Use [**Function Types**](https://www.typescriptlang.org/docs/handbook/functions.html) for handlers and callbacks instead of generic **Function** type.
88

9-
- [ ] Update **Prettier** rules:
9+
- [x] Update **Prettier** rules:
1010

1111
- [x] **printWidth** should be around **140** characters per line.
1212

13-
- [ ] Find a way to keep a new line between **@inject** anotation and property declarations.
13+
- [x] Find a way to keep a new line between **@inject** anotation and property declarations.
1414

1515
- [x] Improve Code Coverage to reach 100%.
1616

17-
## RobotlegsJS-SignalCommandMap 0.1.0
17+
## RobotlegsJS-SignalCommandMap 0.2.0
18+
19+
### v0.2.0
1820

19-
### v0.1.1
21+
- Update @robotlegsjs/core to version 0.2.0 (see #67).
22+
23+
- Update @robotlegsjs/signals to version 0.2.0 (see #66).
2024

2125
- Update TypeScript Compiler Options (see #55, $64).
2226

@@ -32,14 +36,12 @@
3236

3337
- Update codeclimate settings (see #43).
3438

35-
- Update @robotlegsjs/core to version 0.1.3 (see #41).
36-
37-
- Update @robotlegsjs/signals to version 0.2.0 (see #66).
38-
3939
- Adopts year-agnostic copyright message.
4040

4141
- Update dev dependencies to latest version.
4242

43+
## RobotlegsJS-SignalCommandMap 0.1.0
44+
4345
### [v0.1.0](https://github.com/RobotlegsJS/RobotlegsJS-SignalCommandMap/releases/tag/0.1.0) - 2017-11-16
4446

4547
- Update @robotlegsjs/signals to version 0.0.12 (see #26).

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
},
6666
"homepage": "https://github.com/RobotlegsJS/RobotlegsJS-SignalCommandMap#readme",
6767
"dependencies": {
68-
"@robotlegsjs/core": "^0.1.3",
68+
"@robotlegsjs/core": "^0.2.0",
6969
"@robotlegsjs/signals": "^0.2.0"
7070
},
7171
"devDependencies": {

test/robotlegs/bender/extensions/signalCommandMap/support/CallbackCommand.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
// in accordance with the terms of the license agreement accompanying it.
66
// ------------------------------------------------------------------------------
77

8-
import { injectable, inject, named } from "inversify";
9-
10-
import { ICommand } from "@robotlegsjs/core";
8+
import { injectable, inject, named, ICommand } from "@robotlegsjs/core";
119

1210
@injectable()
1311
export class CallbackCommand implements ICommand {

test/robotlegs/bender/extensions/signalCommandMap/support/CallbackParametersCommand.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
// in accordance with the terms of the license agreement accompanying it.
66
// ------------------------------------------------------------------------------
77

8-
import { injectable, inject, named, optional } from "inversify";
9-
10-
import { ICommand } from "@robotlegsjs/core";
8+
import { injectable, inject, named, optional, ICommand } from "@robotlegsjs/core";
119

1210
@injectable()
1311
export class CallbackParametersCommand implements ICommand {

test/robotlegs/bender/extensions/signalCommandMap/support/CascadingCommand.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
// in accordance with the terms of the license agreement accompanying it.
66
// ------------------------------------------------------------------------------
77

8-
import { injectable, inject, named } from "inversify";
9-
10-
import { IInjector, ICommand } from "@robotlegsjs/core";
8+
import { injectable, inject, named, IInjector, ICommand } from "@robotlegsjs/core";
119

1210
import { ISignalCommandMap } from "../../../../../../src/robotlegs/bender/extensions/signalCommandMap/api/ISignalCommandMap";
1311

test/robotlegs/bender/extensions/signalCommandMap/support/Data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// in accordance with the terms of the license agreement accompanying it.
66
// ------------------------------------------------------------------------------
77

8-
import { injectable } from "inversify";
8+
import { injectable } from "@robotlegsjs/core";
99

1010
@injectable()
1111
export class Data {

test/robotlegs/bender/extensions/signalCommandMap/support/ExecuteMethodWithParametersCommand.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
// in accordance with the terms of the license agreement accompanying it.
66
// ------------------------------------------------------------------------------
77

8-
import { injectable, inject, named } from "inversify";
9-
10-
import { ICommand } from "@robotlegsjs/core";
8+
import { injectable, inject, named, ICommand } from "@robotlegsjs/core";
119

1210
import { Payload } from "./Payload";
1311

test/robotlegs/bender/extensions/signalCommandMap/support/NullCommand.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
// in accordance with the terms of the license agreement accompanying it.
66
// ------------------------------------------------------------------------------
77

8-
import { injectable } from "inversify";
9-
10-
import { ICommand } from "@robotlegsjs/core";
8+
import { injectable, ICommand } from "@robotlegsjs/core";
119

1210
@injectable()
1311
export class NullCommand implements ICommand {

test/robotlegs/bender/extensions/signalCommandMap/support/ParametersSignal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// in accordance with the terms of the license agreement accompanying it.
66
// ------------------------------------------------------------------------------
77

8-
import { injectable } from "inversify";
8+
import { injectable } from "@robotlegsjs/core";
99

1010
import { Signal } from "@robotlegsjs/signals";
1111

test/robotlegs/bender/extensions/signalCommandMap/support/Payload.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// in accordance with the terms of the license agreement accompanying it.
66
// ------------------------------------------------------------------------------
77

8-
import { injectable } from "inversify";
8+
import { injectable } from "@robotlegsjs/core";
99

1010
@injectable()
1111
export class Payload {}

0 commit comments

Comments
 (0)