Skip to content

Commit

Permalink
v4.0.10 - Typing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AlemTuzlak committed Mar 20, 2024
1 parent e2a0099 commit c7810ea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 21 deletions.
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 2 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "remix-development-tools",
"description": "Remix development tools - a set of tools for developing/debugging Remix.run apps",
"author": "Alem Tuzlak",
"version": "4.0.9",
"version": "4.0.10",
"license": "MIT",
"keywords": [
"remix",
Expand All @@ -21,44 +21,30 @@
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"types": "./dist/index.d.ts",
"node": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./client": {
"import": {
"types": "./dist/client.d.ts",
"default": "./dist/client.js"
},
"require": {
"types": "./dist/client.d.cts",
"default": "./dist/client.cjs"
},
"types": "./dist/client.d.ts",
"node": "./dist/client.cjs",
"default": "./dist/client.js"
},
"./server": {
"import": {
"types": "./dist/server.d.ts",
"default": "./dist/server.js"
},
"require": {
"types": "./dist/server.d.cts",
"default": "./dist/server.cjs"
},
"types": "./dist/server.d.ts",
"node": "./dist/server.cjs",
"default": "./dist/server.js"
},
"./client.css": {
Expand Down

0 comments on commit c7810ea

Please sign in to comment.