[Pkg-javascript-commits] [node-buble] branch master updated	(c9dd9be -> ee4bd77)
    Praveen Arimbrathodiyil 
    praveen at moszumanska.debian.org
       
    Fri Jan 19 15:25:16 UTC 2018
    
    
  
This is an automated email from the git hooks/post-receive script.
praveen pushed a change to branch master
in repository node-buble.
      from  c9dd9be   Add a patch to stop using os-homedir
       new  f1f241e   New upstream version 0.18.0
       new  7ea1fb3   Update upstream source from tag 'upstream/0.18.0'
       new  5b0397c   refresh patches
       new  f726bd4   update changelog
       new  ee4bd77   bump standards
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
 .eslintrc                                          |    1 -
 CHANGELOG.md                                       |   28 +
 bin/buble                                          |   20 +-
 bin/handleError.js                                 |   56 +-
 bin/runBuble.js                                    |  137 +--
 bin/showHelp.js                                    |   17 +-
 debian/changelog                                   |    2 +-
 debian/control                                     |    2 +-
 debian/patches/find_acorn                          |   12 -
 debian/patches/fix-buble-path.patch                |   11 -
 debian/patches/fix_error_message.patch             |   11 -
 debian/patches/os_homedir_is_useless.patch         |   20 +-
 debian/patches/series                              |    3 -
 package-lock.json                                  | 1171 +++++++++++---------
 package.json                                       |   35 +-
 register.js                                        |    2 +-
 rollup.config.js                                   |    3 +
 src/index.js                                       |   93 +-
 src/program/BlockStatement.js                      |  331 +++---
 src/program/Node.js                                |  108 +-
 src/program/Program.js                             |   24 +-
 src/program/Scope.js                               |   97 +-
 src/program/extractNames.js                        |   32 +-
 src/program/keys.js                                |    2 +-
 src/program/types/ArrayExpression.js               |   61 +-
 src/program/types/ArrowFunctionExpression.js       |   44 +-
 src/program/types/AssignmentExpression.js          |  372 ++++---
 src/program/types/BinaryExpression.js              |   12 +-
 src/program/types/BreakStatement.js                |   20 +-
 src/program/types/CallExpression.js                |   95 +-
 src/program/types/ClassBody.js                     |  219 ++--
 src/program/types/ClassDeclaration.js              |   83 +-
 src/program/types/ClassExpression.js               |   56 +-
 src/program/types/ContinueStatement.js             |   14 +-
 src/program/types/ExportDefaultDeclaration.js      |    7 +-
 src/program/types/ExportNamedDeclaration.js        |    7 +-
 src/program/types/ForInStatement.js                |   32 +-
 src/program/types/ForOfStatement.js                |   77 +-
 src/program/types/ForStatement.js                  |   50 +-
 src/program/types/FunctionDeclaration.js           |   20 +-
 src/program/types/FunctionExpression.js            |   58 +-
 src/program/types/Identifier.js                    |   40 +-
 src/program/types/IfStatement.js                   |   31 +-
 src/program/types/ImportDeclaration.js             |    7 +-
 src/program/types/ImportDefaultSpecifier.js        |    6 +-
 src/program/types/ImportSpecifier.js               |    6 +-
 src/program/types/JSXAttribute.js                  |   12 +-
 src/program/types/JSXClosingElement.js             |   17 +-
 src/program/types/JSXElement.js                    |   42 +-
 src/program/types/JSXExpressionContainer.js        |    8 +-
 src/program/types/JSXOpeningElement.js             |   71 +-
 src/program/types/JSXSpreadAttribute.js            |    8 +-
 src/program/types/Literal.js                       |   38 +-
 src/program/types/MemberExpression.js              |   10 +-
 src/program/types/NewExpression.js                 |   39 +-
 src/program/types/ObjectExpression.js              |  215 +++-
 src/program/types/Property.js                      |   54 +-
 src/program/types/ReturnStatement.js               |   30 +-
 src/program/types/SpreadElement.js                 |   12 +
 src/program/types/SpreadProperty.js                |   10 -
 src/program/types/Super.js                         |   85 +-
 src/program/types/TaggedTemplateExpression.js      |   44 +-
 src/program/types/TemplateElement.js               |    4 +-
 src/program/types/TemplateLiteral.js               |   76 +-
 src/program/types/ThisExpression.js                |   27 +-
 src/program/types/UpdateExpression.js              |   24 +-
 src/program/types/VariableDeclaration.js           |   87 +-
 src/program/types/VariableDeclarator.js            |   46 +-
 src/program/types/index.js                         |    4 +-
 src/program/types/shared/LoopStatement.js          |   94 +-
 src/program/types/shared/ModuleDeclaration.js      |    7 +-
 src/program/wrap.js                                |   31 +-
 src/support.js                                     |   52 +-
 src/utils/CompileError.js                          |   21 +-
 src/utils/array.js                                 |   10 +-
 src/utils/deindent.js                              |   20 +-
 src/utils/destructure.js                           |  333 ++++--
 src/utils/getSnippet.js                            |   28 +-
 src/utils/isReference.js                           |   30 +-
 src/utils/locate.js                                |   12 +-
 src/utils/removeTrailingComma.js                   |   10 +
 src/utils/reserved.js                              |    7 +-
 src/utils/spread.js                                |   58 +-
 test/cli/compiles-directory/expected/bar.js        |    2 +-
 test/cli/compiles-directory/expected/foo.js        |    5 +-
 test/cli/compiles-directory/expected/foo.js.map    |    2 +-
 test/cli/compiles-directory/src/foo.js             |    2 +-
 .../creates-inline-sourcemap/expected/output.js    |    3 +-
 test/cli/creates-inline-sourcemap/input.js         |    2 +-
 test/cli/creates-sourcemap/expected/output.js      |    3 +-
 test/cli/creates-sourcemap/expected/output.js.map  |    2 +-
 test/cli/creates-sourcemap/input.js                |    2 +-
 .../supports-jsx-pragma-comment/expected/output.js |    2 +-
 test/cli/supports-jsx-pragma-comment/input.js      |    2 +-
 test/cli/supports-jsx-pragma/expected/output.js    |    2 +-
 test/cli/supports-jsx-pragma/input.js              |    2 +-
 test/cli/writes-to-stdout/expected/output.js       |    1 +
 test/samples/arrow-functions.js                    |   25 +-
 test/samples/async.js                              |   11 +
 test/samples/block-scoping.js                      |    2 +-
 .../classes-no-named-function-expressions.js       |   45 +-
 test/samples/classes.js                            |   48 +-
 test/samples/computed-properties.js                |   59 +-
 test/samples/destructuring.js                      |   50 +-
 test/samples/exponentiation-operator.js            |   35 +-
 test/samples/for-of.js                             |    4 +-
 test/samples/generators.js                         |   12 +-
 test/samples/jsx.js                                |   23 +-
 test/samples/loops.js                              |   67 +-
 test/samples/misc.js                               |   10 +-
 test/samples/modules.js                            |   39 +-
 ...ect-properties-no-named-function-expressions.js |   29 +-
 test/samples/object-properties.js                  |   19 +-
 test/samples/object-rest-spread.js                 |  122 +-
 test/samples/spread-operator.js                    |   45 +-
 test/samples/template-strings.js                   |   18 +-
 test/samples/trailing-function-commas.js           |   68 ++
 test/test.js                                       |  364 +++---
 test/utils/getLocation.js                          |   18 +-
 119 files changed, 3782 insertions(+), 2574 deletions(-)
 delete mode 100644 debian/patches/find_acorn
 delete mode 100644 debian/patches/fix-buble-path.patch
 delete mode 100644 debian/patches/fix_error_message.patch
 create mode 100644 src/program/types/SpreadElement.js
 delete mode 100644 src/program/types/SpreadProperty.js
 create mode 100644 src/utils/removeTrailingComma.js
 create mode 100644 test/samples/async.js
 create mode 100644 test/samples/trailing-function-commas.js
-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-buble.git
    
    
More information about the Pkg-javascript-commits
mailing list