@barbozaa/archguard 1.0.0 → 1.0.1
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 +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,13 +31,13 @@ ArchGuard is an **Architecture Intelligence Platform** that helps engineering te
|
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
33
|
# Run instantly via npx (no installation)
|
|
34
|
-
npx archguard
|
|
34
|
+
npx @barbozaa/archguard
|
|
35
35
|
|
|
36
36
|
# Or install globally
|
|
37
|
-
npm install -g archguard
|
|
37
|
+
npm install -g @barbozaa/archguard
|
|
38
38
|
|
|
39
39
|
# Or add to your project
|
|
40
|
-
npm install --save-dev archguard
|
|
40
|
+
npm install --save-dev @barbozaa/archguard
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
### Basic Usage
|
|
@@ -61,7 +61,7 @@ archguard --format executive
|
|
|
61
61
|
```yaml
|
|
62
62
|
# GitHub Actions example
|
|
63
63
|
- name: Architecture Analysis
|
|
64
|
-
run: npx archguard --format json > architecture-report.json
|
|
64
|
+
run: npx @barbozaa/archguard --format json > architecture-report.json
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
---
|
|
@@ -619,7 +619,7 @@ jobs:
|
|
|
619
619
|
- uses: actions/setup-node@v3
|
|
620
620
|
with:
|
|
621
621
|
node-version: '18'
|
|
622
|
-
- run: npx archguard --format json > report.json
|
|
622
|
+
- run: npx @barbozaa/archguard --format json > report.json
|
|
623
623
|
- name: Upload Report
|
|
624
624
|
uses: actions/upload-artifact@v3
|
|
625
625
|
with:
|
|
@@ -632,7 +632,7 @@ jobs:
|
|
|
632
632
|
```yaml
|
|
633
633
|
architecture-check:
|
|
634
634
|
script:
|
|
635
|
-
- npx archguard --format json
|
|
635
|
+
- npx @barbozaa/archguard --format json
|
|
636
636
|
artifacts:
|
|
637
637
|
reports:
|
|
638
638
|
json: architecture-report.json
|
|
@@ -643,7 +643,7 @@ architecture-check:
|
|
|
643
643
|
```groovy
|
|
644
644
|
stage('Architecture Analysis') {
|
|
645
645
|
steps {
|
|
646
|
-
sh 'npx archguard --format json > architecture-report.json'
|
|
646
|
+
sh 'npx @barbozaa/archguard --format json > architecture-report.json'
|
|
647
647
|
archiveArtifacts artifacts: 'architecture-report.json'
|
|
648
648
|
}
|
|
649
649
|
}
|