Julio Barros
Julio Barros
Explore posts from servers
DTDrizzle Team
Created by Julio Barros on 11/3/2023 in #help
migrate with node-postgres
Thanks. That is a better way in general. Unfortunately, it still just hangs for me.
10 replies
SSolidJS
Created by Julio Barros on 11/2/2023 in #support
Running a script in a solid start project
Thanks. I have esModuleInterop set to true and have tried the --esm flag and have tried removing the "type" : module setting but none of that works.
{
"name": "PM2K",
"scripts": {
"dev": "solid-start dev",
"build": "solid-start build",
"start": "solid-start start"
},
"type": "module",
"devDependencies": {
"@types/node": "^20.8.7",
"@types/pg": "^8.10.7",
"drizzle-kit": "^0.19.13",
"esbuild": "^0.19.5",
"postcss": "^8.4.28",
"solid-start-node": "^0.3.7",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite": "^4.4.9"
},
"dependencies": {
"@modular-forms/solid": "^0.20.0",
"@solidjs/meta": "^0.28.6",
"@solidjs/router": "^0.8.3",
"drizzle-orm": "^0.28.6",
"pg": "^8.11.3",
"solid-bootstrap": "^1.0.18",
"solid-js": "^1.8.1",
"solid-start": "^0.3.7",
"valibot": "^0.19.0"
},
"engines": {
"node": ">=18"
}
}
{
"name": "PM2K",
"scripts": {
"dev": "solid-start dev",
"build": "solid-start build",
"start": "solid-start start"
},
"type": "module",
"devDependencies": {
"@types/node": "^20.8.7",
"@types/pg": "^8.10.7",
"drizzle-kit": "^0.19.13",
"esbuild": "^0.19.5",
"postcss": "^8.4.28",
"solid-start-node": "^0.3.7",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite": "^4.4.9"
},
"dependencies": {
"@modular-forms/solid": "^0.20.0",
"@solidjs/meta": "^0.28.6",
"@solidjs/router": "^0.8.3",
"drizzle-orm": "^0.28.6",
"pg": "^8.11.3",
"solid-bootstrap": "^1.0.18",
"solid-js": "^1.8.1",
"solid-start": "^0.3.7",
"valibot": "^0.19.0"
},
"engines": {
"node": ">=18"
}
}
5 replies
SSolidJS
Created by Julio Barros on 10/2/2023 in #support
Using signal in child component
Thanks for your help.
10 replies
SSolidJS
Created by Julio Barros on 10/2/2023 in #support
Using signal in child component
Nevermind. I think I figured it out.
10 replies
SSolidJS
Created by Julio Barros on 10/2/2023 in #support
Using signal in child component
And I create the modal like this <NewProjectForm show={show} setShow={setShow} />
10 replies
SSolidJS
Created by Julio Barros on 10/2/2023 in #support
Using signal in child component
<Modal show={props.show()} onHide={() => { console.log("In onHide"); props.setShow(false); }} size="lg" aria-labelledby="contained-modal-title-vcenter" centered >
10 replies
SSolidJS
Created by Julio Barros on 10/2/2023 in #support
Using signal in child component
Sorry I cut and pasted the wrong thing. My modal actually has the code below. I see the console.log but the modal stays up. It should close when 'show' is set to false.
10 replies