Skip to content

Commit 49720f1

Browse files
Merge pull request #74 from RobotlegsJS/copyright
Adds Copyright Notice
2 parents 678b347 + 60cb0a5 commit 49720f1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+418
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020

2121
### v0.1.2
2222

23+
- Adds copyright notice (see #74).
24+
2325
- Enforce TSLint rules (see #55).
2426

2527
- Update TypeScript Compiler Options (see #53).

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017 RobotlegsJS
3+
Copyright (c) 2017-present, RobotlegsJS
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
SignalsJS
22
===
33

4+
[![GitHub license](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobotlegsJS/SignalsJS/blob/master/LICENSE)
45
[![Gitter chat](https://badges.gitter.im/RobotlegsJS/RobotlegsJS.svg)](https://gitter.im/RobotlegsJS/RobotlegsJS)
56
[![Build Status](https://travis-ci.org/RobotlegsJS/SignalsJS.svg?branch=master)](https://travis-ci.org/RobotlegsJS/SignalsJS)
67
[![codebeat badge](https://codebeat.co/badges/6c8aeb0d-177d-4d51-a011-557d16d6d167)](https://codebeat.co/projects/github-com-robotlegsjs-signalsjs-master)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"tslint:src": "tslint --project tsconfig.json",
1313
"tslint:test": "tslint --config tslint.test.json --project tsconfig.test.json",
1414
"tslint": "npm run tslint-check:src && npm run tslint-check:test && npm run tslint:src && npm run tslint:test",
15-
"autoformat": "prettier --config .prettierrc --write {src,test}/**/{*,*.test}.ts",
15+
"autoformat": "prettier --config .prettierrc --write {src,test}{/,/**/}{*,*.test}.ts",
1616
"clean-up": "rimraf .nyc_output && rimraf coverage && rimraf lib",
1717
"compile": "tsc -d",
1818
"dev": "webpack",

src/index.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
export { DeluxeSignal } from "./org/osflash/signals/DeluxeSignal";
29
export { GenericEvent } from "./org/osflash/signals/events/GenericEvent";
310
export { IBubbleEventHandler } from "./org/osflash/signals/events/IBubbleEventHandler";

src/org/osflash/signals/DeluxeSignal.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
import { PrioritySignal } from "./PrioritySignal";
29
import { SlotList } from "./SlotList";
310
import { IEvent } from "./events/IEvent";

src/org/osflash/signals/IOnceSignal.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
import { ISlot } from "./ISlot";
29

310
/**

src/org/osflash/signals/IPrioritySignal.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
import { ISlot } from "./ISlot";
29
import { ISignal } from "./ISignal";
310

src/org/osflash/signals/ISignal.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
import { ISlot } from "./ISlot";
29
import { IOnceSignal } from "./IOnceSignal";
310

src/org/osflash/signals/ISlot.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
/**
29
* The ISlot interface defines the basic properties of a
310
* listener associated with a Signal.

0 commit comments

Comments
 (0)