@t1ep1l0t/create-fsd 2.0.1 → 2.0.2

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.
Files changed (2) hide show
  1. package/bin/cli.js +1 -1
  2. package/package.json +2 -2
package/bin/cli.js CHANGED
@@ -16,7 +16,7 @@ const program = new Command();
16
16
  program
17
17
  .name('create-fsd')
18
18
  .description('CLI to create React projects with FSD architecture')
19
- .version('2.0.0')
19
+ .version('2.0.2')
20
20
  .argument('<project-name>', 'name of the project')
21
21
  .option('-t, --template <template>', 'template to use', 'react')
22
22
  .action(async (projectName, options) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@t1ep1l0t/create-fsd",
3
- "version": "2.0.1",
4
- "description": "CLI tool to create React projects with FSD architecture",
3
+ "version": "2.0.2",
4
+ "description": "CLI for Feature-Sliced Design architecture. Create production-ready projects from framework templates and generate FSD structures with single commands.",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "create-fsd": "./bin/cli.js"