Skip to content

Commit 6aaaffc

Browse files
authored
Merge pull request #399 from NickPhura/master
NOBUG: Version updates. Trivial comment updates.
2 parents f3aec50 + 129f7e5 commit 6aaaffc

File tree

4 files changed

+28
-28
lines changed

4 files changed

+28
-28
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Public front-end for the ACRFD (formerly: PRC) application.
1010

1111
| Technology | Version | Website | Description |
1212
|------------|---------|-------------------------|-------------------------------------------|
13-
| node | 8.x.x | https://nodejs.org/en/ | JavaScript Runtime |
13+
| node | 10.x.x | https://nodejs.org/en/ | JavaScript Runtime |
1414
| npm | 6.x.x | https://www.npmjs.com/ | Node Package Manager |
1515
| ng | 6.x.x | https://cli.angular.io/ | Angular CLI |
1616
| yarn | latest | https://yarnpkg.com/en/ | Package Manager (more efficient than npm) |

package.json

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -33,58 +33,58 @@
3333
"@angular/platform-browser-dynamic": "6.1.10",
3434
"@angular/router": "6.1.10",
3535
"@ng-bootstrap/ng-bootstrap": "3.3.1",
36-
"@types/geojson": "7946.0.6",
37-
"@types/leaflet": "1.4.3",
38-
"@types/leaflet.markercluster": "1.0.3",
36+
"@types/geojson": "7946.0.7",
37+
"@types/leaflet": "1.4.4",
38+
"@types/leaflet.markercluster": "1.4.0",
3939
"bootstrap": "4.3.1",
4040
"classlist.js": "1.1.20150312",
41-
"core-js": "2.6.5",
41+
"core-js": "2.6.8",
4242
"hammerjs": "2.0.8",
4343
"intl": "1.2.5",
44-
"jquery": "3.1.1",
45-
"leaflet": "1.4.0",
44+
"jquery": "3.4.1",
45+
"leaflet": "1.5.1",
4646
"leaflet.markercluster": "1.4.1",
4747
"linkify-it": "2.1.0",
4848
"lodash": "4.17.11",
4949
"moment": "2.24.0",
5050
"mygovbc-bootstrap-theme": "0.4.1",
5151
"ng2-bootstrap-modal": "1.0.1",
5252
"ngx-chips": "1.9.8",
53-
"ngx-page-scroll": "6.0.0-beta.1",
54-
"ngx-page-scroll-core": "6.0.0-beta.1",
53+
"ngx-page-scroll": "6.0.0",
54+
"ngx-page-scroll-core": "6.0.0",
5555
"ngx-text-overflow-clamp": "0.0.1",
56-
"popper.js": "1.14.7",
57-
"rxjs": "6.4.0",
56+
"popper.js": "1.15.0",
57+
"rxjs": "6.5.2",
5858
"web-animations-js": "2.3.1",
59-
"zone.js": "0.8.29"
59+
"zone.js": "0.9.1"
6060
},
6161
"devDependencies": {
62-
"@angular-devkit/build-angular": "0.13.4",
62+
"@angular-devkit/build-angular": "0.13.9",
6363
"@angular/cli": "6.2.9",
6464
"@angular/compiler": "6.1.10",
6565
"@angular/compiler-cli": "6.1.10",
6666
"@types/arcgis-js-api": "4.6.0",
67-
"@types/jasmine": "3.3.9",
68-
"@types/linkify-it": "2.0.4",
69-
"@types/lodash": "4.14.121",
70-
"@types/node": "8.10.42",
67+
"@types/jasmine": "3.3.12",
68+
"@types/linkify-it": "2.1.0",
69+
"@types/lodash": "4.14.130",
70+
"@types/node": "10.14.7",
7171
"codelyzer": "4.5.0",
72-
"husky": "1.3.1",
73-
"jasmine-core": "3.3.0",
72+
"husky": "2.3.0",
73+
"jasmine-core": "3.4.0",
7474
"jasmine-spec-reporter": "4.2.1",
75-
"karma": "4.0.1",
75+
"karma": "4.1.0",
7676
"karma-chrome-launcher": "2.2.0",
7777
"karma-cli": "2.0.0",
7878
"karma-coverage-istanbul-reporter": "2.0.5",
7979
"karma-jasmine": "2.0.1",
80-
"karma-jasmine-html-reporter": "1.4.0",
81-
"lint-staged": "8.1.5",
80+
"karma-jasmine-html-reporter": "1.4.2",
81+
"lint-staged": "8.1.7",
8282
"npm-run-all": "4.1.5",
83-
"prettier": "1.16.4",
83+
"prettier": "1.17.1",
8484
"protractor": "5.4.2",
85-
"stylelint": "9.10.1",
86-
"stylelint-config-standard": "18.2.0",
87-
"tslint": "5.13.1",
85+
"stylelint": "10.0.1",
86+
"stylelint-config-standard": "18.3.0",
87+
"tslint": "5.16.0",
8888
"tslint-config-prettier": "1.18.0",
8989
"typescript": "2.9.2"
9090
},

src/app/models/feature.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// this is the data structure as returned by BCGW
2+
// this is the data structure as returned by Tantalis
33
//
44
export class Feature {
55
geometry: {

src/app/services/application.service.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { CommentPeriod } from 'app/models/commentperiod';
1212
import { Decision } from 'app/models/decision';
1313
import { Feature } from 'app/models/feature';
1414

15-
fdescribe('ApplicationService', () => {
15+
describe('ApplicationService', () => {
1616
let service;
1717
const apiServiceStub = {
1818
getApplication(id: string) {

0 commit comments

Comments
 (0)