Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(100)

Unified Diff: node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/node_modules/object-assign/package.json

Issue 877193002: Upgrade vulcanize to 0.7.6. (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/node_modules/object-assign/package.json
diff --git a/node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/node_modules/object-assign/package.json b/node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/node_modules/object-assign/package.json
index 850c1aed1bb1cd2d68845517df9611a2d8f92fa9..7e1e8f1e6ddd8ab2ca3d88897ef23901cf2c4705 100644
--- a/node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/node_modules/object-assign/package.json
+++ b/node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/node_modules/object-assign/package.json
@@ -1,9 +1,8 @@
{
"name": "object-assign",
- "version": "0.3.1",
+ "version": "2.0.0",
"description": "ES6 Object.assign() ponyfill",
"license": "MIT",
- "main": "object-assign.js",
"repository": {
"type": "git",
"url": "git://github.com/sindresorhus/object-assign"
@@ -20,7 +19,7 @@
"test": "mocha"
},
"files": [
- "object-assign.js"
+ "index.js"
],
"keywords": [
"object",
@@ -39,12 +38,16 @@
"devDependencies": {
"mocha": "*"
},
- "readme": "# object-assign [![Build Status](https://travis-ci.org/sindresorhus/object-assign.svg?branch=master)](https://travis-ci.org/sindresorhus/object-assign)\n\n> ES6 [`Object.assign()`](http://www.2ality.com/2014/01/object-assign.html) ponyfill\n\n> Ponyfill: A polyfill that doesn't overwrite the native method\n\n\n## Install\n\n```sh\n$ npm install --save object-assign\n```\n\n```sh\n$ bower install --save object-assign\n```\n\n```sh\n$ component install sindresorhus/object-assign\n```\n\n\n## Usage\n\n```js\nobjectAssign({foo: 0}, {bar: 1});\n//=> {foo: 0, bar: 1}\n\n// multiple sources\nobjectAssign({foo: 0}, {bar: 1}, {baz: 3});\n//=> {foo: 0, bar: 1, baz: 2}\n```\n\n\n## API\n\n### objectAssign(target, source, [source, ...])\n\nAssigns enumerable own properties of `source` objects to the `target` object and returns the `target` object. Additional `source` objects will overwrite previous ones.\n\n\n## Resources\n\n- [ES6 spec - Object.assign](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.assign)\n\n\n## License\n\n[MIT](http://opensource.org/licenses/MIT) © [Sindre Sorhus](http://sindresorhus.com)\n",
+ "readme": "# object-assign [![Build Status](https://travis-ci.org/sindresorhus/object-assign.svg?branch=master)](https://travis-ci.org/sindresorhus/object-assign)\n\n> ES6 [`Object.assign()`](http://www.2ality.com/2014/01/object-assign.html) ponyfill\n\n> Ponyfill: A polyfill that doesn't overwrite the native method\n\n\n## Install\n\n```sh\n$ npm install --save object-assign\n```\n\n\n## Usage\n\n```js\nvar objectAssign = require('object-assign');\n\nobjectAssign({foo: 0}, {bar: 1});\n//=> {foo: 0, bar: 1}\n\n// multiple sources\nobjectAssign({foo: 0}, {bar: 1}, {baz: 2});\n//=> {foo: 0, bar: 1, baz: 2}\n\n// overwrites equal keys\nobjectAssign({foo: 0}, {foo: 1}, {foo: 2});\n//=> {foo: 2}\n\n// ignores null and undefined sources\nobjectAssign({foo: 0}, null, {bar: 1}, undefined);\n//=> {foo: 0, bar: 1}\n```\n\n\n## API\n\n### objectAssign(target, source, [source, ...])\n\nAssigns enumerable own properties of `source` objects to the `target` object and returns the `target` object. Additional `source` objects will overwrite previous ones.\n\n\n## Resources\n\n- [ES6 spec - Object.assign](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.assign)\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n",
"readmeFilename": "readme.md",
"bugs": {
"url": "https://github.com/sindresorhus/object-assign/issues"
},
"homepage": "https://github.com/sindresorhus/object-assign",
- "_id": "object-assign@0.3.1",
- "_from": "object-assign@~0.3.1"
+ "_id": "object-assign@2.0.0",
+ "dist": {
+ "shasum": "8e6a0d23307e450f3ed82e4b46cce833f3301738"
+ },
+ "_from": "object-assign@^2.0.0",
+ "_resolved": "https://registry.npmjs.org/object-assign/-/object-assign-2.0.0.tgz"
}

Powered by Google App Engine
This is Rietveld 408576698