Skip to content

Commit cddc2ba

Browse files
committed
moving to node 8
1 parent a4c8046 commit cddc2ba

4 files changed

Lines changed: 23 additions & 10 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,4 @@ testem.log
3636
Thumbs.db
3737

3838
dist
39+
bin.tgz

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
<a name="2.9.0"></a>
5+
# [2.9.0] (???)
6+
### Features
7+
- On Select Output event ([???](https://github.com/vlio20/angular-datepicker/commit/???)) closes [#389](https://github.com/vlio20/angular-datepicker/issues/389)
8+
9+
### Improvements
10+
- Moving to node 8 ([???](https://github.com/vlio20/angular-datepicker/commit/???)) closes [#391](https://github.com/vlio20/angular-datepicker/issues/391)
11+
412
<a name="2.8.1"></a>
5-
# [2.8.1] (2018-03-12)
13+
# [2.8.1] (2018-03-13)
614
### Bug Fixes
7-
- Resolving moment value in Reactive form ([git ](https://github.com/vlio20/angular-datepicker/commit/6055041)) closes [#371](https://github.com/vlio20/angular-datepicker/issues/371)
15+
- Resolving moment value in Reactive form ([6055041](https://github.com/vlio20/angular-datepicker/commit/6055041)) closes [#371](https://github.com/vlio20/angular-datepicker/issues/371)
816

917
<a name="2.8.0"></a>
1018
# [2.8.0] (2018-03-07)

package.json

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
"build:demo": "rm -rf dist/ && ng build --prod --aot=false --bh /angular-datepicker/ && npm run build:index",
1717
"build:prod": "ng-packagr -p package.json",
1818
"release": "npm run build:prod && npm publish bin",
19-
"pack": "cd bin && npm pack",
20-
"postinstall": "opencollective postinstall"
19+
"pack": "cd bin && npm pack"
2120
},
2221
"repository": {
2322
"type": "git",
@@ -35,9 +34,8 @@
3534
"picker",
3635
"angular-datepicker"
3736
],
38-
"dependencies": {
39-
"moment": "^2.17.1",
40-
"opencollective": "^1.0.3"
37+
"peerDependencies": {
38+
"moment": "^2.17.1"
4139
},
4240
"devDependencies": {
4341
"@angular/cli": "^1.6.1",
@@ -65,7 +63,7 @@
6563
"karma-jasmine-html-reporter": "^0.2.2",
6664
"less": "^2.7.2",
6765
"ncp": "^2.0.0",
68-
"ng-packagr": "^1.6.0",
66+
"ng-packagr": "^2.4.2",
6967
"protractor": "~5.1.0",
7068
"rimraf": "^2.6.1",
7169
"rxjs": "^5.1.0",
@@ -87,6 +85,12 @@
8785
"moment": "moment"
8886
}
8987
},
90-
"dest": "bin"
88+
"dest": "bin",
89+
"whitelistedNonPeerDependencies": [
90+
"moment"
91+
]
92+
},
93+
"dependencies": {
94+
"moment": "^2.22.1"
9195
}
9296
}

src/app/demo/demo/demo.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {Moment} from 'moment';
99
import {GaService} from '../services/ga/ga.service';
1010
import {ECalendarValue} from '../../common/types/calendar-value-enum';
1111
import {INavEvent} from '../../common/models/navigation-event.model';
12-
import {ISelectionEvent} from '../../';
12+
import {ISelectionEvent} from '../../common/types/selection-evet.model';
1313
const moment = momentNs;
1414

1515
const GLOBAL_OPTION_KEYS = [

0 commit comments

Comments
 (0)