Skip to content

Commit

Permalink
v0.5.14
Browse files Browse the repository at this point in the history
  • Loading branch information
jkuri committed Aug 26, 2016
1 parent a0ba88f commit 38157e8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ng2-uploader",
"description": "Angular2 File Uploader",
"version": "0.5.13",
"version": "0.5.14",
"license": "MIT",
"main": "ng2-uploader.ts",
"author": "Jan Kuri <[email protected]>",
Expand Down
6 changes: 3 additions & 3 deletions scripts/clean.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

find src/ -name "*.js" -type f -delete
find src/ -name "*.js.map" -type f -delete
find src/ -name "*.d.ts" -type f -delete
find . -name "*.js" -type f -not -path "./node_modules/*" -delete
find . -name "*.js.map" -type f -not -path "./node_modules/*" -delete
find . -name "*.d.ts" -type f -not -path "./node_modules/*" -delete
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["es6", "dom"],
"mapRoot": "./",
"module": "es6",
"rootDir": ".",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"target": "es5"
Expand Down

0 comments on commit 38157e8

Please sign in to comment.