Skip to content

Commit

Permalink
fixing package name -- rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesHoppe committed Mar 20, 2020
1 parent e4fee36 commit fc354f8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions workspace/projects/date-value-accessor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "date-value-accessor",
"version": "1.0.0-rc.1",
"name": "angular-date-value-accessor",
"version": "1.0.0-rc.2",
"description": "DateValueAccessor for Angular (two-way data bindings with ngModel on date objects)",
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { FormsModule } from '@angular/forms';
import { By } from '@angular/platform-browser';

import { DateValueAccessorModule } from './date-value-accessor.module';
import { DateValueAccessor } from './date-value-accessor';

@Component({
template: `
Expand Down Expand Up @@ -38,8 +38,8 @@ describe('DateValueAccessor', () => {

beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [TestFormComponent],
imports: [FormsModule, DateValueAccessorModule]
declarations: [TestFormComponent, DateValueAccessor],
imports: [FormsModule]
})
.compileComponents();
}));
Expand Down
2 changes: 1 addition & 1 deletion workspace/projects/demo/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>Angular: DateValueAccessor</title>
<base href="/">

<meta name="description" content="Demo: A custom value accessor for Angular 2. Now you can use JavaScript Date objects directly with two-way data bindings (ngModel).">
<meta name="description" content="Demo: A custom value accessor for Angular. Now you can use JavaScript Date objects directly with two-way data bindings (ngModel).">
<meta name="author" content="Johannes Hoppe">

<meta name="viewport" content="width=device-width, initial-scale=1">
Expand Down

0 comments on commit fc354f8

Please sign in to comment.