Skip to content

Commit cd4751c

Browse files
authored
Merge pull request #8 from EnhancedJax/develop
Develop
2 parents 6052dd8 + f49c5e3 commit cd4751c

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# 🪟 react-browser-containers
1+
# 🪟 react-browser-components
22

3-
Customizable browser-like containers, with tabs functionality (React).
3+
React component for browser-windows like containers, with tabs functionality.
44

55
```bash
6-
npm i @enhanced-jax/react-browser-containers
6+
npm i @enhanced-jax/react-browser-components
77
```
88

9-
![npm](https://img.shields.io/npm/v/@enhanced-jax/react-browser-containers)
10-
![GitHub license](https://img.shields.io/github/license/EnhancedJax/react-browser-containers)
11-
![npm bundle size](https://img.shields.io/bundlephobia/min/@enhanced-jax/react-browser-containers)
9+
![npm](https://img.shields.io/npm/v/@enhanced-jax/react-browser-components)
10+
![GitHub license](https://img.shields.io/github/license/EnhancedJax/react-browser-components)
11+
![npm bundle size](https://img.shields.io/bundlephobia/min/@enhanced-jax/react-browser-components)
1212

1313
| ![](./images/chrome.png) ChromeBrowser | ![](./images/arc.png) ArcBrowser |
1414
| :------------------------------------: | :------------------------------: |
@@ -22,7 +22,7 @@ You can use the components to demonstrate functionality with browsers, or as dec
2222
import {
2323
ChromeBrowser,
2424
ArcBrowser,
25-
} from "@enhanced-jax/react-browser-containers";
25+
} from "@enhanced-jax/react-browser-components";
2626
import { useState } from "react";
2727

2828
const App = () => {
@@ -88,8 +88,8 @@ export default interface Theme {
8888
To get started:
8989

9090
```bash
91-
git clone https://github.com/EnhancedJax/react-browser-containers.git
92-
cd react-browser-containers
91+
git clone https://github.com/EnhancedJax/react-browser-components.git
92+
cd react-browser-components
9393
npm i
9494
```
9595

@@ -108,5 +108,5 @@ npm run build
108108
npm link
109109
npm link "../your-project/node_modules/react"
110110
cd ../your-project
111-
npm link @enhanced-jax/react-browser-containers
111+
npm link @enhanced-jax/react-browser-components
112112
```

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@enhanced-jax/react-browser-containers",
2+
"name": "react-browser-components",
33
"version": "1.0.6",
44
"description": "",
55
"scripts": {
@@ -21,15 +21,15 @@
2121
],
2222
"repository": {
2323
"type": "git",
24-
"url": "git+https://github.com/EnhancedJax/react-browser-containers.git"
24+
"url": "git+https://github.com/EnhancedJax/react-browser-components.git"
2525
},
2626
"keywords": [],
2727
"author": "",
2828
"license": "ISC",
2929
"bugs": {
30-
"url": "https://github.com/EnhancedJax/react-browser-containers/issues"
30+
"url": "https://github.com/EnhancedJax/react-browser-components/issues"
3131
},
32-
"homepage": "https://react-browser-containers.jaxtam.dev/",
32+
"homepage": "https://react-browser-components.jaxtam.dev/",
3333
"devDependencies": {
3434
"@chromatic-com/storybook": "^1.6.1",
3535
"@storybook/addon-essentials": "^8.1.11",

vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default defineConfig({
1313
build: {
1414
lib: {
1515
entry: "./src/index.ts",
16-
name: "react-browser-containers",
16+
name: "react-browser-components",
1717
fileName: (format) => `index.${format}.js`,
1818
formats: ["cjs", "es"],
1919
},

0 commit comments

Comments
 (0)