From b09d6ba0919233173f1c724c40be9ff7b4df74cb Mon Sep 17 00:00:00 2001 From: Radoslav Kirilov Date: Fri, 20 Feb 2015 01:49:54 +0200 Subject: [PATCH] Refactor rename file urigo:angular.js -> angular-meteor.js as to allow this file to be used on Windows also It seems that this notation is no longer needed as long as the developer points the name of the package in package.js (cherry picked from commit b07140e) --- urigo:angular.js => angular-meteor.js | 0 bower.json | 2 +- package.js | 5 +++-- 3 files changed, 4 insertions(+), 3 deletions(-) rename urigo:angular.js => angular-meteor.js (100%) diff --git a/urigo:angular.js b/angular-meteor.js similarity index 100% rename from urigo:angular.js rename to angular-meteor.js diff --git a/bower.json b/bower.json index 898079e46..d333ccafd 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "angular-meteor", - "main": "urigo:angular.js", + "main": "angular-meteor.js", "version": "0.6.8", "homepage": "https://github.com/Urigo/angular-meteor", "authors": [ diff --git a/package.js b/package.js index c54c1c6ae..8d02d1b01 100644 --- a/package.js +++ b/package.js @@ -1,4 +1,5 @@ Package.describe({ + name: "urigo:angular", summary: "The simplest no-conflict way to use AngularJS with Meteor, Meteorite and Atmosphere Smart Packages.", version: "0.6.8", git: "https://github.com/Urigo/angular-meteor.git" @@ -39,7 +40,7 @@ Package.on_use(function (api) { 'modules/angular-meteor-reactive-scope.js', 'modules/angular-meteor-utils.js', // Finally load angular-meteor File - 'urigo:angular.js' + 'angular-meteor.js' ], 'client'); }); @@ -52,7 +53,7 @@ Package.onTest(function(api) { api.use(['test-helpers'], ['client']); api.addFiles([ - 'urigo:angular.js', + 'angular-meteor.js', 'lib/angular-hash-key-copier.js', 'lib/diff-array.js', 'modules/angular-meteor-collections.js',