Skip to content

Commit

Permalink
chore(release): 4.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jkuri committed Nov 9, 2017
1 parent fd111c0 commit 6b0c1e1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
3 changes: 1 addition & 2 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ dist/
node_modules/
.DS_Store
src/
index.ts
ngx-uploader.ts
!src/ngx-uploader
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
{
"name": "ngx-uploader",
"version": "4.1.1",
"version": "4.1.2",
"main": "bundles/ngx-uploader.umd.js",
"module": "lib/index.js",
"esnext": "lib/index.js",
"scripts": {
"start": "webpack-dev-server --env.client --env.serve --progress",
"start:aot": "webpack-dev-server --env.client --env.serve --env.aot --progress",
Expand All @@ -12,7 +11,7 @@
"prebuild": "npm run clean",
"prebuild:prod": "npm run clean",
"clean": "rimraf dist lib bundles ./**/*.ngsummary.*",
"prepublishOnly": "ngc -p tsconfig.bundle.json && webpack --config webpack.dist.js -p"
"prepublishOnly": "tsc -p tsconfig.bundle.json && webpack --config webpack.dist.js -p"
},
"repository": {
"type": "git",
Expand Down
13 changes: 6 additions & 7 deletions tsconfig.bundle.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,17 @@
"experimentalDecorators": true,
"declaration": false,
"lib": [
"es2015",
"es2017",
"dom"
],
"outDir": "lib",
"typeRoots": [
"node_modules/@types"
]
},
"files": [
"ngx-uploader.ts"
],
"angularCompilerOptions": {
"skipMetadataEmit": true
}
"include": [
"index.ts",
"ngx-uploader.ts",
"src/ngx-uploader/**/*.ts"
]
}

0 comments on commit 6b0c1e1

Please sign in to comment.