[Pkg-javascript-commits] [node-lodash] branch upstream updated (2294274 -> b0e1f4a)

Sruthi Chandran srud-guest at moszumanska.debian.org
Thu Nov 10 18:04:48 UTC 2016


This is an automated email from the git hooks/post-receive script.

srud-guest pushed a change to branch upstream
in repository node-lodash.

      from  2294274   Imported Upstream version 4.3.0+dfsg
       new  5e9c18b   Manually import version 4.16.6 to upstream
       new  b0e1f4a   New upstream version 4.16.6+dfsg

The 2 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:
 .github/CONTRIBUTING.md                    |    78 +
 .gitignore                                 |     5 +-
 .jscsrc                                    |   181 +-
 .markdown-doctest-setup.js                 |    11 +
 .travis.yml                                |   152 +-
 CHANGELOG                                  |     1 +
 CODE_OF_CONDUCT.md                         |    49 -
 CONTRIBUTING.md                            |    44 -
 LICENSE                                    |    64 +-
 LICENSE.txt                                |    22 -
 README.md                                  |    89 +-
 bower.json                                 |    20 -
 component.json                             |    10 -
 dist/lodash.core.js                        |  1905 ++--
 dist/lodash.core.min.js                    |    51 +-
 dist/lodash.fp.js                          |   867 +-
 dist/lodash.fp.min.js                      |    32 +-
 dist/lodash.js                             |  7661 ++++++++++------
 dist/lodash.min.js                         |   249 +-
 dist/mapping.fp.js                         |   274 +-
 doc/README.md                              |  5122 ++++++-----
 fp/_baseConvert.js                         |   569 +-
 fp/_convertBrowser.js                      |    10 +-
 fp/_mapping.js                             |   274 +-
 fp/placeholder.js                          |     6 +
 lib/common/file.js                         |    71 +
 lib/common/mapping.js                      |     9 +
 lib/common/minify.js                       |    37 +-
 lib/common/uglify.options.js               |    16 +-
 lib/common/util.js                         |    40 +
 lib/doc/build.js                           |    55 -
 lib/fp/build-dist.js                       |    39 +-
 lib/fp/build-doc.js                        |    78 +
 lib/fp/build-modules.js                    |   135 +-
 lib/fp/template/doc/wiki.jst               |   226 +
 lib/fp/template/fp.jst                     |     2 -
 lib/fp/template/module.jst                 |     2 -
 lib/fp/template/modules/_falseOptions.jst  |     7 +
 lib/fp/template/{ => modules}/_util.jst    |     8 +-
 lib/fp/template/{ => modules}/alias.jst    |     0
 lib/fp/template/{ => modules}/category.jst |     0
 lib/fp/template/{ => modules}/convert.jst  |     3 +-
 lib/fp/template/modules/fp.jst             |     2 +
 lib/fp/template/modules/module.jst         |     5 +
 lib/fp/template/modules/thru.jst           |     5 +
 lib/fp/template/thru.jst                   |     1 -
 lib/main/build-dist.js                     |    37 +-
 lib/main/build-doc.js                      |    83 +
 lib/main/build-modules.js                  |    37 +-
 lib/main/build-site.js                     |   215 +
 lodash.js                                  |  7660 ++++++++++------
 lodash.min.js                              |    98 -
 lodash.src.js                              | 12456 ---------------------------
 package.json                               |    78 +-
 perf/asset/perf-ui.js                      |    27 +-
 perf/index.html                            |    15 +-
 perf/perf.js                               |    15 +-
 perf/run-perf.sh                           |    14 -
 test/asset/set.js                          |   157 -
 test/asset/test-ui.js                      |    41 +-
 test/asset/weakmap.js                      |   102 -
 test/asset/worker.js                       |     9 +-
 test/backbone.html                         |    50 +-
 test/index.html                            |    33 +-
 test/remove.js                             |     8 +-
 test/run-test.sh                           |    14 -
 test/saucelabs.js                          |    67 +-
 test/test-fp.js                            |  2294 +++--
 test/test.js                               | 10076 ++++++++++++++--------
 test/underscore.html                       |    92 +-
 vendor/backbone/backbone.js                |    63 +-
 vendor/backbone/test/collection.js         |    56 +-
 vendor/backbone/test/events.js             |    29 +-
 vendor/backbone/test/model.js              |    59 +-
 vendor/backbone/test/noconflict.js         |     4 +-
 vendor/backbone/test/router.js             |   107 +-
 vendor/backbone/test/setup/environment.js  |     6 +-
 vendor/backbone/test/sync.js               |     6 +-
 vendor/backbone/test/view.js               |    52 +-
 vendor/benchmark.js/LICENSE.txt            |    22 -
 vendor/benchmark.js/benchmark.js           |  2875 -------
 vendor/benchmark.js/nano.jar               |   Bin 293 -> 0 bytes
 vendor/underscore/test/arrays.js           |     8 +
 vendor/underscore/test/collections.js      |   118 +-
 vendor/underscore/test/cross-document.js   |    20 +-
 vendor/underscore/test/functions.js        |    51 +-
 vendor/underscore/test/objects.js          |   353 +-
 vendor/underscore/test/utility.js          |    17 +-
 vendor/underscore/underscore.js            |    45 +-
 yarn.lock                                  |  3207 +++++++
 90 files changed, 29130 insertions(+), 30133 deletions(-)
 create mode 100644 .github/CONTRIBUTING.md
 create mode 100644 .markdown-doctest-setup.js
 create mode 100644 CHANGELOG
 delete mode 100644 CODE_OF_CONDUCT.md
 delete mode 100644 CONTRIBUTING.md
 delete mode 100644 LICENSE.txt
 delete mode 100644 bower.json
 delete mode 100644 component.json
 create mode 100644 fp/placeholder.js
 create mode 100644 lib/common/file.js
 create mode 100644 lib/common/mapping.js
 create mode 100644 lib/common/util.js
 delete mode 100644 lib/doc/build.js
 create mode 100644 lib/fp/build-doc.js
 create mode 100644 lib/fp/template/doc/wiki.jst
 delete mode 100644 lib/fp/template/fp.jst
 delete mode 100644 lib/fp/template/module.jst
 create mode 100644 lib/fp/template/modules/_falseOptions.jst
 rename lib/fp/template/{ => modules}/_util.jst (55%)
 rename lib/fp/template/{ => modules}/alias.jst (100%)
 rename lib/fp/template/{ => modules}/category.jst (100%)
 rename lib/fp/template/{ => modules}/convert.jst (84%)
 create mode 100644 lib/fp/template/modules/fp.jst
 create mode 100644 lib/fp/template/modules/module.jst
 create mode 100644 lib/fp/template/modules/thru.jst
 delete mode 100644 lib/fp/template/thru.jst
 create mode 100644 lib/main/build-doc.js
 create mode 100644 lib/main/build-site.js
 delete mode 100644 lodash.min.js
 delete mode 100644 lodash.src.js
 delete mode 100755 perf/run-perf.sh
 delete mode 100644 test/asset/set.js
 delete mode 100644 test/asset/weakmap.js
 delete mode 100644 test/run-test.sh
 delete mode 100644 vendor/benchmark.js/LICENSE.txt
 delete mode 100644 vendor/benchmark.js/benchmark.js
 delete mode 100644 vendor/benchmark.js/nano.jar
 create mode 100644 yarn.lock

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-lodash.git



More information about the Pkg-javascript-commits mailing list