pkg-scaffold 3.1.0 → 3.1.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 +3 -3
- package/docs/.vitepress/config.mts +3 -2
- package/package.json +2 -2
- package/src/index.js +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# 📦 pkg-scaffold v3.1.
|
|
1
|
+
# 📦 pkg-scaffold v3.1.1
|
|
2
2
|
|
|
3
3
|
**The Ultimate Enterprise Codebase Janitor: OXC-Powered, Type-Aware, and Self-Healing.**
|
|
4
4
|
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
13
|
-
## 🚀 Why pkg-scaffold
|
|
13
|
+
## 🚀 Why pkg-scaffold@3.1.1?
|
|
14
14
|
|
|
15
15
|
### 1. Extreme Speed with OXC
|
|
16
16
|
By integrating the Rust-based **OXC (Oxc-Parser & Oxc-Resolver)**, pkg-scaffold v3.1.0 achieves a **2-4x performance boost** over previous versions, matching and often exceeding the speed of Knip v6 for single-pass analysis.
|
|
@@ -82,7 +82,7 @@ Add this to your `package.json` scripts:
|
|
|
82
82
|
|
|
83
83
|
- **`/pkg-scaffold/config.json`**: Your local settings (CLI/GUI, Plugin Toggles).
|
|
84
84
|
- **`/pkg-scaffold/plugins/`**: Drop your custom or Knip-style plugins here.
|
|
85
|
-
- **`/docs/`**: Full [Plugin Development Guide](
|
|
85
|
+
- **`/docs/`**: Full [Plugin Development Guide](https://dreamlongyt.github.io/pkg-scaffold/).
|
|
86
86
|
|
|
87
87
|
---
|
|
88
88
|
|
|
@@ -2,7 +2,7 @@ import { defineConfig } from 'vitepress'
|
|
|
2
2
|
|
|
3
3
|
// https://vitepress.dev/reference/site-config
|
|
4
4
|
export default defineConfig({
|
|
5
|
-
title: "pkg-scaffold
|
|
5
|
+
title: "pkg-scaffold Documentation",
|
|
6
6
|
base: '/pkg-scaffold/',
|
|
7
7
|
description: "An advanced, AST-driven dependency resolution, refactoring, and self-healing engine.",
|
|
8
8
|
themeConfig: {
|
|
@@ -29,7 +29,8 @@ export default defineConfig({
|
|
|
29
29
|
],
|
|
30
30
|
|
|
31
31
|
socialLinks: [
|
|
32
|
-
{ icon: 'github', link: 'https://github.com/DreamLongYT/pkg-scaffold' }
|
|
32
|
+
{ icon: 'github', link: 'https://github.com/DreamLongYT/pkg-scaffold' },
|
|
33
|
+
{ icon: 'npm', link: 'https://www.npmjs.com/package/pkg-scaffold'}
|
|
33
34
|
],
|
|
34
35
|
|
|
35
36
|
footer: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pkg-scaffold",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "The ultimate enterprise-grade codebase janitor. Faster than Knip v6 with OXC integration, type-aware analysis, and self-healing capabilities.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"bugs": {
|
|
43
43
|
"url": "https://github.com/DreamLongYT/pkg-scaffold/issues"
|
|
44
44
|
},
|
|
45
|
-
"homepage": "https://github.
|
|
45
|
+
"homepage": "https://dreamlongyt.github.io/pkg-scaffold/",
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"ansis": "^3.0.0",
|
|
48
48
|
"commander": "^12.0.0",
|
package/src/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* ============================================================================
|
|
3
|
-
* 📦 pkg-scaffold v3.
|
|
3
|
+
* 📦 pkg-scaffold v3.1.1: Unified Architectural Refactoring Orchestrator
|
|
4
4
|
* ============================================================================
|
|
5
5
|
* Main execution bridge managing multi-pass compilation cycles, semantic cross-linking,
|
|
6
6
|
* supply-chain validation audits, and automated git self-healing rollbacks.
|