Skip to content

Commit

Permalink
Dependencies fix
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishek-thesunflowerlab committed Nov 13, 2019
1 parent a1f409d commit 9db2007
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ export class AppComponent implements OnInit {
ngOnInit() {
this.events.SectionClickEvent = (section) => { console.log(section); };
this.events.ItemClicked = (item) => { console.log(item); };
this.events.ItemDropped = (item) => { console.log(item); };

this.periods = [
{
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"copy_readme": "cp ./README.md ./dist/ngx-time-scheduler",
"copy_files": "npm run copy_license && npm run copy_readme",
"npm_pack": "cd dist/ngx-time-scheduler && npm pack",
"package": "npm run build_lib && npm run copy_files && npm run npm_pack"
"package": "npm run build_lib && npm run copy_files && npm run npm_pack",
"publish": "cd dist/ngx-time-scheduler && npm publish"
},
"private": true,
"dependencies": {
Expand Down
1 change: 1 addition & 0 deletions projects/ngx-time-scheduler/ng-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"entryFile": "src/public_api.ts"
},
"whitelistedNonPeerDependencies": [
"@angular/cdk",
"moment"
]
}
6 changes: 5 additions & 1 deletion projects/ngx-time-scheduler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-time-scheduler",
"version": "1.2.4",
"version": "1.2.5",
"description": "A simple Angular Timeline Scheduler library",
"author": {
"name": "Abhishek Jain",
Expand Down Expand Up @@ -31,5 +31,9 @@
"@angular/core": "^8.2.13",
"@angular/cdk": "^8.2.3",
"moment": "^2.24.0"
},
"dependencies": {
"@angular/cdk": "^8.2.3",
"moment": "^2.24.0"
}
}

0 comments on commit 9db2007

Please sign in to comment.