Comparing version 1.6.1 to 1.6.2
@@ -0,1 +1,10 @@ | ||
### Version 1.6.2 (2018-04-23) | ||
- Fixed: The dependency range for shift-codegen allowed newer versions, but | ||
eslump relies on a non-public part of it which can change at any time – which | ||
it did (see [#5]). The shift-codegen version is now updated and the changes | ||
for the non-public stuff has been made. The version has also been locked down | ||
to avoid this problem in the future. Thanks to Toru Nagashima (@mysticatea)! | ||
### Version 1.6.1 (2018-03-12) | ||
@@ -70,1 +79,4 @@ | ||
- Initial release. | ||
[#5]: https://github.com/lydell/eslump/issues/5 |
@@ -364,3 +364,5 @@ "use strict"; | ||
? error.lineNumber | ||
: typeof error.line === "number" ? error.line : undefined; | ||
: typeof error.line === "number" | ||
? error.line | ||
: undefined; | ||
@@ -370,3 +372,5 @@ const column = | ||
? error.loc.column + 1 | ||
: typeof error.column === "number" ? error.column : undefined; | ||
: typeof error.column === "number" | ||
? error.column | ||
: undefined; | ||
@@ -373,0 +377,0 @@ return { line, column }; |
"use strict"; | ||
const ShiftCodegen = require("shift-codegen"); | ||
const TokenStream = require("shift-codegen/dist/token_stream").TokenStream; | ||
const TokenStream = require("shift-codegen/dist/token-stream").TokenStream; | ||
const shiftFuzzer = require("shift-fuzzer"); | ||
@@ -6,0 +6,0 @@ const shiftReducer = require("shift-reducer"); |
{ | ||
"name": "eslump", | ||
"version": "1.6.1", | ||
"version": "1.6.2", | ||
"license": "MIT", | ||
@@ -34,3 +34,3 @@ "author": "Simon Lydell", | ||
"dependencies": { | ||
"@babel/code-frame": "^7.0.0-beta.40", | ||
"@babel/code-frame": "^7.0.0-beta.46", | ||
"mkdirp": "^0.5.1", | ||
@@ -40,23 +40,23 @@ "optionator": "^0.8.2", | ||
"random-item": "^1.0.0", | ||
"shift-codegen": "^5.0.5", | ||
"shift-codegen": "5.1.0", | ||
"shift-fuzzer": "^1.0.2", | ||
"shift-reducer": "^4.2.0" | ||
"shift-reducer": "^4.3.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/generator": "^7.0.0-beta.40", | ||
"@babel/generator": "^7.0.0-beta.46", | ||
"acorn": "^5.5.3", | ||
"babel-generator": "^6.26.1", | ||
"babylon": "^7.0.0-beta.40", | ||
"cherow": "^1.3.0", | ||
"cherow": "^1.4.10", | ||
"escodegen": "^1.9.1", | ||
"eslint": "^4.18.2", | ||
"eslint-plugin-node": "^6.0.1", | ||
"eslint-plugin-prettier": "^2.6.0", | ||
"eslint": "4.19.1", | ||
"eslint-plugin-node": "6.0.1", | ||
"eslint-plugin-prettier": "2.6.0", | ||
"espree": "^3.5.4", | ||
"esprima": "^4.0.0", | ||
"flow-parser": "^0.67.1", | ||
"prettier": "^1.11.1", | ||
"shift-parser": "^5.2.3", | ||
"unexpected": "^10.37.2" | ||
"flow-parser": "^0.70.0", | ||
"prettier": "1.12.1", | ||
"shift-parser": "^5.2.4", | ||
"unexpected": "^10.37.5" | ||
} | ||
} |
34192
657
Updatedshift-codegen@5.1.0
Updatedshift-reducer@^4.3.0