From 61b13c13ec7d295b314b63f89cc99c9551394538 Mon Sep 17 00:00:00 2001 From: Ward Bell Date: Thu, 6 Oct 2016 17:21:05 -0700 Subject: [PATCH] chore: v.2.0.2 + standard MIT licenses property (#2559) --- .../docs/_examples/_boilerplate/package.json | 7 ++++- public/docs/_examples/package.json | 31 +++++++++++-------- .../_examples/quickstart/js/package.1.json | 7 ++++- .../_examples/quickstart/ts/package.1.json | 27 +++++++++------- .../docs/_examples/styleguide/package.1.json | 7 ++++- .../ts/package.ng1.json | 7 ++++- .../_examples/webpack/ts/package.webpack.json | 7 ++++- public/docs/ts/latest/guide/change-log.jade | 3 ++ 8 files changed, 67 insertions(+), 29 deletions(-) diff --git a/public/docs/_examples/_boilerplate/package.json b/public/docs/_examples/_boilerplate/package.json index 53bdb49670..e168cc9b9f 100644 --- a/public/docs/_examples/_boilerplate/package.json +++ b/public/docs/_examples/_boilerplate/package.json @@ -22,7 +22,12 @@ }, "keywords": [], "author": "", - "license": "ISC", + "licenses": [ + { + "type": "MIT", + "url": "https://github.com/angular/angular.io/blob/master/LICENSE" + } + ], "dependencies": {}, "devDependencies": {}, "repository": {} diff --git a/public/docs/_examples/package.json b/public/docs/_examples/package.json index f1a8864533..3ec650fc69 100644 --- a/public/docs/_examples/package.json +++ b/public/docs/_examples/package.json @@ -10,21 +10,26 @@ }, "keywords": [], "author": "", - "license": "ISC", + "licenses": [ + { + "type": "MIT", + "url": "https://github.com/angular/angular.io/blob/master/LICENSE" + } + ], "dependencies": { - "@angular/common": "~2.0.1", - "@angular/compiler": "~2.0.1", - "@angular/compiler-cli": "~0.6.3", - "@angular/core": "~2.0.1", - "@angular/forms": "~2.0.1", - "@angular/http": "~2.0.1", - "@angular/platform-browser": "~2.0.1", - "@angular/platform-browser-dynamic": "~2.0.1", - "@angular/platform-server": "~2.0.1", - "@angular/router": "~3.0.1", - "@angular/upgrade": "~2.0.1", + "@angular/common": "~2.0.2", + "@angular/compiler": "~2.0.2", + "@angular/compiler-cli": "~0.6.4", + "@angular/core": "~2.0.2", + "@angular/forms": "~2.0.2", + "@angular/http": "~2.0.2", + "@angular/platform-browser": "~2.0.2", + "@angular/platform-browser-dynamic": "~2.0.2", + "@angular/platform-server": "~2.0.2", + "@angular/router": "~3.0.2", + "@angular/upgrade": "~2.0.2", - "angular-in-memory-web-api": "~0.1.1", + "angular-in-memory-web-api": "~0.1.5", "bootstrap": "^3.3.7", "core-js": "^2.4.1", "protractor": "^4.0.9", diff --git a/public/docs/_examples/quickstart/js/package.1.json b/public/docs/_examples/quickstart/js/package.1.json index f07246fadd..379df66e09 100644 --- a/public/docs/_examples/quickstart/js/package.1.json +++ b/public/docs/_examples/quickstart/js/package.1.json @@ -5,7 +5,12 @@ "start": "npm run lite", "lite": "lite-server" }, - "license": "ISC", + "licenses": [ + { + "type": "MIT", + "url": "https://github.com/angular/angular.io/blob/master/LICENSE" + } + ], "dependencies": { "@angular/common": "~2.0.1", "@angular/compiler": "~2.0.1", diff --git a/public/docs/_examples/quickstart/ts/package.1.json b/public/docs/_examples/quickstart/ts/package.1.json index ea5d056bf4..a6db24d085 100644 --- a/public/docs/_examples/quickstart/ts/package.1.json +++ b/public/docs/_examples/quickstart/ts/package.1.json @@ -9,19 +9,24 @@ "tsc:w": "tsc -w", "typings": "typings" }, - "license": "ISC", + "licenses": [ + { + "type": "MIT", + "url": "https://github.com/angular/angular.io/blob/master/LICENSE" + } + ], "dependencies": { - "@angular/common": "~2.0.1", - "@angular/compiler": "~2.0.1", - "@angular/core": "~2.0.1", - "@angular/forms": "~2.0.1", - "@angular/http": "~2.0.1", - "@angular/platform-browser": "~2.0.1", - "@angular/platform-browser-dynamic": "~2.0.1", - "@angular/router": "~3.0.1", - "@angular/upgrade": "~2.0.1", + "@angular/common": "~2.0.2", + "@angular/compiler": "~2.0.2", + "@angular/core": "~2.0.2", + "@angular/forms": "~2.0.2", + "@angular/http": "~2.0.2", + "@angular/platform-browser": "~2.0.2", + "@angular/platform-browser-dynamic": "~2.0.2", + "@angular/router": "~3.0.2", + "@angular/upgrade": "~2.0.2", - "angular-in-memory-web-api": "~0.1.1", + "angular-in-memory-web-api": "~0.1.5", "bootstrap": "^3.3.7", "core-js": "^2.4.1", "reflect-metadata": "^0.1.8", diff --git a/public/docs/_examples/styleguide/package.1.json b/public/docs/_examples/styleguide/package.1.json index f4c2fdaef5..2aafb8b80a 100644 --- a/public/docs/_examples/styleguide/package.1.json +++ b/public/docs/_examples/styleguide/package.1.json @@ -7,7 +7,12 @@ "lite": "lite-server", "start": "concurrently \"npm run tsc:w\" \"npm run lite\" " }, - "license": "ISC", + "licenses": [ + { + "type": "MIT", + "url": "https://github.com/angular/angular.io/blob/master/LICENSE" + } + ], "dependencies": { "angular2": "2.0.0-beta.0", "systemjs": "0.19.6", diff --git a/public/docs/_examples/upgrade-phonecat-2-hybrid/ts/package.ng1.json b/public/docs/_examples/upgrade-phonecat-2-hybrid/ts/package.ng1.json index 54f73776dd..9c7e5dd2d0 100644 --- a/public/docs/_examples/upgrade-phonecat-2-hybrid/ts/package.ng1.json +++ b/public/docs/_examples/upgrade-phonecat-2-hybrid/ts/package.ng1.json @@ -4,7 +4,12 @@ "version": "0.0.0", "description": "A tutorial application for AngularJS", "repository": "https://github.com/angular/angular-phonecat", - "license": "MIT", + "licenses": [ + { + "type": "MIT", + "url": "https://github.com/angular/angular.io/blob/master/LICENSE" + } + ], "devDependencies": { "bower": "^1.7.7", "http-server": "^0.9.0", diff --git a/public/docs/_examples/webpack/ts/package.webpack.json b/public/docs/_examples/webpack/ts/package.webpack.json index 3995e724db..4abdc3d36d 100644 --- a/public/docs/_examples/webpack/ts/package.webpack.json +++ b/public/docs/_examples/webpack/ts/package.webpack.json @@ -8,7 +8,12 @@ "build": "rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail", "postinstall": "typings install" }, - "license": "MIT", + "licenses": [ + { + "type": "MIT", + "url": "https://github.com/angular/angular.io/blob/master/LICENSE" + } + ], "dependencies": { "@angular/common": "2.0.0", "@angular/compiler": "2.0.0", diff --git a/public/docs/ts/latest/guide/change-log.jade b/public/docs/ts/latest/guide/change-log.jade index 45cf97401e..183b02c4cd 100644 --- a/public/docs/ts/latest/guide/change-log.jade +++ b/public/docs/ts/latest/guide/change-log.jade @@ -7,6 +7,9 @@ block includes The Angular documentation is a living document with continuous improvements. This log calls attention to recent significant changes. + ## Sync with Angular v.2.0.2 (2016-10-6) + Docs and code samples updated and tested with Angular v.2.0.2 + ## "Routing and Navigation" guide with the _Router Module_ (2016-10-5) The [Routing and Navigation](router.html) guide now locates route configuration in a _Routing Module_.