Skip to content

Commit

Permalink
fix(pipes): camelized pipe name
Browse files Browse the repository at this point in the history
Fixes #224

BREAKING CHANGES

Before:
```
@pipe({
  name: 'FromNow'
})
```

After:
```
@pipe({
  name: 'fromNow'
})
```
  • Loading branch information
cexbrayat committed Feb 19, 2016
1 parent de16404 commit ba9ad66
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {Pipe, PipeTransform} from 'angular2/core';


@Pipe({
name: '<%= classifiedModuleName %>'
name: '<%= camelizedModuleName %>'
})
export class <%= classifiedModuleName %> implements PipeTransform {

Expand Down

0 comments on commit ba9ad66

Please sign in to comment.