You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2019/12/18 17:59:45 UTC

[couchdb-escodegen] reference refs/pull/302/head created (now 65b9081)

This is an automated email from the ASF dual-hosted git repository.

davisp pushed a change to reference refs/pull/302/head
in repository https://gitbox.apache.org/repos/asf/couchdb-escodegen.git.


      at 65b9081  fix global escodegen reference in entrypoint.js

This reference includes the following new commits:

     new 65b9081  fix global escodegen reference in entrypoint.js

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[couchdb-escodegen] 01/01: fix global escodegen reference in entrypoint.js

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

davisp pushed a commit to reference refs/pull/302/head
in repository https://gitbox.apache.org/repos/asf/couchdb-escodegen.git

commit 65b90817ce7be16143eb5d6ad764f957d2e73434
Author: Chris Smith <cs...@uber.com>
AuthorDate: Wed Jun 8 16:32:03 2016 +0700

    fix global escodegen reference in entrypoint.js
---
 tools/entry-point.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/entry-point.js b/tools/entry-point.js
index 4c363e3..f77b5b5 100644
--- a/tools/entry-point.js
+++ b/tools/entry-point.js
@@ -25,5 +25,5 @@
 (function () {
     'use strict';
     global.escodegen = require('../escodegen');
-    escodegen.browser = true;
+    global.escodegen.browser = true;
 }());