bridgepreflight 1.0.1 → 1.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 (3) hide show
  1. package/README.md +27 -24
  2. package/dist/cli.js +1 -1
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -86,13 +86,13 @@ Current analyzers include:
86
86
  Installation
87
87
 
88
88
  Global Installation (Recommended)
89
- npm install -g bridgepreflight
89
+ npm install -g bridgepreflight
90
90
 
91
91
  Run:
92
- bridgepreflight scan
92
+ bridgepreflight scan
93
93
 
94
94
  Or without global install:
95
- npx bridgepreflight scan
95
+ npx bridgepreflight scan
96
96
  <!------------------------------ ------------------------------------>
97
97
 
98
98
 
@@ -157,27 +157,30 @@ Upcoming native integrations:
157
157
 
158
158
  <!------------------------------ ------------------------------------>
159
159
  Roadmap
160
- BridgePreflight is evolving into a full Deployment Risk Intelligence Platform.
161
-
162
- Phase 1 (Current)
163
- • Local CLI scanning
164
- • Weighted risk scoring
165
- Deterministic analyzer engine
166
-
167
- Phase 2
168
- Configurable scoring weights
169
- Plugin-based analyzer architecture
170
- • CI enforcement modes (--strict, --ci)
171
-
172
- Phase 3
173
- • Historical risk tracking
174
- GitHub integration
175
- PR blocking with threshold enforcement
176
-
177
- Phase 4
178
- Cloud dashboard
179
- • Team-level risk insights
180
- Policy enforcement
160
+ BridgePreflight is evolving into a comprehensive Deployment Risk Intelligence Platform.
161
+
162
+ Phase 1 - Deterministic CLI (Current)
163
+ • Local development risk scanning
164
+ • Weighted analyzer scoring
165
+ JSON output for CI integration
166
+ • Structured severity classification
167
+
168
+ Phase 2 - Policy & Enforcement
169
+ Configurable scoring thresholds
170
+ Strict CI mode (--strict, --ci)
171
+ • COnfigurable analyzer toggling
172
+ Exit-code enforcement policies
173
+
174
+ Phase 3 - Ecosystem Integration
175
+ Native GitHub Action
176
+ • Pull request risk annotations
177
+ Historical score comparison
178
+ Team-level threshold configuration
179
+
180
+ Phase 4 - Platform Expansion
181
+ • Risk history tracking
182
+ • Deployment trend analysis
183
+ • Team dashboards
181
184
  • Enterprise compliance modules
182
185
  <!------------------------------ ------------------------------------>
183
186
 
package/dist/cli.js CHANGED
@@ -62,7 +62,7 @@ program
62
62
  .option("--json", "Output results as JSON (for CI pipelines)")
63
63
  .description("Run production safety checks")
64
64
  .action(async (options) => {
65
- console.log(chalk_1.default.blue("\nWelcome to BridgePreflight — AI-native infrastructure readiness scanner\n"));
65
+ console.log(chalk_1.default.blue("\nWelcome to BridgePreflight — The Deployment Risk Intelligence Platform \n"));
66
66
  const ciMode = (0, ci_1.isCI)();
67
67
  if (!ciMode) {
68
68
  const accessGranted = await (0, projectUtils_1.askProjectAccess)();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bridgepreflight",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Deployment Risk Intelligence CLI for Node.js projects. Detect build, runtime, and configuration risks before production.",
5
5
  "bin": {
6
6
  "bridgepreflight": "dist/cli.js"
@@ -43,6 +43,6 @@
43
43
  "typescript": "^5.9.3"
44
44
  },
45
45
  "engines": {
46
- "node": ">=18"
46
+ "node": ">=20"
47
47
  }
48
48
  }