@shawnstack/quickforge 1.2.9 → 1.2.10
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 +6 -6
- package/bin/quickforge.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# 速构 QuickForge
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img alt="Version" src="https://img.shields.io/badge/version-1.2.
|
|
4
|
+
<img alt="Version" src="https://img.shields.io/badge/version-1.2.10-blue" />
|
|
5
5
|
<img alt="License" src="https://img.shields.io/badge/license-MIT-green" />
|
|
6
6
|
<img alt="Node" src="https://img.shields.io/badge/node-%3E%3D20-brightgreen" />
|
|
7
7
|
<img alt="React" src="https://img.shields.io/badge/react-19-61DAFB?logo=react" />
|
|
@@ -27,7 +27,7 @@ Built with React 19, Vite 8, Tailwind CSS 4, and shadcn-style UI primitives. Use
|
|
|
27
27
|
### npm
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
npm install -g @shawnstack/quickforge@1.2.
|
|
30
|
+
npm install -g @shawnstack/quickforge@1.2.10
|
|
31
31
|
qf
|
|
32
32
|
|
|
33
33
|
# CLI utilities
|
|
@@ -38,20 +38,20 @@ qf update
|
|
|
38
38
|
|
|
39
39
|
### Offline tarball
|
|
40
40
|
|
|
41
|
-
The offline release package for `v1.2.
|
|
41
|
+
The offline release package for `v1.2.10` is:
|
|
42
42
|
|
|
43
43
|
```text
|
|
44
|
-
package-offline/shawnstack-quickforge-1.2.
|
|
44
|
+
package-offline/shawnstack-quickforge-1.2.10.tgz
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
Install it on a machine with Node.js 20+ and npm:
|
|
48
48
|
|
|
49
49
|
```bash
|
|
50
|
-
npm install -g ./package-offline/shawnstack-quickforge-1.2.
|
|
50
|
+
npm install -g ./package-offline/shawnstack-quickforge-1.2.10.tgz
|
|
51
51
|
qf
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
-
The package was generated from tag `v1.2.
|
|
54
|
+
The package was generated from tag `v1.2.10` and includes bundled runtime dependencies for offline installation.
|
|
55
55
|
|
|
56
56
|
## Quick Start
|
|
57
57
|
|
package/bin/quickforge.mjs
CHANGED
|
@@ -163,7 +163,7 @@ function installLatestVersion(packageName) {
|
|
|
163
163
|
const target = `${packageName}@latest`
|
|
164
164
|
const child = spawn(getNpmCommand(), ['install', '-g', target], {
|
|
165
165
|
stdio: 'inherit',
|
|
166
|
-
shell:
|
|
166
|
+
shell: false,
|
|
167
167
|
windowsHide: false,
|
|
168
168
|
})
|
|
169
169
|
|
package/package.json
CHANGED