@pyreon/cli 0.5.5 → 0.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/tests/doctor.test.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pyreon/cli",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.6",
|
|
4
4
|
"description": "CLI tools for Pyreon — doctor, generate, context",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"prepublishOnly": "bun run build"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@pyreon/compiler": "0.5.
|
|
45
|
+
"@pyreon/compiler": "0.5.6"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"typescript": ">=5.0.0"
|
package/src/tests/doctor.test.ts
CHANGED
|
@@ -208,7 +208,7 @@ export function App() {
|
|
|
208
208
|
const count = signal(0)
|
|
209
209
|
const doubled = computed(() => count() * 2)
|
|
210
210
|
effect(() => console.log(doubled()))
|
|
211
|
-
onMount(() => {
|
|
211
|
+
onMount(() => { console.log("mounted") })
|
|
212
212
|
return <div class="app">{count()}</div>
|
|
213
213
|
}
|
|
214
214
|
`
|