Skip to content

Commit

Permalink
refactor/core structure and xstate separation (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pmejna authored Nov 6, 2024
1 parent 12c1c6b commit c9f6924
Show file tree
Hide file tree
Showing 31 changed files with 508 additions and 497 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,10 @@ When those changes will be pushed to the repository and merged to the `main` bra
│ ├── cli # Main CLI package
│ └── core # Core package with installation logic
│ ├── CHANGELOG.md
│ ├── installMachine # State machine, based on xState v5 for the installation process
│ │ └── installSteps # Individual installation steps
│ ├── templates # Templates for the scaffolded project
│ └── utils # Core functions
│ └── utils # Utility functions
├── pnpm-lock.yaml
├── pnpm-workspace.yaml
├── tsconfig.json
Expand Down
3 changes: 2 additions & 1 deletion packages/cli/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"strict": true,
"esModuleInterop": true,
"outDir": "./dist",
"rootDir": "."
"rootDir": ".",
"composite": true
},
"include": ["./**/*.ts"],
"exclude": ["node_modules", "dist"]
Expand Down
Loading

0 comments on commit c9f6924

Please sign in to comment.