newo 1.5.1 → 1.6.0
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 +30 -0
- package/README.md +788 -125
- package/dist/cli.js +66 -22
- package/dist/customerAsync.d.ts +8 -0
- package/dist/customerAsync.js +28 -0
- package/package.json +3 -2
- package/src/cli.ts +66 -23
- package/src/customerAsync.ts +35 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,36 @@ 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
|
+
## [1.5.2] - 2025-01-15
|
|
9
|
+
|
|
10
|
+
### Enhanced
|
|
11
|
+
- **Documentation Overhaul**: Complete README restructuring with professional presentation
|
|
12
|
+
- Added npm, license, TypeScript, and Node.js badges for credibility
|
|
13
|
+
- Enhanced project description highlighting multi-customer support capabilities
|
|
14
|
+
- Visual feature bullets with emojis for improved readability and engagement
|
|
15
|
+
- **Multi-Customer Documentation**: Comprehensive guide for multi-customer workflows
|
|
16
|
+
- Three flexible configuration methods: JSON arrays, individual env vars, mixed approaches
|
|
17
|
+
- Clear migration path from single to multi-customer setup
|
|
18
|
+
- Command examples for multi-customer operations (`--customer` flag usage)
|
|
19
|
+
- **Professional Documentation Structure**:
|
|
20
|
+
- Table format for command reference with improved readability
|
|
21
|
+
- Visual folder tree showing accurate `newo_customers/` structure
|
|
22
|
+
- Enhanced CI/CD integration examples for both single and multi-customer scenarios
|
|
23
|
+
- Contributing guidelines, API reference, and support channels
|
|
24
|
+
- **Corrected File Organization**: Updated folder structure documentation to match actual implementation
|
|
25
|
+
- Fixed root folder from `projects/` to `newo_customers/`
|
|
26
|
+
- Accurate customer folder hierarchy: `newo_customers/{customerIdn}/projects/{projectIdn}/`
|
|
27
|
+
- Customer-specific state management in `.newo/{customerIdn}/`
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
- **Folder Structure Documentation**: Corrected project structure examples to match actual code implementation
|
|
31
|
+
- **Package Description**: Updated npm package description to reflect multi-customer capabilities
|
|
32
|
+
|
|
33
|
+
### Developer Experience
|
|
34
|
+
- **GitHub/npm Ready**: Professional presentation suitable for public package repository
|
|
35
|
+
- **Clear Navigation**: Improved documentation structure with proper sectioning and examples
|
|
36
|
+
- **Enhanced Onboarding**: Comprehensive quick-start guide and configuration examples
|
|
37
|
+
|
|
8
38
|
## [1.5.1] - 2025-01-14
|
|
9
39
|
|
|
10
40
|
### Added
|