Skip to content

Commit dfd9d1f

Browse files
Bump dependencies
1 parent 906bd75 commit dfd9d1f

File tree

3 files changed

+418
-317
lines changed

3 files changed

+418
-317
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
Via npm:
1212

1313
```shell
14-
npm install @nativescript-community/solid-js dominative undom-ng solid-js
14+
npm install @nativescript-community/solid-js dominative undom-ng solid-js @babel/preset-typescript babel-preset-solid
1515
```
1616

1717
**Note:** `dominative`, `undom-ng`, `solid-js` are peer dependencies, you have to install them manually. As the benefit for using peer dependencies, you'll be able to upgrade these dependencies directly from upstream, no need to wait for an update with `@nativescript-community/solid-js`
@@ -25,6 +25,8 @@ import { Application } from "@nativescript/core"
2525
import { render } from "@nativescript-community/solid-js"
2626
import { createSignal } from "solid-js"
2727

28+
document.body.actionBarHidden = false
29+
2830
const App = () => {
2931
const [count, setCount] = createSignal(0)
3032
const increment = () => {

0 commit comments

Comments
 (0)