create-ng-tailwind 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.
- package/CHANGELOG.md +20 -0
- package/lib/templates/starter/index.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.0.2] - 2025-10-24
|
|
9
|
+
|
|
10
|
+
### 📝 Documentation
|
|
11
|
+
|
|
12
|
+
- **CHANGELOG**: Added v2.0.1 and v2.0.2 entries to published package
|
|
13
|
+
- **PUBLISHING.md**: Updated version references and simplified guidance
|
|
14
|
+
|
|
15
|
+
## [2.0.1] - 2025-10-24
|
|
16
|
+
|
|
17
|
+
### 📝 Documentation Improvements
|
|
18
|
+
|
|
19
|
+
- **README Enhancements**: Removed "Related Projects" section, consolidated duplicate support sections, improved project structure documentation
|
|
20
|
+
- **Terminal Output**: Simplified CLI output to be minimal and professional with green checkmarks and white text
|
|
21
|
+
- **Accuracy Fixes**: Corrected pipe count from 4 to 2 (Truncate, TimeAgo) in all documentation and translations
|
|
22
|
+
- **Better Organization**: Enhanced "Starter Template Features" section with detailed breakdown of core services, UI components, and utilities
|
|
23
|
+
|
|
8
24
|
## [2.0.0] - 2025-01-20
|
|
9
25
|
|
|
10
26
|
**Major Release with Breaking Changes** - This release includes significant updates to the CLI architecture, template system, and development workflow. Review the breaking changes and migration guide below before upgrading.
|
|
@@ -177,16 +193,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
177
193
|
#### Breaking Changes Impact:
|
|
178
194
|
|
|
179
195
|
1. **CSS-Only Approach**:
|
|
196
|
+
|
|
180
197
|
- **Before (v1.x)**: `--style` flag supported css, scss, sass, less
|
|
181
198
|
- **After (v2.0)**: Only CSS is supported (--style flag removed)
|
|
182
199
|
- **Migration**: If you need SCSS, continue using v1.x or migrate to modern CSS
|
|
183
200
|
|
|
184
201
|
2. **Template Names**:
|
|
202
|
+
|
|
185
203
|
- **Before (v1.x)**: `--template=none`
|
|
186
204
|
- **After (v2.0)**: `--template=minimal`
|
|
187
205
|
- **Migration**: Update scripts to use `minimal` instead of `none`
|
|
188
206
|
|
|
189
207
|
3. **Interactive Mode**:
|
|
208
|
+
|
|
190
209
|
- **Before (v1.x)**: Non-interactive by default, `--interactive` flag to enable
|
|
191
210
|
- **After (v2.0)**: Interactive by default, provide all flags to skip prompts
|
|
192
211
|
- **Migration**: Add all required flags to CI/CD scripts for non-interactive mode
|
|
@@ -197,6 +216,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
197
216
|
- **Migration**: Contact via email for support (tehseen_ullah786@hotmail.com)
|
|
198
217
|
|
|
199
218
|
#### Recommended Update Command:
|
|
219
|
+
|
|
200
220
|
```bash
|
|
201
221
|
# Update to v2.0.0
|
|
202
222
|
npx create-ng-tailwind@latest my-app --template=minimal
|
|
@@ -97,10 +97,10 @@ const starter = {
|
|
|
97
97
|
await this.setupLinting(config);
|
|
98
98
|
await this.setupPWA(config);
|
|
99
99
|
await this.formatCode(config);
|
|
100
|
-
|
|
100
|
+
|
|
101
101
|
// Stop spinner and show summary
|
|
102
102
|
if (spinner) spinner.stop();
|
|
103
|
-
|
|
103
|
+
|
|
104
104
|
// Show minimal, professional summary
|
|
105
105
|
console.log('');
|
|
106
106
|
completeStep('Angular 20+ project created');
|
package/package.json
CHANGED