Skip to content

Commit 79429e2

Browse files
author
Roland Groza
committed
chore(release): 0.1.1
1 parent b3597c5 commit 79429e2

File tree

2 files changed

+80
-70
lines changed

2 files changed

+80
-70
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,15 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
<a name="0.1.1"></a>
6+
## [0.1.1](https://github.com/rolandjitsu/file-selector/compare/v0.1.0...v0.1.1) (2018-10-05)
7+
8+
9+
### Bug Fixes
10+
11+
* filter non-file items out ([b3597c5](https://github.com/rolandjitsu/file-selector/commit/b3597c5))
12+
13+
14+
515
<a name="0.1.0"></a>
616
# 0.1.0 (2018-10-04)

package.json

Lines changed: 70 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -1,74 +1,74 @@
11
{
2-
"name": "file-selector",
3-
"version": "0.1.0",
4-
"description": "Convert DataTransfer object to a list of File objects",
5-
"main": "./dist/index.js",
6-
"module": "./dist/es5/index.js",
7-
"es2015": "./dist/es2015/index.js",
8-
"typings": "./dist/index.d.ts",
9-
"keywords": [
10-
"drag-and-drop",
11-
"html5",
12-
"file-api",
13-
"DataTransfer",
14-
"File"
15-
],
16-
"homepage": "https://github.com/rolandjitsu/file-selector",
17-
"license": "MIT",
18-
"author": {
19-
"name": "Roland Groza",
20-
"email": "[email protected]"
21-
},
22-
"repository": {
23-
"type": "git",
24-
"url": ""
25-
},
2+
"name": "file-selector",
3+
"version": "0.1.1",
4+
"description": "Convert DataTransfer object to a list of File objects",
5+
"main": "./dist/index.js",
6+
"module": "./dist/es5/index.js",
7+
"es2015": "./dist/es2015/index.js",
8+
"typings": "./dist/index.d.ts",
9+
"keywords": [
10+
"drag-and-drop",
11+
"html5",
12+
"file-api",
13+
"DataTransfer",
14+
"File"
15+
],
16+
"homepage": "https://github.com/rolandjitsu/file-selector",
17+
"license": "MIT",
18+
"author": {
19+
"name": "Roland Groza",
20+
"email": "[email protected]"
21+
},
22+
"repository": {
23+
"type": "git",
24+
"url": ""
25+
},
26+
"scripts": {
27+
"prebuild": "yarn run clean",
28+
"build": "npm-run-all -s compile build:umd",
29+
"build:umd": "rollup -c ./rollup.config.js",
30+
"compile": "npm-run-all -p compile:es2015 compile:es5 compile:cjs compile:types",
31+
"compile:es2015": "tsc -p ./tsconfig.es2015.json",
32+
"compile:es5": "tsc -p ./tsconfig.es5.json",
33+
"compile:cjs": "tsc -p ./tsconfig.cjs.json",
34+
"compile:types": "tsc -p ./tsconfig.types.json",
35+
"clean": "rm -rf dist/*",
36+
"lint": "tslint -c tslint.json -p ./tsconfig.spec.json -t stylish",
37+
"lint:fix": "yarn run lint -- --fix",
38+
"pretest:cov": "yarn run lint",
39+
"test:cov": "jest --coverage",
40+
"test": "jest --watch",
41+
"release": "standard-version"
42+
},
43+
"standard-version": {
2644
"scripts": {
27-
"prebuild": "yarn run clean",
28-
"build": "npm-run-all -s compile build:umd",
29-
"build:umd": "rollup -c ./rollup.config.js",
30-
"compile": "npm-run-all -p compile:es2015 compile:es5 compile:cjs compile:types",
31-
"compile:es2015": "tsc -p ./tsconfig.es2015.json",
32-
"compile:es5": "tsc -p ./tsconfig.es5.json",
33-
"compile:cjs": "tsc -p ./tsconfig.cjs.json",
34-
"compile:types": "tsc -p ./tsconfig.types.json",
35-
"clean": "rm -rf dist/*",
36-
"lint": "tslint -c tslint.json -p ./tsconfig.spec.json -t stylish",
37-
"lint:fix": "yarn run lint -- --fix",
38-
"pretest:cov": "yarn run lint",
39-
"test:cov": "jest --coverage",
40-
"test": "jest --watch",
41-
"release": "standard-version"
42-
},
43-
"standard-version": {
44-
"scripts": {
45-
"prerelease": "yarn test:cov"
46-
}
47-
},
48-
"dependencies": {
49-
"tslib": "^1.9.0"
50-
},
51-
"devDependencies": {
52-
"@babel/core": "^7.0.0-beta.54",
53-
"@types/jest": "^23.3.3",
54-
"@types/node": "^9.4.5",
55-
"babel-core": "^7.0.0-0",
56-
"babel-jest": "^23.4.0",
57-
"camelcase": "^4.1.0",
58-
"jest": "^23.6.0",
59-
"jest-environment-jsdom": "^23.4.0",
60-
"npm-run-all": "^4.1.3",
61-
"rollup": "^0.65.0",
62-
"rollup-plugin-commonjs": "^9.1.6",
63-
"rollup-plugin-node-resolve": "^3.3.0",
64-
"rollup-plugin-sourcemaps": "^0.4.2",
65-
"rollup-plugin-uglify": "^4.0.0",
66-
"standard-version": "^4.4.0",
67-
"ts-jest": "^23.10.3",
68-
"tslint": "^5.9.1",
69-
"typescript": "^3.0.3"
70-
},
71-
"engines": {
72-
"node": ">= 8"
45+
"prerelease": "yarn test:cov"
7346
}
47+
},
48+
"dependencies": {
49+
"tslib": "^1.9.0"
50+
},
51+
"devDependencies": {
52+
"@babel/core": "^7.0.0-beta.54",
53+
"@types/jest": "^23.3.3",
54+
"@types/node": "^9.4.5",
55+
"babel-core": "^7.0.0-0",
56+
"babel-jest": "^23.4.0",
57+
"camelcase": "^4.1.0",
58+
"jest": "^23.6.0",
59+
"jest-environment-jsdom": "^23.4.0",
60+
"npm-run-all": "^4.1.3",
61+
"rollup": "^0.65.0",
62+
"rollup-plugin-commonjs": "^9.1.6",
63+
"rollup-plugin-node-resolve": "^3.3.0",
64+
"rollup-plugin-sourcemaps": "^0.4.2",
65+
"rollup-plugin-uglify": "^4.0.0",
66+
"standard-version": "^4.4.0",
67+
"ts-jest": "^23.10.3",
68+
"tslint": "^5.9.1",
69+
"typescript": "^3.0.3"
70+
},
71+
"engines": {
72+
"node": ">= 8"
73+
}
7474
}

0 commit comments

Comments
 (0)