-
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.6](v1.0.5...v1.0.6) (2023-03-10) ### Bug Fixes * exports ([4900db5](4900db5))
- Loading branch information
1 parent
4900db5
commit 4e7a9b4
Showing
4 changed files
with
24 additions
and
3 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 |
---|---|---|
@@ -1 +1,4 @@ | ||
export {}; | ||
import SayHello from './components/example'; | ||
export { SayHello }; | ||
import theme from './theme'; | ||
export { 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,2 +1,12 @@ | ||
"use strict"; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.theme = exports.SayHello = void 0; | ||
// components | ||
var example_1 = __importDefault(require("./components/example")); | ||
exports.SayHello = example_1.default; | ||
// theme | ||
var theme_1 = __importDefault(require("./theme")); | ||
exports.theme = theme_1.default; |
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 +1,4 @@ | ||
export {}; | ||
import SayHello from './components/example'; | ||
export { SayHello }; | ||
import theme from './theme'; | ||
export { 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 +1,6 @@ | ||
export {}; | ||
// components | ||
import SayHello from './components/example'; | ||
export { SayHello }; | ||
// theme | ||
import theme from './theme'; | ||
export { theme }; |