Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/button deps #7

Merged
merged 2 commits into from
May 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions packages/button/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.2.0 (2020-05-20)

### Bug Fixes

- **button:** fix import filetype ([3c53d0a](https://github.com/Atlantis-Lab/ui/commit/3c53d0ade9d95f6a8ddbf5177a03bf0c1b0196b4))
- **types:** add @types/react ([dc0e9d2](https://github.com/Atlantis-Lab/ui/commit/dc0e9d221985ab2a8e17649b3a9c6ff0ad7d4946))

### Features

- **button:** init ([f7ce352](https://github.com/Atlantis-Lab/ui/commit/f7ce352d44372bf8efd27df54e8d4a927fa81a62)), closes [#2](https://github.com/Atlantis-Lab/ui/issues/2)

## 0.1.1 (2020-05-20)

### Bug Fixes
Expand Down
16 changes: 10 additions & 6 deletions packages/button/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@atlantis-lab/button",
"version": "0.1.1",
"repository": "git://github.com/Atlantis-Lab/ui.git",
"version": "0.2.0",
"license": "MIT",
"main": "dist/index.js",
"files": [
Expand All @@ -14,18 +15,21 @@
"prepack": "pubflow store",
"postpack": "pubflow restore"
},
"devDependencies": {
"dependencies": {
"@emotion/styled": "^10.0.0",
"@monstrs/publish-flow": "^0.1.3",
"@styled-system/should-forward-prop": "^5.1.0",
"@types/react": "^16.9.35",
"@types/styled-system": "^5.1.9",
"react": "^16.9.0",
"styled-system": "^5.1.0",
"styled-tools": "^1.7.0"
},
"devDependencies": {
"@monstrs/publish-flow": "^0.1.3",
"@types/react": "16.9.35",
"@types/styled-system": "^5.1.9"
},
"publishConfig": {
"access": "public"
"access": "public",
"registry": "https://npm.pkg.github.com/"
},
"gitHead": "cba86fc8ed668ebef3c7ce450a14e658801c7b3b"
}
10 changes: 10 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.1.0 (2020-05-20)

### Features

- **utils:** init ([1088003](https://github.com/Atlantis-Lab/ui/commit/108800370441f34e5b455a133ee3030f66a6ea1e))
6 changes: 4 additions & 2 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@atlantis-lab/utils",
"version": "0.0.0",
"repository": "git://github.com/Atlantis-Lab/ui.git",
"version": "0.1.0",
"license": "MIT",
"main": "dist/index.js",
"files": [
Expand All @@ -18,6 +19,7 @@
"react": "^16.9.0"
},
"publishConfig": {
"access": "public"
"access": "public",
"registry": "https://npm.pkg.github.com/"
}
}
Loading