Skip to content

Commit

Permalink
fix: 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jkuri committed Dec 9, 2016
1 parent ca718f3 commit 8ba6cc1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
5 changes: 5 additions & 0 deletions index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export * from './src/directives/ng-file-drop';
export * from './src/directives/ng-file-select';
export * from './src/services/ng2-uploader';

export { Ng2UploaderModule } from './src/module/ng2-uploader.module';
6 changes: 1 addition & 5 deletions ng2-uploader.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
export * from './src/directives/ng-file-drop';
export * from './src/directives/ng-file-select';
export * from './src/services/ng2-uploader';

export { Ng2UploaderModule } from './src/module/ng2-uploader.module';
export * from './index';
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"name": "ng2-uploader",
"description": "Angular2 File Uploader",
"version": "1.6.0",
"version": "1.6.1",
"license": "MIT",
"main": "ng2-uploader.js",
"typings": "ng2-uploader.d.ts",
"main": "index.js",
"typings": "index.d.ts",
"author": "Jan Kuri <[email protected]>",
"scripts": {
"clean": "./scripts/clean.sh",
"dev": "ngc --watch",
"prepublish": "./node_modules/.bin/ngc -p tsconfig.json"
"dev": "tsc --watch",
"build": "./node_modules/.bin/ngc -p tsconfig.json",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
Expand All @@ -26,6 +25,7 @@
"dist"
],
"files": [
"index.ts",
"ng2-uploader.ts"
],
"angularCompilerOptions": {
Expand Down

0 comments on commit 8ba6cc1

Please sign in to comment.