Skip to content
This repository has been archived by the owner on Jun 4, 2022. It is now read-only.

Upgrade to Node.js 8.0.0 and Google Closure Compiler v20170521 #173

Merged
merged 1 commit into from
May 31, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ sudo: required
dist: trusty
language: node_js
node_js:
- 7
- 8
cache:
directories:
- node_modules
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
### Changes

- Upgrade ClojureScript to version 1.9.562.
- Upgrade Node.js to version 8.0.0 ([#173](https://github.com/anmonteiro/lumo/pull/173)).
- Upgrade Google Closure Compiler to v20170521 ([#173](https://github.com/anmonteiro/lumo/pull/173)).

### Bug fixes

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
environment:
nodejs_version: "7.0.0"
nodejs_version: "8.0.0"

platform:
- x64
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"main": "./src/js/index.js",
"dependencies": {
"google-closure-compiler-js": "^20170409.0.0",
"google-closure-compiler-js": "^20170521.0.0",
"jszip": "2.6.1",
"opencollective": "^1.0.0",
"parinfer": "2.0.0",
Expand All @@ -39,7 +39,7 @@
"eslint-config-airbnb": "^15.0.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
Expand Down
2 changes: 1 addition & 1 deletion scripts/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const os = require('os');
const zlib = require('zlib');
const embed = require('./embed');

const nodeVersion = '7.10.0';
const nodeVersion = '8.0.0';

function getDirContents(dir, accumPath = dir) {
let filenames = fs.readdirSync(dir);
Expand Down
2 changes: 1 addition & 1 deletion src/js/repl.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ function highlight(
// $FlowIssue
const oldInput = rl.input;
// $FlowIssue: constructor accepts 2 args
const readStream = new tty.ReadStream(null, {});
const readStream = new tty.ReadStream(0, {});
readStream.setRawMode(true);
readline.emitKeypressEvents(readStream, rl);

Expand Down
12 changes: 6 additions & 6 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1778,9 +1778,9 @@ eslint-plugin-babel@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/eslint-plugin-babel/-/eslint-plugin-babel-4.1.1.tgz#ef285c87039b67beb3bbd227f5b0eed4fb376b87"

eslint-plugin-flowtype@^2.33.0:
version "2.33.0"
resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.33.0.tgz#b2783814ed2ddcf729953b8f65ff73c90cabee4b"
eslint-plugin-flowtype@^2.34.0:
version "2.34.0"
resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.34.0.tgz#b9875f314652e5081623c9d2b18a346bbb759c09"
dependencies:
lodash "^4.15.0"

Expand Down Expand Up @@ -2154,9 +2154,9 @@ globby@^5.0.0:
pify "^2.0.0"
pinkie-promise "^2.0.0"

google-closure-compiler-js@^20170409.0.0:
version "20170409.0.0"
resolved "https://registry.yarnpkg.com/google-closure-compiler-js/-/google-closure-compiler-js-20170409.0.0.tgz#e71063ab2bf26db794732222ec76ba07403df854"
google-closure-compiler-js@^20170521.0.0:
version "20170521.0.0"
resolved "https://registry.yarnpkg.com/google-closure-compiler-js/-/google-closure-compiler-js-20170521.0.0.tgz#9ac5fd6818aa500333a199ed0a9d0449e52120c9"
dependencies:
minimist "^1.2.0"
vinyl "^2.0.1"
Expand Down