From 4e7a9b4b59ddf850f3dae1e092447832e49c033a Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 10 Mar 2023 13:40:45 +0000 Subject: [PATCH] chore(release): 1.0.6 [skip ci] ## [1.0.6](https://github.com/ocadotechnology/codeforlife-package-javascript/compare/v1.0.5...v1.0.6) (2023-03-10) ### Bug Fixes * exports ([4900db5](https://github.com/ocadotechnology/codeforlife-package-javascript/commit/4900db537e79e1e3c6c4c967dded6a4eebba7d98)) --- lib/cjs/index.d.ts | 5 ++++- lib/cjs/index.js | 10 ++++++++++ lib/esm/index.d.ts | 5 ++++- lib/esm/index.js | 7 ++++++- 4 files changed, 24 insertions(+), 3 deletions(-) diff --git a/lib/cjs/index.d.ts b/lib/cjs/index.d.ts index cb0ff5c3..c82b35b3 100644 --- a/lib/cjs/index.d.ts +++ b/lib/cjs/index.d.ts @@ -1 +1,4 @@ -export {}; +import SayHello from './components/example'; +export { SayHello }; +import theme from './theme'; +export { theme }; diff --git a/lib/cjs/index.js b/lib/cjs/index.js index c8ad2e54..860209e0 100644 --- a/lib/cjs/index.js +++ b/lib/cjs/index.js @@ -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; diff --git a/lib/esm/index.d.ts b/lib/esm/index.d.ts index cb0ff5c3..c82b35b3 100644 --- a/lib/esm/index.d.ts +++ b/lib/esm/index.d.ts @@ -1 +1,4 @@ -export {}; +import SayHello from './components/example'; +export { SayHello }; +import theme from './theme'; +export { theme }; diff --git a/lib/esm/index.js b/lib/esm/index.js index cb0ff5c3..74c40d08 100644 --- a/lib/esm/index.js +++ b/lib/esm/index.js @@ -1 +1,6 @@ -export {}; +// components +import SayHello from './components/example'; +export { SayHello }; +// theme +import theme from './theme'; +export { theme };