@atlaskit/chunkinator
Advanced tools
Comparing version 2.1.0 to 2.1.1
# Changelog | ||
## 2.1.1 | ||
### Patch Changes | ||
- [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option. | ||
This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started | ||
Also add `typescript` to `devDependencies` to denote version that the package was built with. | ||
## 2.1.0 | ||
@@ -4,0 +12,0 @@ |
{ | ||
"name": "@atlaskit/chunkinator", | ||
"version": "2.0.3", | ||
"version": "2.1.1", | ||
"sideEffects": false | ||
} |
export { chunkinator } from './chunkinator'; | ||
export { Options, Chunk, ChunkinatorFile } from './domain'; | ||
export type { Options, Chunk, ChunkinatorFile } from './domain'; |
{ | ||
"name": "@atlaskit/chunkinator", | ||
"version": "2.0.3", | ||
"version": "2.1.1", | ||
"sideEffects": false | ||
} |
export { chunkinator } from './chunkinator'; | ||
export { Options, Chunk, ChunkinatorFile } from './domain'; | ||
export type { Options, Chunk, ChunkinatorFile } from './domain'; |
{ | ||
"name": "@atlaskit/chunkinator", | ||
"version": "2.0.3", | ||
"version": "2.1.1", | ||
"sideEffects": false | ||
} |
{ | ||
"name": "@atlaskit/chunkinator", | ||
"version": "2.1.0", | ||
"version": "2.1.1", | ||
"description": "Upload large files from the browser with ease", | ||
@@ -14,3 +14,3 @@ "publishConfig": { | ||
"module:es2019": "dist/es2019/index.js", | ||
"types": "dist/cjs/index.d.ts", | ||
"types": "dist/types/index.d.ts", | ||
"sideEffects": false, | ||
@@ -42,4 +42,5 @@ "atlaskit:src": "src/index.ts", | ||
"rxjs": "^5.5.0", | ||
"styled-components": "^3.2.6" | ||
"styled-components": "^3.2.6", | ||
"typescript": "3.9.6" | ||
} | ||
} |
58326
8