Comparing version 0.5.0 to 0.6.0
@@ -46,2 +46,3 @@ /* | ||
, 'else' : undefined | ||
, 'enum' : undefined | ||
, 'export' : undefined | ||
@@ -55,7 +56,15 @@ , 'extends' : undefined | ||
, 'if' : undefined | ||
, 'implements' : undefined | ||
, 'import' : undefined | ||
, 'in' : undefined | ||
, 'instanceof' : undefined | ||
, 'interface' : undefined | ||
, 'let' : undefined | ||
, 'new' : undefined | ||
, 'package' : undefined | ||
, 'private' : undefined | ||
, 'protected' : undefined | ||
, 'public' : undefined | ||
, 'return' : undefined | ||
@@ -62,0 +71,0 @@ , 'static' : undefined |
{ | ||
"name": "redeyed", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "Takes JavaScript code, along with a config and returns the original code with tokens wrapped as configured.", | ||
@@ -31,4 +31,4 @@ "author": "Thorsten Lorenz <thlorenz@gmx.de> (thlorenz.com)", | ||
"dependencies": { | ||
"esprima-fb": "~12001.1.0-dev-harmony-fb" | ||
"esprima": "~2.7.0" | ||
} | ||
} |
@@ -14,3 +14,3 @@ ;(function () { | ||
// server side | ||
esprima = require('esprima-fb'); | ||
esprima = require('esprima'); | ||
exportFn = function (redeyed) { module.exports = redeyed; }; | ||
@@ -21,3 +21,3 @@ bootstrap(esprima, exportFn); | ||
// amd | ||
define(['esprima-fb'], function (esprima) { | ||
define(['esprima'], function (esprima) { | ||
return bootstrap(esprima); | ||
@@ -24,0 +24,0 @@ }); |
@@ -9,3 +9,3 @@ 'use strict' | ||
, redeyedkey = require.resolve('..') | ||
, esprima = require('esprima-fb') | ||
, esprima = require('esprima') | ||
@@ -12,0 +12,0 @@ function setup() { |
@@ -7,3 +7,3 @@ 'use strict'; | ||
, redeyed = require('..') | ||
, esprima = require('esprima-fb') | ||
, esprima = require('esprima') | ||
@@ -10,0 +10,0 @@ function inspect (obj) { |
@@ -12,3 +12,3 @@ 'use strict'; | ||
, tapdir = path.join(node_modules, 'tap') | ||
, esprimadir = path.join(node_modules, 'esprima-fb') | ||
, esprimadir = path.join(node_modules, 'esprima') | ||
@@ -15,0 +15,0 @@ test('tap', function (t) { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
58547
1505
+ Addedesprima@~2.7.0
+ Addedesprima@2.7.3(transitive)
- Removedesprima-fb@~12001.1.0-dev-harmony-fb
- Removedesprima-fb@12001.1.0-dev-harmony-fb(transitive)