Skip to content

Commit

Permalink
v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Exelord committed Nov 9, 2023
1 parent e41b477 commit dc8a16b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

16 changes: 12 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "solid-proxies",
"version": "1.0.2",
"version": "1.0.3",
"description": "Solid.js library adding signaling to built-in non-primitives",
"info": "This package provides signaled versions of Javascript's built-in objects. Thanks to it, all theirs properties will be automatically tracked while using standard API. That means all operations like array's `push`, `slice` or direct index access `track['me']` will only trigger an update of specific values. The granular reactivity will make sure your effects will not rerun without a need.",
"homepage": "https://github.com/Exelord/solid-proxies",
Expand All @@ -11,9 +11,15 @@
"url": "https://exelord.com"
}
],
"keywords": ["solidhack", "best_ecosystem", "solidjs"],
"keywords": [
"solidhack",
"best_ecosystem",
"solidjs"
],
"license": "MIT",
"files": ["dist"],
"files": [
"dist"
],
"main": "./dist/solid-proxies.cjs",
"module": "./dist/solid-proxies.js",
"types": "./dist/types/index.d.ts",
Expand Down Expand Up @@ -51,7 +57,9 @@
"releaseName": "v${version}"
},
"hooks": {
"before:init": ["vitest run"]
"before:init": [
"vitest run"
]
}
},
"peerDependencies": {
Expand Down

0 comments on commit dc8a16b

Please sign in to comment.