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

Commit

Permalink
bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
anmonteiro committed Aug 16, 2017
1 parent 9fdcab8 commit 4dd3908
Show file tree
Hide file tree
Showing 7 changed files with 419 additions and 506 deletions.
2 changes: 1 addition & 1 deletion .flowconfig
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe
suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError

[version]
^0.52.0
^0.53.0
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ for a function that will run when accepting a new connection.
### Changes

- Use Paredit.js to calculate indentation for multiline forms ([#193](https://github.com/anmonteiro/lumo/issues/193)).
- Upgrade Google Closure Compiler to v20170626.
- Upgrade Node.js to version 8.3.0.
- Upgrade Google Closure Compiler to v20170806.
- Upgrade ClojureScript to version 1.9.908.
- Upgrade Node.js to version 8.4.0.
- **BREAKING**: Remove `lumo.core/*command-line-args*` in favor of the new `cljs.core/*command-line-args*`
introduced in ClojureScript 1.9.8XX.

Expand Down
4 changes: 2 additions & 2 deletions build.boot
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
:source-paths #{"src/cljs/snapshot"}
:asset-paths #{"src/js" "src/cljs/bundled"}
:dependencies '[[org.clojure/clojure "1.9.0-alpha17"]
[org.clojure/clojurescript "1.9.854"]
[org.clojure/clojurescript "1.9.908"]
[org.clojure/tools.reader "1.0.5"]
[com.cognitect/transit-cljs "0.8.239"]
[malabarba/lazy-map "1.3"]
[fipp "0.6.9"]
[org.clojure/test.check "0.10.0-alpha2" :scope "test"]
[com.cognitect/transit-clj "0.8.300" :scope "test"]
[com.cemerick/piggieback "0.2.2" :scope "test"]
[adzerk/boot-cljs "2.1.0" :scope "test"]
[adzerk/boot-cljs "2.1.1" :scope "test"]
[crisptrutski/boot-cljs-test "0.3.2-SNAPSHOT" :scope "test"]
[org.clojure/tools.nrepl "0.2.13" :scope "test"]
[weasel "0.7.0" :scope "test"]
Expand Down
21 changes: 11 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lumo",
"version": "1.6.0",
"version": "1.7.0-RC",
"description": "Fast, cross-platform, standalone ClojureScript REPL",
"author": "António Nuno Monteiro <anmonteiro@gmail.com> (https://anmonteiro.com)",
"license": "EPL-1.0",
Expand All @@ -24,10 +24,11 @@
},
"main": "./src/js/index.js",
"dependencies": {
"google-closure-compiler-js": "^20170626.0.0",
"google-closure-compiler-js": "^20170806.0.0",
"jszip": "2.6.1",
"paredit.js": "0.3.2",
"posix-getopt": "github:anmonteiro/node-getopt#master"
"posix-getopt": "github:anmonteiro/node-getopt#master",
"vega-lite": "^2.0.0-beta.10"
},
"devDependencies": {
"babel-eslint": "7.2.3",
Expand All @@ -36,23 +37,23 @@
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"cross-env": "5.0.3",
"eslint": "4.4.0",
"cross-env": "5.0.5",
"eslint": "4.4.1",
"eslint-config-airbnb": "15.1.0",
"eslint-config-airbnb-base": "11.3.1",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-flowtype": "2.35.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.1.0",
"flow-bin": "0.52.0",
"eslint-plugin-react": "7.2.1",
"flow-bin": "0.53.0",
"jest-cli": "20.1.0-delta.5",
"nexe": "github:anmonteiro/nexe#master",
"opencollective": "1.0.3",
"prettier": "1.5.3",
"rollup": "0.45.2",
"rollup-plugin-babel": "3.0.0-alpha.12",
"rollup-plugin-babili": "3.1.0",
"rollup": "0.47.5",
"rollup-plugin-babel": "3.0.2",
"rollup-plugin-babel-minify": "3.1.2",
"rollup-plugin-commonjs": "8.1.0",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-replace": "1.1.1"
Expand Down
4 changes: 2 additions & 2 deletions scripts/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const babel = require('rollup-plugin-babel');
const replace = require('rollup-plugin-replace');
const resolve = require('rollup-plugin-node-resolve');
const commonjs = require('rollup-plugin-commonjs');
const babili = require('rollup-plugin-babili');
const babelMinify = require('rollup-plugin-babel-minify');

const pkg = require('../package.json');
const argv = process.argv.slice(2);
Expand Down Expand Up @@ -75,7 +75,7 @@ const plugins = [

if (!isDevBuild) {
plugins.push(
babili({
babelMinify({
comments: false,
removeConsole: true,
removeDebugger: true,
Expand Down
2 changes: 1 addition & 1 deletion scripts/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const os = require('os');
const zlib = require('zlib');
const embed = require('./embed');

const nodeVersion = '8.3.0';
const nodeVersion = '8.4.0';

function getDirContents(dir, accumPath = dir) {
let filenames = fs.readdirSync(dir);
Expand Down
Loading

0 comments on commit 4dd3908

Please sign in to comment.