Skip to content

Commit

Permalink
v3.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Rogier Schouten committed Nov 26, 2016
1 parent 1e58f99 commit 65b21a4
Show file tree
Hide file tree
Showing 21 changed files with 43 additions and 53 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,12 @@ myEvent.post(); // no need to pass 'undefined'

## Changelog

v3.1.4 (2016-11-26)

* Use new @types typings
* Upgrade NPM packages
* Fix new TSLint errors

v3.1.3 (2016-10-28)

* Inlined sourcemaps since the .map files were not published to npm
Expand Down Expand Up @@ -529,5 +535,5 @@ v0.0.1 (2015-04-27):

## License

Copyright (c) 2015 Rogier Schouten <github@workingcode.ninja>
Copyright 2015 Rogier Schouten <github@workingcode.ninja>
ISC (see LICENSE file in repository root).
26 changes: 9 additions & 17 deletions dist/ts-events.js

Large diffs are not rendered by default.

26 changes: 9 additions & 17 deletions examples/browser-amd-requirejs/ts-events.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/nodejs-commonjs-TypeScript/sync.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015 Rogier Schouten<github@workingcode.ninja>
// Copyright © 2015 Rogier Schouten<github@workingcode.ninja>

'use strict';

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ts-events",
"version": "3.1.3",
"version": "3.1.4",
"description": "Various EventEmitter event replacements with synchronous, a-synchronous, and queued events. Made in TypeScript so usable with JavaScript and TypeScript.",
"homepage": "https://github.com/rogierschouten/ts-events",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/EventQueue.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015 Rogier Schouten<github@workingcode.ninja>
// Copyright © 2015 Rogier Schouten<github@workingcode.ninja>
// License: ISC

'use strict';
Expand Down
2 changes: 1 addition & 1 deletion src/lib/any-event.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015 Rogier Schouten<github@workingcode.ninja>
// Copyright © 2015 Rogier Schouten<github@workingcode.ninja>
// License: ISC

'use strict';
Expand Down
2 changes: 1 addition & 1 deletion src/lib/async-event.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015 Rogier Schouten<github@workingcode.ninja>
// Copyright © 2015 Rogier Schouten<github@workingcode.ninja>
// License: ISC

'use strict';
Expand Down
2 changes: 1 addition & 1 deletion src/lib/base-event.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015 Rogier Schouten<github@workingcode.ninja>
// Copyright © 2015 Rogier Schouten<github@workingcode.ninja>
// License: ISC

'use strict';
Expand Down
2 changes: 1 addition & 1 deletion src/lib/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015 Rogier Schouten<github@workingcode.ninja>
// Copyright © 2015 Rogier Schouten<github@workingcode.ninja>
// License: ISC

'use strict';
Expand Down
2 changes: 1 addition & 1 deletion src/lib/objects.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015 Rogier Schouten<github@workingcode.ninja>
// Copyright © 2015 Rogier Schouten<github@workingcode.ninja>
// License: ISC

'use strict';
Expand Down
2 changes: 1 addition & 1 deletion src/lib/queued-event.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015 Rogier Schouten<github@workingcode.ninja>
// Copyright © 2015 Rogier Schouten<github@workingcode.ninja>
// License: ISC

'use strict';
Expand Down
2 changes: 1 addition & 1 deletion src/lib/sync-event.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015 Rogier Schouten<github@workingcode.ninja>
// Copyright © 2015 Rogier Schouten<github@workingcode.ninja>
// License: ISC

'use strict';
Expand Down
2 changes: 1 addition & 1 deletion src/test/test-any-event.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015 Rogier Schouten<github@workingcode.ninja>
// Copyright © 2015 Rogier Schouten<github@workingcode.ninja>

import assert = require('assert');
import {expect} from 'chai';
Expand Down
2 changes: 1 addition & 1 deletion src/test/test-async-event.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015 Rogier Schouten<github@workingcode.ninja>
// Copyright © 2015 Rogier Schouten<github@workingcode.ninja>

import assert = require('assert');
import {expect} from 'chai';
Expand Down
2 changes: 1 addition & 1 deletion src/test/test-base-event.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015 Rogier Schouten<github@workingcode.ninja>
// Copyright © 2015 Rogier Schouten<github@workingcode.ninja>

import assert = require('assert');
import {expect} from 'chai';
Expand Down
2 changes: 1 addition & 1 deletion src/test/test-event-queue.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015 Rogier Schouten<github@workingcode.ninja>
// Copyright © 2015 Rogier Schouten<github@workingcode.ninja>

/* tslint:disable:no-empty */

Expand Down
2 changes: 1 addition & 1 deletion src/test/test-index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015 Rogier Schouten<github@workingcode.ninja>
// Copyright © 2015 Rogier Schouten<github@workingcode.ninja>

import assert = require('assert');
import {expect} from 'chai';
Expand Down
2 changes: 1 addition & 1 deletion src/test/test-objects.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015 Rogier Schouten<github@workingcode.ninja>
// Copyright © 2015 Rogier Schouten<github@workingcode.ninja>

import assert = require('assert');
import {expect} from 'chai';
Expand Down
2 changes: 1 addition & 1 deletion src/test/test-queued-event.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015 Rogier Schouten<github@workingcode.ninja>
// Copyright © 2015 Rogier Schouten<github@workingcode.ninja>

import assert = require('assert');
import {expect} from 'chai';
Expand Down
2 changes: 1 addition & 1 deletion src/test/test-sync-event.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015 Rogier Schouten<github@workingcode.ninja>
// Copyright © 2015 Rogier Schouten<github@workingcode.ninja>

import assert = require('assert');
import {expect} from 'chai';
Expand Down

0 comments on commit 65b21a4

Please sign in to comment.