Skip to content

Commit 4e7a9b4

Browse files
chore(release): 1.0.6 [skip ci]
## [1.0.6](v1.0.5...v1.0.6) (2023-03-10) ### Bug Fixes * exports ([4900db5](4900db5))
1 parent 4900db5 commit 4e7a9b4

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

lib/cjs/index.d.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
export {};
1+
import SayHello from './components/example';
2+
export { SayHello };
3+
import theme from './theme';
4+
export { theme };

lib/cjs/index.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,12 @@
11
"use strict";
2+
var __importDefault = (this && this.__importDefault) || function (mod) {
3+
return (mod && mod.__esModule) ? mod : { "default": mod };
4+
};
25
Object.defineProperty(exports, "__esModule", { value: true });
6+
exports.theme = exports.SayHello = void 0;
7+
// components
8+
var example_1 = __importDefault(require("./components/example"));
9+
exports.SayHello = example_1.default;
10+
// theme
11+
var theme_1 = __importDefault(require("./theme"));
12+
exports.theme = theme_1.default;

lib/esm/index.d.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
export {};
1+
import SayHello from './components/example';
2+
export { SayHello };
3+
import theme from './theme';
4+
export { theme };

lib/esm/index.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
export {};
1+
// components
2+
import SayHello from './components/example';
3+
export { SayHello };
4+
// theme
5+
import theme from './theme';
6+
export { theme };

0 commit comments

Comments
 (0)