Skip to content

Commit

Permalink
2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
robertrypula committed Aug 15, 2018
1 parent 4ff2a23 commit 8dd365b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "terminal-game-io",
"version": "2.1.0",
"version": "2.1.1",
"description": "It's never been easier to start writing terminal games in NodeJs. This package handles for you basic input (keyboard events) and output (ASCII 'frame'). If you like to share your games directly in the browser don't worry - simple 'web terminal' emulator is supported too.",
"keywords": [
"terminal games",
Expand All @@ -24,7 +24,7 @@
"npm-check": "npm-check --skip-unused",
"npm-check:u": "npm-check --skip-unused -u"
},
"main": "dist/terminal-game-io-v2.1.0.js",
"main": "dist/terminal-game-io-v2.1.1.js",
"types": "dist/main.d.ts",
"files": [
"dist/"
Expand Down
2 changes: 1 addition & 1 deletion src/assets/demo-vanilla.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) 2018 Robert Rypuła - https://github.com/robertrypula/terminal-game-io

const TerminalGameIo =
require('./terminal-game-io-v2.1.0.js'); // in your application replace it to: require('terminal-game-io');
require('./terminal-game-io-v2.1.1.js'); // in your application replace it to: require('terminal-game-io');
const createTerminalGameIo = TerminalGameIo.createTerminalGameIo;

const FPS = 5;
Expand Down
2 changes: 1 addition & 1 deletion src/lib/version.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (c) 2018 Robert Rypuła - https://github.com/robertrypula/terminal-game-io

export const version = '2.1.0';
export const version = '2.1.1';
export const author = 'Robert Rypuła';
export const githubUrl = 'https://github.com/robertrypula';

0 comments on commit 8dd365b

Please sign in to comment.