Skip to content
This repository has been archived by the owner on Mar 15, 2023. It is now read-only.

Commit

Permalink
🐛 Fix peerDependencies range
Browse files Browse the repository at this point in the history
  • Loading branch information
amoutonbrady committed Apr 9, 2021
1 parent 4db59e4 commit 22fa5de
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@
"solid-js": "^0.25.1"
},
"peerDependencies": {
"solid-js": "^0.2"
"solid-js": "^0.25"
}
}
6 changes: 3 additions & 3 deletions playground/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createApp, createStore, createGlobalState, createGlobalSignal } from '..';
import { createApp, createStore, createGlobalState, createGlobalSignal } from 'solid-utils';

import { Router, Route } from 'solid-app-router';
import { Meta, MetaProvider, Title } from 'solid-meta';
Expand All @@ -17,7 +17,7 @@ const [Provider, useProvider] = createStore({

const Name = () => <h1>Watch me also change name here: {globalState.name}</h1>;

const Home = () => {
const Hoooome = () => {
const [state, actions] = useProvider();

return (
Expand Down Expand Up @@ -57,7 +57,7 @@ const App = () => (

const routes = [
{
component: Home,
component: Hoooome,
path: '/',
},
];
Expand Down
3 changes: 2 additions & 1 deletion playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"dependencies": {
"solid-app-router": "^0.0.37",
"solid-js": "^0.25.1",
"solid-meta": "^0.25.1"
"solid-meta": "^0.25.1",
"solid-utils": "link:.."
}
}
2 changes: 2 additions & 0 deletions playground/pnpm-lock.yaml

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

0 comments on commit 22fa5de

Please sign in to comment.