Bug 1226810 - Modifications to tern after upgrade;r=fitzgen

--HG--
extra : commitid : EVn7Fm4DN5H
This commit is contained in:
Brian Grinstead 2015-12-16 10:15:23 -08:00
Родитель dc34963393
Коммит 2f552a73d1
3 изменённых файлов: 7 добавлений и 4 удалений

Просмотреть файл

@ -8,3 +8,6 @@ Tern is a stand-alone code-analysis engine for JavaScript. It is intended to be
Currently used version is 0.6.2. To upgrade, download the latest release from http://ternjs.net/, and copy the files from lib/ into this directory.
You may also need to update the CodeMirror plugin found in devtools/client/sourceeditor/codemirror/addon/tern, but it will most likely work without updating.
Replace instances of `require("acorn")` with `require("acorn/acorn")`
Replace instances of `acorn/dist/` with `acorn/`

Просмотреть файл

@ -14,10 +14,10 @@
(function(root, mod) {
if (typeof exports == "object" && typeof module == "object") // CommonJS
return mod(exports, require("acorn"), require("acorn/dist/acorn_loose"), require("acorn/dist/walk"),
return mod(exports, require("acorn/acorn"), require("acorn/acorn_loose"), require("acorn/walk"),
require("./def"), require("./signal"));
if (typeof define == "function" && define.amd) // AMD
return define(["exports", "acorn/dist/acorn", "acorn/dist/acorn_loose", "acorn/dist/walk", "./def", "./signal"], mod);
return define(["exports", "acorn/acorn", "acorn/acorn_loose", "acorn/walk", "./def", "./signal"], mod);
mod(root.tern || (root.tern = {}), acorn, acorn, acorn.walk, tern.def, tern.signal); // Plain browser env
})(this, function(exports, acorn, acorn_loose, walk, def, signal) {
"use strict";

Просмотреть файл

@ -7,9 +7,9 @@
(function(root, mod) {
if (typeof exports == "object" && typeof module == "object") // CommonJS
return mod(exports, require("./infer"), require("./signal"),
require("acorn"), require("acorn/dist/walk"));
require("acorn/acorn"), require("acorn/walk"));
if (typeof define == "function" && define.amd) // AMD
return define(["exports", "./infer", "./signal", "acorn/dist/acorn", "acorn/dist/walk"], mod);
return define(["exports", "./infer", "./signal", "acorn/acorn", "acorn/walk"], mod);
mod(root.tern || (root.tern = {}), tern, tern.signal, acorn, acorn.walk); // Plain browser env
})(this, function(exports, infer, signal, acorn, walk) {
"use strict";