-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(utils/sui-component-dependencies): move component-dependencies
- Loading branch information
1 parent
868badc
commit 362a76c
Showing
4 changed files
with
114 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
# CHANGELOG | ||
|
||
# 1.8.0 (2024-08-21) | ||
|
||
|
||
|
||
# 1.7.0 (2021-05-27) | ||
|
||
|
||
### Features | ||
|
||
* **packages/sui-component-dependencies:** Remove Rosetta from s-ui/component-dependencies ([7fbd945](https://github.com/SUI-Components/sui/commit/7fbd945d9d772395562bcd5aa9d7f1ade9e10562)) | ||
|
||
|
||
|
||
# 1.6.0 (2020-03-05) | ||
|
||
|
||
### Features | ||
|
||
* **sui-component-dependencies:** add @s-ui/theme pkg to be imported ([4b62e7b](https://github.com/SUI-Components/sui/commit/4b62e7b718e076b0be849be3e4651853be98873c)) | ||
|
||
|
||
|
||
# 1.5.0 (2019-02-21) | ||
|
||
|
||
### Features | ||
|
||
* **sui-component-dependencies:** add hoist-non-react-statics dependencie ([c8eca80](https://github.com/SUI-Components/sui/commit/c8eca808c494befac9263dbe0f7e5f6146a65ace)) | ||
* **sui-component-dependencies:** remove hoist-non-react-statics dep ([c5f4abc](https://github.com/SUI-Components/sui/commit/c5f4abce9817d9a8564d4a75bb5436bc16258b6b)) | ||
|
||
|
||
|
||
# 1.5.0 (2017-10-05) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* **sui-component-dependencies:** add theme-basic back fro compatibility ([a940d09](https://github.com/SUI-Components/sui/commit/a940d0918b54fef7c72ab730e4fc448efa7ffc2c)) | ||
|
||
|
||
|
||
# 1.4.0 (2017-10-04) | ||
|
||
|
||
### Features | ||
|
||
* **sui-component-dependencies:** update sui-theme dep ([5901653](https://github.com/SUI-Components/sui/commit/5901653abbcea4642513dc93c1464ba150726a76)) | ||
|
||
|
||
|
||
# 1.3.0 (2017-09-21) | ||
|
||
|
||
### Features | ||
|
||
* **sui-component-dependencies:** move package from [@schibstedspain](https://github.com/schibstedspain) scope to [@s-ui](https://github.com/s-ui) org ([aa15cd1](https://github.com/SUI-Components/sui/commit/aa15cd1bacb678ef93fce40cfb30e9cf34d51617)) | ||
|
||
|
||
|
||
# 1.2.0 (2017-06-22) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* **sui-component-dependencies:** make package public ([08b503b](https://github.com/SUI-Components/sui/commit/08b503b51b8eb34652e3971887ca1388cd1f3d06)) | ||
|
||
|
||
|
||
# 1.1.0 (2017-06-22) | ||
|
||
|
||
### Features | ||
|
||
* **sui-component-dependencies:** first release 1.0 ([54e5ff6](https://github.com/SUI-Components/sui/commit/54e5ff670aaa8825590964f019ba41a20a97fed2)) | ||
* **sui-component-dependencies:** migrate from @schibstedspain/suistudio-fatigue-deps ([b0474f8](https://github.com/SUI-Components/sui/commit/b0474f8c6eca7a5948988d4756045d10fda1cc20)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# sui-common-dependencies | ||
> A set of dependencies of all SUI components. | ||
It provides: | ||
* Unified dependencies versions accross components | ||
* Minified boilerplate | ||
|
||
## Installation | ||
|
||
```sh | ||
$ npm install @s-ui/component-dependencies --save-dev | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "@s-ui/component-dependencies", | ||
"version": "1.8.0", | ||
"description": "A set of dependencies of all SUI components.", | ||
"keywords": [ | ||
"fatigue", | ||
"bundle" | ||
], | ||
"author": "", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@s-ui/theme": "8", | ||
"classnames": "2.5.1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/SUI-Components/sui.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/SUI-Components/sui/issues" | ||
}, | ||
"homepage": "https://github.com/SUI-Components/sui/tree/master/packages/sui-component-dependencies#readme" | ||
} |