Skip to content

Commit

Permalink
style(): noImplicitAny updates (closes bleenco#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkuri committed May 14, 2017
1 parent 6892c01 commit a8d7314
Show file tree
Hide file tree
Showing 5 changed files with 906 additions and 902 deletions.
47 changes: 24 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-uploader",
"version": "3.0.4",
"version": "3.0.5",
"main": "bundles/ngx-uploader.umd.js",
"module": "index.js",
"esnext": "index.js",
Expand Down Expand Up @@ -35,38 +35,38 @@
},
"homepage": "https://github.com/jkuri/ngx-uploader#readme",
"devDependencies": {
"@angular/animations": "^4.1.0",
"@angular/common": "^4.1.0",
"@angular/compiler": "^4.1.0",
"@angular/compiler-cli": "^4.1.0",
"@angular/core": "^4.1.0",
"@angular/forms": "^4.1.0",
"@angular/http": "^4.1.0",
"@angular/platform-browser": "^4.1.0",
"@angular/platform-browser-dynamic": "^4.1.0",
"@angular/platform-server": "^4.1.0",
"@angular/router": "^4.1.0",
"@angular/animations": "^4.1.1",
"@angular/common": "^4.1.1",
"@angular/compiler": "^4.1.1",
"@angular/compiler-cli": "^4.1.1",
"@angular/core": "^4.1.1",
"@angular/forms": "^4.1.1",
"@angular/http": "^4.1.1",
"@angular/platform-browser": "^4.1.1",
"@angular/platform-browser-dynamic": "^4.1.1",
"@angular/platform-server": "^4.1.1",
"@angular/router": "^4.1.1",
"@ngtools/webpack": "^1.3.1",
"@types/cors": "^2.8.1",
"@types/express": "^4.0.35",
"@types/jasmine": "^2.5.47",
"@types/multer": "^0.0.33",
"@types/node": "^7.0.14",
"@types/node": "^7.0.18",
"add-asset-html-webpack-plugin": "^2.0.1",
"codelyzer": "^3.0.1",
"compression-webpack-plugin": "^0.4.0",
"copy-webpack-plugin": "^4.0.1",
"core-js": "^2.4.1",
"cors": "^2.8.3",
"css-loader": "^0.28.0",
"css-loader": "^0.28.1",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"jasmine": "^2.6.0",
"jasmine-spec-reporter": "^4.0.0",
"jasmine-spec-reporter": "^4.1.0",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-chrome-launcher": "^2.1.1",
"karma-jasmine": "^1.1.0",
"karma-spec-reporter": "^0.0.31",
"karma-webpack": "^2.0.3",
Expand All @@ -79,19 +79,20 @@
"rash": "^0.1.2",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"rxjs": "^5.3.0",
"rxjs": "^5.3.1",
"sass-loader": "^6.0.3",
"script-ext-html-webpack-plugin": "^1.7.1",
"source-map-loader": "^0.2.1",
"style-loader": "^0.16.1",
"style-loader": "^0.17.0",
"to-string-loader": "^1.1.5",
"ts-node": "^3.0.2",
"tslint": "^5.1.0",
"typescript": "^2.3.1",
"webpack": "^2.4.1",
"ts-node": "^3.0.4",
"tslint": "^5.2.0",
"typescript": "^2.3.2",
"webpack": "^2.5.0",
"webpack-dev-server": "^2.4.5",
"webpack-dll-bundles-plugin": "^1.0.0-beta.5",
"webpack-merge": "^4.1.0",
"zone.js": "^0.8.9"
"webpack-node-externals": "^1.6.0",
"zone.js": "^0.8.10"
}
}
2 changes: 1 addition & 1 deletion src/ngx-uploader/directives/ng-file-drop.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class NgFileDropDirective implements OnInit, OnDestroy {
isServer: boolean = isPlatformServer(this.platform_id);
el: HTMLInputElement;

constructor(@Inject(PLATFORM_ID) private platform_id, private elementRef: ElementRef) {
constructor(@Inject(PLATFORM_ID) private platform_id: Object, private elementRef: ElementRef) {
this.upload = new NgUploaderService();
this.uploadOutput = new EventEmitter<UploadOutput>();
}
Expand Down
2 changes: 1 addition & 1 deletion src/ngx-uploader/directives/ng-file-select.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class NgFileSelectDirective implements OnInit, OnDestroy {
isServer: boolean = isPlatformServer(this.platform_id);
el: HTMLInputElement;

constructor(@Inject(PLATFORM_ID) private platform_id, private elementRef: ElementRef) {
constructor(@Inject(PLATFORM_ID) private platform_id: Object, private elementRef: ElementRef) {
this.upload = new NgUploaderService();
this.uploadOutput = new EventEmitter<UploadOutput>();
}
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"module": "es2015",
"moduleResolution": "node",
"target": "es5",
"noImplicitAny": false,
"noImplicitAny": true,
"sourceMap": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
Expand Down
Loading

0 comments on commit a8d7314

Please sign in to comment.