Skip to content

Commit 64bbbea

Browse files
committed
fix readme version bump
1 parent eea8421 commit 64bbbea

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ To install and utilize Remix Development Tools, follow these steps:
3232
1. Install the package via npm:
3333

3434
```bash
35-
npm install remix-devtools --save-dev
35+
npm install remix-development-tools --save-dev
3636
```
3737

3838
2. Add the following to your application `root.tsx` file:
3939

4040
```diff
41-
+ import rdtStylesheet from "remix-dev-tools/stylesheet.css";
42-
+ import { RemixDevTools } from "remix-dev-tools";
41+
+ import rdtStylesheet from "remix-development-tools/stylesheet.css";
42+
+ import { RemixDevTools } from "remix-development-tools";
4343

4444
+ export const links: LinksFunction = () => [
4545
+ ...(rdtStylesheet ? [{ rel: "stylesheet", href: rdtStylesheet }] : []),

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "remix-dev-tools",
2+
"name": "remix-development-tools",
33
"description": "Remix development tools.",
44
"author": "Alem Tuzlak",
5-
"version": "1.0.0",
5+
"version": "1.0.3",
66
"license": "MIT",
77
"keywords": [
88
"remix",
@@ -13,6 +13,7 @@
1313
"main": "./dist/index.umd.cjs",
1414
"module": "./dist/index.js",
1515
"exports": {
16+
"./stylesheet.css": "./dist/stylesheet.css",
1617
".": {
1718
"import": "./dist/index.js",
1819
"require": "./dist/index.umd.cjs"

0 commit comments

Comments
 (0)