create-alistt69-kit 0.3.3 → 0.3.5

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/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
 
12
12
  [![npm version](https://img.shields.io/npm/v/create-alistt69-kit.svg)](https://www.npmjs.com/package/create-alistt69-kit)
13
13
  [![Node.js Version](https://img.shields.io/badge/node-%3E%3D18.18-brightgreen)](https://nodejs.org/)
14
- [![npm downloads](https://img.shields.io/npm/dw/create-alistt69-kit.svg)](https://www.npmjs.com/package/create-alistt69-kit)
14
+ [![npm downloads](https://img.shields.io/npm/dm/create-alistt69-kit.svg)](https://www.npmjs.com/package/create-alistt69-kit)
15
15
  [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
16
16
  [![CI](https://github.com/alistt69/create-alistt69-kit/actions/workflows/ci.yml/badge.svg)](https://github.com/alistt69/create-alistt69-kit/actions/workflows/ci.yml)
17
17
  </td>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-alistt69-kit",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "description": "Opinionated React + TypeScript + Webpack project generator by alistt69",
5
5
  "keywords": [
6
6
  "create",
@@ -137,6 +137,7 @@ function formatProjectStructure(selectedFeatureIds) {
137
137
  '- `src/` — application source code',
138
138
  '- `src/app/` — app bootstrap, providers, entry-level setup',
139
139
  '- `src/styles/` — global styles and shared styling layer',
140
+ '- `src/widgets/` — app widgets',
140
141
  '- `config/build/` — split webpack configuration',
141
142
  ];
142
143
 
@@ -1,6 +1,6 @@
1
1
  import { access, mkdir, readFile, writeFile } from 'node:fs/promises';
2
2
  import path from 'node:path';
3
-
3
+ // todo: eslint ignore
4
4
  const ROUTER_TYPES_PATH = path.join(
5
5
  'src',
6
6
  'app',
@@ -2,7 +2,7 @@ import { ComponentType, ReactNode } from 'react';
2
2
  import { createBrowserRouter, createRoutesFromElements, Route } from 'react-router-dom';
3
3
  import { ERoutePath } from '../../types';
4
4
  import { Error } from '../../../../../pages/error';
5
- import { Main } from '../../../../../pages/main';
5
+ import { Main } from '../../../../../pages/main'; // todo: @
6
6
  /* @route-imports */
7
7
  import AppLayout from '../../ui/app';
8
8