🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@tmonier/create-effract

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tmonier/create-effract - npm Package Compare versions

Comparing version
0.7.0
to
0.8.0
+1
-1
dist/init.mjs

@@ -70,3 +70,3 @@ import * as fs from "node:fs";

make: Effect.sync(() => {
const count = atom(0);
const count = atom('count', 0);
return { count, inc: () => count.update((n) => n + 1) };

@@ -73,0 +73,0 @@ }),

{
"name": "@tmonier/create-effract",
"version": "0.7.0",
"version": "0.8.0",
"description": "Scaffold effract into a Vite / Next / TanStack Start app — idempotent, non-interactive, and it teaches your coding agent.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -90,3 +90,3 @@ /**

make: Effect.sync(() => {
const count = atom(0);
const count = atom('count', 0);
return { count, inc: () => count.update((n) => n + 1) };

@@ -93,0 +93,0 @@ }),