Skip to content

Commit

Permalink
update build dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
melgish committed Jan 6, 2019
1 parent fd8686d commit 37296a9
Show file tree
Hide file tree
Showing 11 changed files with 4,328 additions and 3,833 deletions.
8,091 changes: 4,286 additions & 3,805 deletions package-lock.json

Large diffs are not rendered by default.

49 changes: 24 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "./node_modules/ng-packagr/package.schema.json",
"name": "@njfiorello/weather-gauges",
"version": "0.1.4",
"version": "0.1.5",
"license": "MIT",
"description": "Some svg gauges relating to weather.",
"keywords": [
Expand All @@ -28,41 +28,40 @@
"rxjs": "^5.5.8"
},
"devDependencies": {
"@angular/animations": "^5.2.10",
"@angular/animations": "^5.2.11",
"@angular/cli": "^1.7.4",
"@angular/common": "^5.2.10",
"@angular/compiler": "^5.2.10",
"@angular/compiler-cli": "^5.2.10",
"@angular/core": "^5.2.10",
"@angular/forms": "^5.2.10",
"@angular/http": "^5.2.10",
"@angular/language-service": "^5.2.10",
"@angular/platform-browser": "^5.2.10",
"@angular/platform-browser-dynamic": "^5.2.10",
"@angular/router": "^5.2.10",
"@angular/common": "^5.2.11",
"@angular/compiler": "^5.2.11",
"@angular/compiler-cli": "^5.2.11",
"@angular/core": "^5.2.11",
"@angular/forms": "^5.2.11",
"@angular/http": "^5.2.11",
"@angular/language-service": "^5.2.11",
"@angular/platform-browser": "^5.2.11",
"@angular/platform-browser-dynamic": "^5.2.11",
"@angular/router": "^5.2.11",
"@ng-bootstrap/ng-bootstrap": "^1.1.2",
"@types/jasmine": "^2.8.7",
"@types/jasminewd2": "~2.0.2",
"@types/node": "^6.0.109",
"bootstrap": "^4.1.1",
"codelyzer": "^4.3.0",
"core-js": "^2.5.6",
"@types/jasmine": "^2.8.9",
"@types/jasminewd2": "^2.0.6",
"@types/node": "^6.14.2",
"bootstrap": "^4.2.1",
"codelyzer": "^4.5.0",
"core-js": "^2.6.1",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^2.0.2",
"karma": "^2.0.5",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-coverage-istanbul-reporter": "^1.4.3",
"karma-jasmine": "^1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"ng-packagr": "^2.4.4",
"nsp": "^3.2.1",
"ng-packagr": "^2.4.5",
"prismjs-loader": "0.0.4",
"protractor": "~5.1.2",
"rxjs": "^5.5.10",
"protractor": "^5.4.2",
"rxjs": "^5.5.12",
"ts-node": "~4.1.0",
"tslint": "~5.9.1",
"typescript": "~2.5.3",
"typescript": "^2.6.2",
"zone.js": "^0.8.26"
},
"repository": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { SimpleChange, DebugElement } from '@angular/core';
// tslint:disable-next-line:no-implicit-dependencies
import { By } from '@angular/platform-browser';
import { CelsiusDialComponent } from './celsius-dial.component';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { SimpleChange, DebugElement } from '@angular/core';
// tslint:disable-next-line:no-implicit-dependencies
import { By } from '@angular/platform-browser';
import { FarenheitDialComponent } from './farenheit-dial.component';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
// tslint:disable-next-line:no-implicit-dependencies
import { By } from '@angular/platform-browser';
import { DebugElement, SimpleChange } from '@angular/core';
import { HumidityDialComponent } from './humidity-dial.component';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { DebugElement, SimpleChange } from '@angular/core';
// tslint:disable-next-line:no-implicit-dependencies
import { By } from '@angular/platform-browser';
import { PressureInDialComponent } from './pressure-in-dial.component';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { DebugElement, SimpleChange } from '@angular/core';
// tslint:disable-next-line:no-implicit-dependencies
import { By } from '@angular/platform-browser';
import { PressureMbDialComponent } from './pressure-mb-dial.component';


describe('PressureMbDialComponent', () => {
let component: PressureMbDialComponent;
let fixture: ComponentFixture<PressureMbDialComponent>;
Expand Down
2 changes: 1 addition & 1 deletion src/weather-gauges/temp-sq-dial/temp-sq-dial.component.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component, OnInit, Input, OnChanges, SimpleChanges } from '@angular/core';
import { Component, Input, OnChanges, SimpleChanges } from '@angular/core';

const C = [0, 1, 2, 3, 4, 5, 6];
const F = [0, 1, 2, 3, 4, 5, 6];
Expand Down
7 changes: 7 additions & 0 deletions src/weather-gauges/tslint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": "../../tslint.json",
"rules": {
"no-implicit-dependencies": true,
"no-unused-variable": [true, { "check-parameters": false }]
}
}
1 change: 1 addition & 0 deletions src/weather-gauges/wind-dial/wind-dial.component.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
// tslint:disable-next-line:no-implicit-dependencies
import { By } from '@angular/platform-browser';
import { DebugElement, SimpleChange } from '@angular/core';
import { WindDialComponent } from './wind-dial.component';
Expand Down
5 changes: 4 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,8 @@
"es2017",
"dom"
]
}
},
"angularCompilerOptions": {
"preserveWhitespaces": false
},
}

0 comments on commit 37296a9

Please sign in to comment.