@shopify/react-compose
Advanced tools
Comparing version 0.1.12 to 1.0.0-sknext-beta.1
@@ -5,10 +5,15 @@ # Changelog | ||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). | ||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) | ||
and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). | ||
<!-- Unreleased changes should go to UNRELEASED.md --> | ||
<!-- ## [Unreleased] --> | ||
--- | ||
## [1.0.0] - 2019-04-23 | ||
## 0.1.10 - 2019-01-09 | ||
### Fixed | ||
- The type signature of the component returned by `compose` now correctly strips the composed props in TypeScript 3.2+ ([#602](https://github.com/Shopify/quilt/pull/602)) | ||
## [0.1.10] - 2019-01-09 | ||
- Start of Changelog |
{ | ||
"name": "@shopify/react-compose", | ||
"version": "0.1.12", | ||
"version": "1.0.0-sknext-beta.1", | ||
"license": "MIT", | ||
"description": "Cleanly compose multiple component enhancers together with minimal fuss", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"main": "index.js", | ||
"types": "index.d.ts", | ||
"scripts": { | ||
"build": "tsc --p tsconfig.build.json", | ||
"prepublishOnly": "yarn run build" | ||
"build": "tsc --p tsconfig.json" | ||
}, | ||
@@ -19,9 +18,11 @@ "publishConfig": { | ||
"type": "git", | ||
"url": "git+https://github.com/Shopify/quilt.git" | ||
"url": "git+https://github.com/Shopify/quilt.git", | ||
"directory": "packages/react-compose" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/shopify/quilt/issues" | ||
"url": "https://github.com/Shopify/quilt/issues" | ||
}, | ||
"homepage": "https://github.com/Shopify/quilt/blob/master/packages/react-compose-enhancers/README.md", | ||
"homepage": "https://github.com/Shopify/quilt/blob/master/packages/react-compose/README.md", | ||
"dependencies": { | ||
"@shopify/useful-types": "1.0.0-sknext-beta.1", | ||
"hoist-non-react-statics": "^3.0.1", | ||
@@ -33,7 +34,21 @@ "tslib": "^1.9.3" | ||
}, | ||
"devDependencies": { | ||
"@types/enzyme": "^3.1.10", | ||
"typescript": "~3.1.6" | ||
}, | ||
"sideEffects": false | ||
"sideEffects": false, | ||
"files": [ | ||
"build/*", | ||
"!tsconfig.tsbuildinfo", | ||
"index.js", | ||
"index.mjs", | ||
"index.esnext", | ||
"index.d.ts" | ||
], | ||
"module": "index.mjs", | ||
"esnext": "index.esnext", | ||
"exports": { | ||
"./": "./", | ||
".": { | ||
"import": "./index.mjs", | ||
"require": "./index.js", | ||
"esnext": "./index.esnext" | ||
} | ||
} | ||
} |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
15334
0
14
1
4
85
1
+ Added@shopify/useful-types@1.0.0-sknext-beta.1(transitive)