-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [1.0.8](v1.0.7...v1.0.8) (2023-03-10) ### Bug Fixes * code format ([1dee52f](1dee52f)) * lint checking ([88fa26d](88fa26d))
- Loading branch information
1 parent
1dee52f
commit 576b05e
Showing
6 changed files
with
14 additions
and
9 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## [1.0.8](https://github.com/ocadotechnology/codeforlife-package-javascript/compare/v1.0.7...v1.0.8) (2023-03-10) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* code format ([1dee52f](https://github.com/ocadotechnology/codeforlife-package-javascript/commit/1dee52f5158ae5393912caa7a89903982670474f)) | ||
* lint checking ([88fa26d](https://github.com/ocadotechnology/codeforlife-package-javascript/commit/88fa26ddaee51bf0ef8c0f47e8b70443142aec40)) |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
import SayHello from './components/example'; | ||
export { SayHello }; | ||
import theme from './theme'; | ||
export { theme }; | ||
export { SayHello, theme }; |
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
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
import SayHello from './components/example'; | ||
export { SayHello }; | ||
import theme from './theme'; | ||
export { theme }; | ||
export { SayHello, theme }; |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// components | ||
import SayHello from './components/example'; | ||
export { SayHello }; | ||
// theme | ||
// other | ||
import theme from './theme'; | ||
export { theme }; | ||
// exports | ||
export { SayHello, theme }; |