From 2197af201379dc05cdd71b85b3553e9c3b51a72f Mon Sep 17 00:00:00 2001 From: bartolom Date: Mon, 31 Jul 2017 14:09:04 +0200 Subject: [PATCH] from polymer to Polymer This pull requests want to make this Polymer element consistent with the majority of other Polymer elements. The uppercase version "Polymer" is closer to real name of the github project name, like presented in the git URL. The use of mixed case does not seem to have an effect on bower and JavaScript projects. But other languages like Java are more picky and would benefit from consistency. This pull request is a manual follow up of PolymerLabs/tedium#47 and PolymerLabs/tedium#48 which try to do this in an automated way, but are stuck. --- bower.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bower.json b/bower.json index dd589f1..3314acc 100644 --- a/bower.json +++ b/bower.json @@ -6,7 +6,7 @@ "main": ["firebase-collection.html","firebase-document.html","firebase-auth.html","firebase-query-behavior.html"], "license": "http://polymer.github.io/LICENSE.txt", "dependencies": { - "polymer": "polymer/polymer#^1.0.0", + "polymer": "Polymer/polymer#^1.0.0", "firebase": "^2.3.1" }, "ignore": [ @@ -17,11 +17,11 @@ "tests" ], "devDependencies": { - "iron-component-page": "polymerelements/iron-component-page#1.0.2", - "promise-polyfill": "polymerlabs/promise-polyfill#^1.0.0", - "test-fixture": "polymerelements/test-fixture#^1.0.0", + "iron-component-page": "PolymerElements/iron-component-page#1.0.2", + "promise-polyfill": "PolymerLabs/promise-polyfill#^1.0.0", + "test-fixture": "PolymerElements/test-fixture#^1.0.0", "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0", - "paper-styles": "polymerelements/paper-styles#^1.0.0", + "paper-styles": "PolymerElements/paper-styles#^1.0.0", "web-component-tester": "*" } }