From 3850fa09f9bd8ce3a2d96c2dca9bfdd3e57b2993 Mon Sep 17 00:00:00 2001 From: Jacob Meacham Date: Sun, 7 Jun 2015 22:15:21 -0700 Subject: [PATCH 1/2] Rename to angular-notification-icons. --- README.md | 56 +++++++++---------- app/index.html | 18 +++--- app/scripts/app.js | 10 ++-- ...ons.css => angular-notification-icons.css} | 0 ...tions.js => angular-notification-icons.js} | 8 +-- ...css => angular-notification-icons.min.css} | 0 dist/angular-notification-icons.min.js | 1 + dist/angular-notifications.min.js | 1 - gulp/build.js | 12 ++-- gulp/inject.js | 4 +- gulp/watch.js | 4 +- ...> angular-notification-icons.directive.js} | 2 +- src/angular-notification-icons.modules.js | 4 ++ src/angular-notifications.modules.js | 4 -- ...s.less => angular-notification-icons.less} | 0 ....js => angular-notification-icons.spec.js} | 0 16 files changed, 62 insertions(+), 62 deletions(-) rename dist/{angular-notifications.css => angular-notification-icons.css} (100%) rename dist/{angular-notifications.js => angular-notification-icons.js} (81%) rename dist/{angular-notifications.min.css => angular-notification-icons.min.css} (100%) create mode 100644 dist/angular-notification-icons.min.js delete mode 100644 dist/angular-notifications.min.js rename src/{angular-notifications.directive.js => angular-notification-icons.directive.js} (98%) create mode 100644 src/angular-notification-icons.modules.js delete mode 100644 src/angular-notifications.modules.js rename src/css/{angular-notifications.less => angular-notification-icons.less} (100%) rename src/test/{angular-notifications.spec.js => angular-notification-icons.spec.js} (100%) diff --git a/README.md b/README.md index ccd3d5a..de9a3f6 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -# angular-notifications -Add notification popups to any element http://jemonjam.com/angular-notifications +# angular-notification-icons +Add notification popups to any element http://jemonjam.com/angular-notification-icons -[![Build Status](https://travis-ci.org/jacob-meacham/angular-notifications.svg?branch=develop)](https://travis-ci.org/jacob-meacham/angular-notifications) -[![Coverage Status](https://coveralls.io/repos/jacob-meacham/angular-notifications/badge.svg?branch=develop)](https://coveralls.io/r/jacob-meacham/angular-notifications?branch=develop) +[![Build Status](https://travis-ci.org/jacob-meacham/angular-notification-icons.svg?branch=develop)](https://travis-ci.org/jacob-meacham/angular-notification-icons) +[![Coverage Status](https://coveralls.io/repos/jacob-meacham/angular-notification-icons/badge.svg?branch=develop)](https://coveralls.io/r/jacob-meacham/angular-notification-icons?branch=develop) [![Code Climate](https://codeclimate.com/github/jacob-meacham/grunt-lcov-merge/badges/gpa.svg)](https://codeclimate.com/github/jacob-meacham/grunt-lcov-merge) ![demo](http://i.imgur.com/F9qc7Uw.gif) @@ -16,21 +16,21 @@ Add notification popups to any element http://jemonjam.com/angular-notifications ## Getting Started ### 1. Install bower components ```shell -bower install angular-notifications --save +bower install angular-notification-icons --save ``` ### 2. Add css and scripts ```html - + - + ``` ### 3. Add a dependency to your app ``` -angular.module('MyApp', ['angular-notifications']); +angular.module('MyApp', ['angular-notification-icons']); ``` ### 4. Add a notification-icon element around any other element @@ -40,12 +40,12 @@ angular.module('MyApp', ['angular-notifications']); ``` -angular-notifications is an angular directive that adds a notification popup on top of any element. The counter is tied to a scope variable and updating the count is as easy as updating the scope variable. angular-notifications comes with a number of canned animations and a default style, but it is easy to add your own styles or custom animations. angular-notifications can also optionally listen for DOM events and clear the count on a DOM event. +angular-notification-icons is an angular directive that adds a notification popup on top of any element. The counter is tied to a scope variable and updating the count is as easy as updating the scope variable. angular-notification-icons comes with a number of canned animations and a default style, but it is easy to add your own styles or custom animations. angular-notification-icons can also optionally listen for DOM events and clear the count on a DOM event. ## Basic Usage ### Counter -The only required attribute for angular-notifications is 'count'. This uses two-way binding to bind a scope variable to the isolate scope. This makes updating the count very simple, since your controller has full control over how it's set. +The only required attribute for angular-notification-icons is 'count'. This uses two-way binding to bind a scope variable to the isolate scope. This makes updating the count very simple, since your controller has full control over how it's set. ```html ... @@ -53,10 +53,10 @@ The only required attribute for angular-notifications is 'count'. This uses two- ``` When myScopeVariable is <= 0, the notification icon will not be visible. Once myScopeVariable > 0, the notification will show up. -[Live Demo](http://jemonjam.com/angular-notifications#basic) +[Live Demo](http://jemonjam.com/angular-notification-icons#basic) ### Built-in Animations -angular-notifications comes with a few prebuilt animations for your use. +angular-notification-icons comes with a few prebuilt animations for your use. * bounce * fade @@ -79,10 +79,10 @@ This will create a notification that bounces when appearing and when the counter ``` This will create a notification that bounces when appearing, shakes when updates, and fades away when disappearing. Because all of these attributes do not use two-way binding, if you're using a variable for the animation, you'll want to use {{myVariable}} when binding. -[Live Demo](http://jemonjam.com/angular-notifications#animations) +[Live Demo](http://jemonjam.com/angular-notification-icons#animations) ### DOM Events -angular-notifications can respond to DOM events to clear the counter. This clears the scope variable and runs an $apply. Your controller can $watch the variable if you want to react to clearing the counter. +angular-notification-icons can respond to DOM events to clear the counter. This clears the scope variable and runs an $apply. Your controller can $watch the variable if you want to react to clearing the counter. ```html @@ -91,17 +91,17 @@ angular-notifications can respond to DOM events to clear the counter. This clear ``` Will cause the count to be cleared upon click. Any DOM event name is valid as a clear-trigger. Because clear-trigger does not use two-way binding, if you're using a variable as the trigger, you'll want to use {{myVariable}} when binding. -[Live Demo](http://jemonjam.com/angular-notifications#dom-events) +[Live Demo](http://jemonjam.com/angular-notification-icons#dom-events) ## Customizing -angular-notifications was designed to be very simple to customize so that it fits the feel of your app. +angular-notification-icons was designed to be very simple to customize so that it fits the feel of your app. ### Adding Custom Style Adding custom style is done via CSS. When the directive is created, it adds a few elements to the DOM ```html -
-
+
+
@@ -113,7 +113,7 @@ Adding custom style is done via CSS. When the directive is created, it adds a fe You can add styling at any level. For instance, if you just want to change the look of the notifaction icon, you can add to your app's css: ```css -.angular-notifications-icon { +.angular-notification-icons-icon { left: -10px; background: yellow; color: black; @@ -124,27 +124,27 @@ You can add styling at any level. For instance, if you just want to change the l } ``` Which will make the notification icon appear on the left with a yellow background and bold, larger text. -[Live Demo](http://jemonjam.com/angular-notifications#custom-style) +[Live Demo](http://jemonjam.com/angular-notification-icons#custom-style) ### Adding Custom Animations -Adding a custom animation is as simple as adding custom styles. angular-notifications uses the standard [angular-animate](https://docs.angularjs.org/guide/animations) module for providing animations. This means that you can use either CSS keyframes or CSS transitions to build animations. +Adding a custom animation is as simple as adding custom styles. angular-notification-icons uses the standard [angular-animate](https://docs.angularjs.org/guide/animations) module for providing animations. This means that you can use either CSS keyframes or CSS transitions to build animations. ```css -.angular-notifications-icon.my-custom-animation { +.angular-notification-icons-icon.my-custom-animation { transition:0.5s linear all; } -.angular-notifications-icon.my-custom-animation-add { +.angular-notification-icons-icon.my-custom-animation-add { background: black; color: white; } -.angular-notifications-icon.my-custom-animation-add-active { +.angular-notification-icons-icon.my-custom-animation-add-active { background: yellow; color: black; } -.angular-notifications-icon.my-custom-keyframe-animation { +.angular-notification-icons-icon.my-custom-keyframe-animation { animation: custom_keyframe_animation 0.5s; } @keyframes custom_keyframe_animation { @@ -163,7 +163,7 @@ Adding your animation is as simple as specifying it by name on the directive ... ``` -[Live Demo](http://jemonjam.com/angular-notifications#custom-style) +[Live Demo](http://jemonjam.com/angular-notification-icons#custom-style) ## Advanced Usage @@ -176,7 +176,7 @@ If you don't want the count number appear, you can hide the count using the 'hid ``` When myCount > 0, the notification icon will be visible, but the number will be hidden. When myCount <= 0, the icon will be hidden as normal. -[Live Demo](http://jemonjam.com/angular-notifications#hide-count) +[Live Demo](http://jemonjam.com/angular-notification-icons#hide-count) ### Pill shape When the number of notifications grows large enough, the icon changes to a pill shape. This is achieved by adding the css class wide-icon to the icon's div. By default, the shape transitions to a pill once the count is greater than or equal to 100, but is configurable via the attribute 'wide-threshold'. @@ -187,6 +187,6 @@ When the number of notifications grows large enough, the icon changes to a pill ``` This will change the shape to a pill once myCount >= 10. -[Live Demo](http://jemonjam.com/angular-notifications#pill) +[Live Demo](http://jemonjam.com/angular-notification-icons#pill) ### \ No newline at end of file diff --git a/app/index.html b/app/index.html index 46b2951..0062c87 100644 --- a/app/index.html +++ b/app/index.html @@ -1,5 +1,5 @@ - + angularNotifications @@ -24,8 +24,8 @@
@@ -131,7 +131,7 @@

Custom style and animations

CSS
-.custom-style .angular-notifications-icon { +.custom-style .angular-notification-icons-icon { left: -10px; background: yellow; color: black; @@ -141,16 +141,16 @@

Custom style and animations

font-size: 1.2em; } -.angular-notifications-icon.my-custom-animation { +.angular-notification-icons-icon.my-custom-animation { transition:0.5s linear all; } -.angular-notifications-icon.my-custom-animation-add { +.angular-notification-icons-icon.my-custom-animation-add { background: black; color: white; } -.angular-notifications-icon.my-custom-animation-add-active { +.angular-notification-icons-icon.my-custom-animation-add-active { background: yellow; color: black; } @@ -238,7 +238,7 @@

Pill Shape

Usage

1. Install bower component

-bower install angular-notifications --save +bower install angular-notification-icons --save

2. Add css and script

@@ -247,7 +247,7 @@

2. Add css and script

3. Add a dependency to your app

-angular.module('MyApp', ['angular-notifications']); +angular.module('MyApp', ['angular-notification-icons']);

4. Add a notification-icon element around any other element

diff --git a/app/scripts/app.js b/app/scripts/app.js index a648c05..587a4c8 100644 --- a/app/scripts/app.js +++ b/app/scripts/app.js @@ -1,9 +1,9 @@ 'use strict'; -var app = angular.module('angular-notifications.demo', ['ngRoute', 'angular-notifications', 'hljs', 'angular-notifications.demo.controllers']); +var app = angular.module('angular-notification-icons.demo', ['ngRoute', 'angular-notification-icons', 'hljs', 'angular-notification-icons.demo.controllers']); // Pre-define modules -angular.module('angular-notifications.demo.controllers', []); +angular.module('angular-notification-icons.demo.controllers', []); app.config(['$routeProvider', '$locationProvider', function($routeProvider, $locationProvider) { $routeProvider. @@ -38,10 +38,10 @@ var DemoController = function($interval) { autoCounter(0, 1, 4, 1000); autoCounter(1, 98, 4, 1000); - vm.scriptSrc = '\n\n' + + vm.scriptSrc = '\n\n' + '\n' + '\n' + -''; +''; }; var GifController = function($interval) { @@ -71,6 +71,6 @@ var GifController = function($interval) { }; -angular.module('angular-notifications.demo.controllers') +angular.module('angular-notification-icons.demo.controllers') .controller('DemoController', ['$interval', DemoController]) .controller('GifController', ['$interval', GifController]); \ No newline at end of file diff --git a/dist/angular-notifications.css b/dist/angular-notification-icons.css similarity index 100% rename from dist/angular-notifications.css rename to dist/angular-notification-icons.css diff --git a/dist/angular-notifications.js b/dist/angular-notification-icons.js similarity index 81% rename from dist/angular-notifications.js rename to dist/angular-notification-icons.js index 243a27f..93ceaa4 100644 --- a/dist/angular-notifications.js +++ b/dist/angular-notification-icons.js @@ -1,9 +1,9 @@ 'use strict'; -angular.module('angular-notifications', ['angular-notifications.tpls', 'ngAnimate']); -angular.module('angular-notifications.tpls', []); +angular.module('angular-notification-icons', ['angular-notification-icons.tpls', 'ngAnimate']); +angular.module('angular-notification-icons.tpls', []); -angular.module("angular-notifications.tpls").run(["$templateCache", function($templateCache) {$templateCache.put("template/notification-icon.html","
\r\n
{{notification.count}}
\r\n
\r\n \r\n
\r\n
");}]); +angular.module("angular-notification-icons.tpls").run(["$templateCache", function($templateCache) {$templateCache.put("template/notification-icon.html","
\r\n
{{notification.count}}
\r\n
\r\n \r\n
\r\n
");}]); /* global angular */ (function() { @@ -111,7 +111,7 @@ angular.module("angular-notifications.tpls").run(["$templateCache", function($te }; }; - angular.module('angular-notifications') + angular.module('angular-notification-icons') .controller('NotificationDirectiveController', ['$scope', '$animate', '$q', NotificationDirectiveController]) .directive('notificationIcon', notificationDirective); }()); \ No newline at end of file diff --git a/dist/angular-notifications.min.css b/dist/angular-notification-icons.min.css similarity index 100% rename from dist/angular-notifications.min.css rename to dist/angular-notification-icons.min.css diff --git a/dist/angular-notification-icons.min.js b/dist/angular-notification-icons.min.js new file mode 100644 index 0000000..d503a7d --- /dev/null +++ b/dist/angular-notification-icons.min.js @@ -0,0 +1 @@ +"use strict";angular.module("angular-notification-icons",["angular-notification-icons.tpls","ngAnimate"]),angular.module("angular-notification-icons.tpls",[]),angular.module("angular-notification-icons.tpls").run(["$templateCache",function(n){n.put("template/notification-icon.html",'
\r\n
{{notification.count}}
\r\n
\r\n \r\n
\r\n
')}]),function(){var n=function(n,i,t){var o=this;o.visible=!1,o.wideThreshold=o.wideThreshold||100;var a,e={appear:o.appearAnimation||o.animation||"grow",update:o.updateAnimation||o.animation||"grow",disappear:o.disappearAnimation};o.init=function(i){o.$element=i.find(".angular-notifications-icon"),o.clearTrigger&&i.on(o.clearTrigger,function(){o.count=0,n.$apply()})};var r=function(n){return n?(a&&i.cancel(a),a=i.addClass(o.$element,n),a.then(function(){return o.$element.removeClass(n),t.when(!0)}),a):t.when(!1)},c=function(){o.visible=!0,r(e.appear)},l=function(){r(e.disappear).then(function(i){o.visible=!1,i&&n.$apply()})},u=function(){r(e.update)};n.$watch(function(){return o.count},function(){o.visible===!1&&o.count>0?c():o.visible===!0&&o.count<=0?l():u(),o.count>=o.wideThreshold?o.$element.addClass("wide-icon"):o.$element.removeClass("wide-icon")})},i=function(){return{restrict:"EA",scope:{count:"=",hideCount:"@",animation:"@",appearAnimation:"@",disappearAnimation:"@",updateAnimation:"@",clearTrigger:"@",wideThreshold:"@"},controller:"NotificationDirectiveController",controllerAs:"notification",bindToController:!0,transclude:!0,templateUrl:"template/notification-icon.html",link:function(n,i,t,o){o.init(i)}}};angular.module("angular-notification-icons").controller("NotificationDirectiveController",["$scope","$animate","$q",n]).directive("notificationIcon",i)}(); \ No newline at end of file diff --git a/dist/angular-notifications.min.js b/dist/angular-notifications.min.js deleted file mode 100644 index 706a664..0000000 --- a/dist/angular-notifications.min.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";angular.module("angular-notifications",["angular-notifications.tpls","ngAnimate"]),angular.module("angular-notifications.tpls",[]),angular.module("angular-notifications.tpls").run(["$templateCache",function(n){n.put("template/notification-icon.html",'
\r\n
{{notification.count}}
\r\n
\r\n \r\n
\r\n
')}]),function(){var n=function(n,i,t){var a=this;a.visible=!1,a.wideThreshold=a.wideThreshold||100;var o,e={appear:a.appearAnimation||a.animation||"grow",update:a.updateAnimation||a.animation||"grow",disappear:a.disappearAnimation};a.init=function(i){a.$element=i.find(".angular-notifications-icon"),a.clearTrigger&&i.on(a.clearTrigger,function(){a.count=0,n.$apply()})};var r=function(n){return n?(o&&i.cancel(o),o=i.addClass(a.$element,n),o.then(function(){return a.$element.removeClass(n),t.when(!0)}),o):t.when(!1)},c=function(){a.visible=!0,r(e.appear)},l=function(){r(e.disappear).then(function(i){a.visible=!1,i&&n.$apply()})},u=function(){r(e.update)};n.$watch(function(){return a.count},function(){a.visible===!1&&a.count>0?c():a.visible===!0&&a.count<=0?l():u(),a.count>=a.wideThreshold?a.$element.addClass("wide-icon"):a.$element.removeClass("wide-icon")})},i=function(){return{restrict:"EA",scope:{count:"=",hideCount:"@",animation:"@",appearAnimation:"@",disappearAnimation:"@",updateAnimation:"@",clearTrigger:"@",wideThreshold:"@"},controller:"NotificationDirectiveController",controllerAs:"notification",bindToController:!0,transclude:!0,templateUrl:"template/notification-icon.html",link:function(n,i,t,a){a.init(i)}}};angular.module("angular-notifications").controller("NotificationDirectiveController",["$scope","$animate","$q",n]).directive("notificationIcon",i)}(); \ No newline at end of file diff --git a/gulp/build.js b/gulp/build.js index 55060ec..a077b35 100644 --- a/gulp/build.js +++ b/gulp/build.js @@ -16,28 +16,28 @@ module.exports = function(options) { // TODO: Combine all of these pipes gulp.task('templates', function() { return gulp.src(options.src + '/**/*.html') - .pipe(templateCache({module: 'angular-notifications.tpls'})) + .pipe(templateCache({module: 'angular-notification-icons.tpls'})) .pipe(gulp.dest(options.tmp + '/templateCache')); }); gulp.task('build', ['scripts:jshint', 'templates'], function() { gulp.src([options.src + '/**/*.js', options.tmp + '/templateCache/*.js', '!' + options.src + '/**/*.spec.js']) .pipe($.angularFilesort()).on('error', options.errorHandler('AngularFilesort')) - .pipe($.concat('angular-notifications.js')) + .pipe($.concat('angular-notification-icons.js')) .pipe(gulp.dest(options.dist)) .pipe($.uglify()) - .pipe($.rename('angular-notifications.min.js')) + .pipe($.rename('angular-notification-icons.min.js')) .pipe(gulp.dest(options.dist)); return gulp.src(options.src + '/**/*.less') - .pipe($.concat('angular-notifications.less')) + .pipe($.concat('angular-notification-icons.less')) .pipe(gulp.dest(options.tmp)) .pipe($.less()).on('error', options.errorHandler('Less')) .pipe($.autoprefixer()).on('error', options.errorHandler('Autoprefixer')) - .pipe($.rename('angular-notifications.css')) + .pipe($.rename('angular-notification-icons.css')) .pipe(gulp.dest(options.dist)) .pipe($.csso()) - .pipe($.rename('angular-notifications.min.css')) + .pipe($.rename('angular-notification-icons.min.css')) .pipe(gulp.dest(options.dist)); }); }; diff --git a/gulp/inject.js b/gulp/inject.js index aa633bb..089c3d1 100644 --- a/gulp/inject.js +++ b/gulp/inject.js @@ -37,6 +37,6 @@ module.exports = function(options) { }; }; gulp.task('inject', ['scripts', 'styles'], inject(options.src)); - gulp.task('inject:dist', inject(options.dist, {srcStyles: options.dist + '/angular-notifications.css', srcJs: options.dist + '/angular-notifications.js'})); - gulp.task('inject:dist:min', inject(options.dist, {srcStyles: options.dist + '/angular-notifications.min.css', srcJs: options.dist + '/angular-notifications.min.js'})); + gulp.task('inject:dist', inject(options.dist, {srcStyles: options.dist + '/angular-notification-icons.css', srcJs: options.dist + '/angular-notification-icons.js'})); + gulp.task('inject:dist:min', inject(options.dist, {srcStyles: options.dist + '/angular-notification-icons.min.css', srcJs: options.dist + '/angular-notification-icons.min.js'})); }; diff --git a/gulp/watch.js b/gulp/watch.js index 2ac486a..ffb6305 100644 --- a/gulp/watch.js +++ b/gulp/watch.js @@ -52,6 +52,6 @@ module.exports = function(options) { }; gulp.task('watch', ['inject'], watch(options.src)); - gulp.task('watch:dist', ['inject:dist'], watch(options.dist, {watchSrcLess: false, watchSrcHtml: false, srcJs: 'angular-notifications.js'})); - gulp.task('watch:dist:min', ['inject:dist:min'], watch(options.dist, {watchSrcLess: false, watchSrcHtml: false, srcJs: 'angular-notifications.min.js'})); + gulp.task('watch:dist', ['inject:dist'], watch(options.dist, {watchSrcLess: false, watchSrcHtml: false, srcJs: 'angular-notification-icons.js'})); + gulp.task('watch:dist:min', ['inject:dist:min'], watch(options.dist, {watchSrcLess: false, watchSrcHtml: false, srcJs: 'angular-notification-icons.min.js'})); }; diff --git a/src/angular-notifications.directive.js b/src/angular-notification-icons.directive.js similarity index 98% rename from src/angular-notifications.directive.js rename to src/angular-notification-icons.directive.js index e505f39..4f91958 100644 --- a/src/angular-notifications.directive.js +++ b/src/angular-notification-icons.directive.js @@ -105,7 +105,7 @@ }; }; - angular.module('angular-notifications') + angular.module('angular-notification-icons') .controller('NotificationDirectiveController', ['$scope', '$animate', '$q', NotificationDirectiveController]) .directive('notificationIcon', notificationDirective); }()); \ No newline at end of file diff --git a/src/angular-notification-icons.modules.js b/src/angular-notification-icons.modules.js new file mode 100644 index 0000000..d78e355 --- /dev/null +++ b/src/angular-notification-icons.modules.js @@ -0,0 +1,4 @@ +'use strict'; + +angular.module('angular-notification-icons', ['angular-notification-icons.tpls', 'ngAnimate']); +angular.module('angular-notification-icons.tpls', []); diff --git a/src/angular-notifications.modules.js b/src/angular-notifications.modules.js deleted file mode 100644 index 512e3eb..0000000 --- a/src/angular-notifications.modules.js +++ /dev/null @@ -1,4 +0,0 @@ -'use strict'; - -angular.module('angular-notifications', ['angular-notifications.tpls', 'ngAnimate']); -angular.module('angular-notifications.tpls', []); diff --git a/src/css/angular-notifications.less b/src/css/angular-notification-icons.less similarity index 100% rename from src/css/angular-notifications.less rename to src/css/angular-notification-icons.less diff --git a/src/test/angular-notifications.spec.js b/src/test/angular-notification-icons.spec.js similarity index 100% rename from src/test/angular-notifications.spec.js rename to src/test/angular-notification-icons.spec.js From 66308f37fbcecc05318ef29485fb6232c69b5468 Mon Sep 17 00:00:00 2001 From: Jacob Meacham Date: Sun, 7 Jun 2015 22:17:07 -0700 Subject: [PATCH 2/2] Remove a few more references to angular-notifications. --- bower.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bower.json b/bower.json index 37f41ca..3aaebac 100644 --- a/bower.json +++ b/bower.json @@ -1,9 +1,9 @@ { - "name": "angular-notifications", + "name": "angular-notification-icons", "description": "angular directive to add notification popups to any element", "main": [ - "dist/angular-notifications.js", - "dist/angular-notifications.css" + "dist/angular-notification-icons.js", + "dist/angular-notification-icons.css" ], "ignore": [ "app", diff --git a/package.json b/package.json index 2b9f2d3..96f5f0e 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "angular-notifications", + "name": "angular-notification-icons", "version": "0.0.1", "dependencies": {}, "scripts": {