Skip to content

Commit 0db2bc0

Browse files
Prep for transfer
1 parent 4a50bb3 commit 0db2bc0

File tree

4 files changed

+22
-21
lines changed

4 files changed

+22
-21
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# DOMiNATIVE-Solid
1+
# NativeScript SolidJS
22

33
### **Custom render and patches for SolidJS to work with [DOMiNATIVE](https://github.com/SudoMaker/DOMiNATIVE) on [NativeScript](https://nativescript.org/)**
44

@@ -11,18 +11,18 @@
1111
Via npm:
1212

1313
```shell
14-
npm install @dominative/solid dominative undom-ng solid-js
14+
npm install @nativescript-commuinty/solid-js dominative undom-ng solid-js
1515
```
1616

17-
**Note:** `dominative`, `undom-ng`, `solid-js` are peer dependencies, you have to install them manually.
17+
**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-commuinty/solid-js`
1818

1919
---
2020

2121
## Usage
2222

2323
```jsx
2424
import { Application } from "@nativescript/core"
25-
import { render } from "@dominative/solid"
25+
import { render } from "@nativescript-commuinty/solid-js"
2626
import { createSignal } from "solid-js"
2727

2828
const App = () => {

nativescript.webpack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const solid = (config, env) => {
4343
[
4444
'babel-preset-solid',
4545
{
46-
moduleName: '@dominative/solid',
46+
moduleName: '@nativescript-community/solid',
4747
generate: 'universal',
4848
},
4949
],

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "@dominative/solid",
2+
"name": "@nativescript-community/solid-js",
33
"version": "0.0.4-alpha.1",
4-
"description": "Custom render and patches for SolidJS to work with DOMiNATIVE",
4+
"description": "SolidJS to work with NativeScript",
55
"main": "src/index.js",
66
"scripts": {},
77
"keywords": [
@@ -10,16 +10,17 @@
1010
"DOMiNATIVE",
1111
"Solid",
1212
"SolidJS",
13-
"NativeScript"
13+
"NativeScript",
14+
"native"
1415
],
1516
"author": "Yukino Song",
1617
"license": "MIT",
17-
"repository": "SudoMaker/DOMiNATIVE-Solid",
18-
"bugs": "https://github.com/SudoMaker/DOMiNATIVE-Solid/issues",
19-
"homepage": "https://github.com/SudoMaker/DOMiNATIVE-Solid",
18+
"repository": "nativescript-community/solid-js",
19+
"bugs": "https://github.com/nativescript-community/solid-js/issues",
20+
"homepage": "https://github.com/nativescript-community/solid-js",
2021
"peerDependencies": {
2122
"dominative": "^0.0.7-alpha.2",
22-
"solid-js": "^1.5.7"
23+
"solid-js": "^1.6.6"
2324
},
2425
"publishConfig": {
2526
"access": "public"

0 commit comments

Comments
 (0)