Skip to content

Commit

Permalink
v0.5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jkuri committed Jul 28, 2016
1 parent a91ac7a commit f09f435
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
**/*.js
**/*.js.map
!make.js

npm-debug.log

Expand Down
14 changes: 9 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
{
"name": "ng2-uploader",
"description": "Angular2 File Uploader",
"version": "0.5.6",
"version": "0.5.7",
"license": "MIT",
"main": "./ng2-uploader.ts",
"main": "ng2-uploader.ts",
"author": "Jan Kuri <[email protected]>",
"scripts": {
"dev": "tsc --watch",
"prepublish": "typings install && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkuri/ng2-uploader.git"
Expand All @@ -18,9 +22,9 @@
"uploader"
],
"dependencies": {
"@angular/common": "^2.0.0-rc.4",
"@angular/compiler": "^2.0.0-rc.4",
"@angular/core": "^2.0.0-rc.4",
"@angular/common": "github:angular/common-builds",
"@angular/compiler": "github:angular/compiler-builds",
"@angular/core": "github:angular/core-builds",
"clang-format": "^1.0.42",
"es6-promise": "^3.2.1",
"es6-shim": "^0.35.1",
Expand Down
2 changes: 1 addition & 1 deletion src/services/ng2-uploader.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export declare class Ng2Uploader {
setOptions(options: any): void;
uploadFilesInQueue(): void;
uploadFile(file: any): void;
addFilesToQueue(files: FileList[]): void;
addFilesToQueue(files: FileList): void;
removeFileFromQueue(i: number): void;
clearQueue(): void;
getQueueSize(): number;
Expand Down
7 changes: 4 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,20 @@
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"mapRoot": "",
"module": "system",
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": true,
"noImplicitAny": false,
"rootDir": ".",
"sourceMap": true,
"sourceRoot": "/",
"sourceRoot": "./",
"target": "es5"
},
"files": [
"typings/index.d.ts",
"ng2-uploader.ts"
],
"exclude": [
"node_modules"
]
}
}

0 comments on commit f09f435

Please sign in to comment.