Skip to content

Commit

Permalink
chore(release): 1.0.8 [skip ci]
Browse files Browse the repository at this point in the history
## [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
semantic-release-bot committed Mar 10, 2023
1 parent 1dee52f commit 576b05e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
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))
3 changes: 1 addition & 2 deletions lib/cjs/index.d.ts
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 };
2 changes: 1 addition & 1 deletion lib/cjs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ exports.theme = exports.SayHello = void 0;
// components
var example_1 = __importDefault(require("./components/example"));
exports.SayHello = example_1.default;
// theme
// other
var theme_1 = __importDefault(require("./theme"));
exports.theme = theme_1.default;
2 changes: 1 addition & 1 deletion lib/esm/components/example.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This is an example component to demonstrate.
// TODO: delete this.
import React from "react";
import React from 'react';
var SayHello = function (_a) {
var name = _a.name;
return (React.createElement("div", null,
Expand Down
3 changes: 1 addition & 2 deletions lib/esm/index.d.ts
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 };
6 changes: 3 additions & 3 deletions lib/esm/index.js
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 };

0 comments on commit 576b05e

Please sign in to comment.