Skip to content

Commit

Permalink
Some dep updates
Browse files Browse the repository at this point in the history
* Fix grammar rule that used to work in 0.8.0 to work with 0.9.0 ... this was my bad too
* Knew `var` was going to be needed at some point with `upmix` as I thought it was a little peculiar in *pegjs* grammar
* Retested both grammars at http://pegjs.org/online ... should be a bit faster now that it alleges strict mode for that project

* Update *jwt-simple*... only code change is an exception trap for lack of token

Some post OpenUserJS#285 fixes with/and upward migration
  • Loading branch information
Martii committed Aug 30, 2015
1 parent 85a5bfe commit c94c625
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"github": "0.2.4",
"highlight.js": "8.7.0",
"jquery": "2.1.4",
"jwt-simple": "0.3.0",
"jwt-simple": "0.3.1",
"less-middleware": "2.0.1",
"marked": "0.3.5",
"method-override": "2.3.5",
Expand All @@ -50,7 +50,7 @@
"passport-twitter": "1.0.3",
"passport-windowslive": "1.0.1",
"passport-yahoo": "0.3.0",
"pegjs": "0.8.0",
"pegjs": "0.9.0",
"request": "2.61.0",
"sanitize-html": "1.9.0",
"select2": "3.5.2-browserify",
Expand Down
4 changes: 2 additions & 2 deletions public/pegjs/blockUserScript.pegjs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Test the generated parser with some input for PEG.js site at http://pegjs.org/on
*/

{
upmix = function (aKeyword) {
var upmix = function (aKeyword) {
// Keywords need to mirrored in the below rules for detection and transformation
switch (aKeyword) {
case 'homepage':
Expand Down Expand Up @@ -90,7 +90,7 @@ line =
item1Localized /

items1 /
items2 /
items2
)
'\n'?
{
Expand Down

0 comments on commit c94c625

Please sign in to comment.