Skip to content
This repository was archived by the owner on Jun 2, 2024. It is now read-only.

Commit 312ec3f

Browse files
committed
chore: bump v0.6.1
* Update dead links in readme
1 parent 7a52537 commit 312ec3f

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@
3939

4040
## Key features
4141
* __Growing list of semantic helper components__
42-
* __[List](https://csvenke.github.io/react-semantics/#/List)__ - Render content from an array of data.
43-
* __[Resolve](https://csvenke.github.io/react-semantics/#/Resolve)__ - Render content asynchronously.
44-
* __[Show](https://csvenke.github.io/react-semantics/#/Show)__ - Render content when a condition is true.
45-
* __[Switch](https://csvenke.github.io/react-semantics/#/Switch)__ - Render content from case that matches specified expression.
46-
* __[Switch.Case](https://csvenke.github.io/react-semantics/#/SwitchCase)__
47-
* __[Switch.Default](https://csvenke.github.io/react-semantics/#/SwitchDefault)__
42+
* __[List](https://csvenke.github.io/react-semantic-render/#/List)__ - Render content from an array of data.
43+
* __[Resolve](https://csvenke.github.io/react-semantic-render/#/Resolve)__ - Render content asynchronously.
44+
* __[Show](https://csvenke.github.io/react-semantic-render/#/Show)__ - Render content when a condition is true.
45+
* __[Switch](https://csvenke.github.io/react-semantic-render/#/Switch)__ - Render content from case that matches specified expression.
46+
* __[Switch.Case](https://csvenke.github.io/react-semantic-render/#/SwitchCase)__
47+
* __[Switch.Default](https://csvenke.github.io/react-semantic-render/#/SwitchDefault)__
4848
* __Small bundle size__
4949
* __Blazing fast__
5050
* __TypeScript type definitions__
@@ -115,11 +115,11 @@ const Menu = ({ showMenuItems }) => (
115115

116116
The purpose of this library is to develop and maintain semantic helper components that removes the need for inline arrow functions in react components.
117117

118-
Do you have an idea about a component you think belong here? [Tell us here!](https://github.com/csvenke/react-semantics/issues/new)
118+
Do you have an idea about a component you think belong here? [Tell us here!](https://github.com/csvenke/react-semantic-render/issues/new)
119119

120120
## Documentation
121121

122-
For full list of components and how they are used, go to our [documentation](https://csvenke.github.io/react-semantics/).
122+
For full list of components and how they are used, go to our [documentation](https://csvenke.github.io/react-semantic-render/).
123123

124124
## Development
125125

@@ -160,4 +160,4 @@ Don't worry about making a mistake, `commitlint` will stop you if you do, and yo
160160

161161
## License
162162

163-
This project is licensed under the MIT License - see [LICENSE](https://github.com/csvenke/react-semantics/blob/master/LICENSE) file for details.
163+
This project is licensed under the MIT License - see [LICENSE](https://github.com/csvenke/react-semantic-render/blob/master/LICENSE) file for details.

docs/build/bundle.b4db1d47.js renamed to docs/build/bundle.ba02c8e7.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!DOCTYPE html><html><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title>react-semantic-render</title></head><body><div id="rsg-root"></div><script src="build/bundle.b4db1d47.js"></script></body></html>
1+
<!DOCTYPE html><html><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title>react-semantic-render</title></head><body><div id="rsg-root"></div><script src="build/bundle.ba02c8e7.js"></script></body></html>

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-semantic-render",
3-
"version": "0.6.0",
3+
"version": "0.6.1",
44
"description": "Blazing fast semantic helper components for rendering content with React.",
55
"author": "Christian Svenkerud",
66
"repository": {

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default [
2323
plugins: [uglify()],
2424
}),
2525
createConfig({
26-
output: { file: `lib/${pkg.module}`, format: 'es' },
26+
output: { file: `lib/${pkg.module}`, format: 'esm' },
2727
plugins: [terser()],
2828
}),
2929
];

0 commit comments

Comments
 (0)