mindforge-cc 6.0.0-alpha → 6.2.0-alpha
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/SECURITY.md +0 -38
- package/package.json +1 -1
package/SECURITY.md
CHANGED
|
@@ -2,41 +2,3 @@
|
|
|
2
2
|
|
|
3
3
|
Please see `docs/security/SECURITY.md` for the full security policy,
|
|
4
4
|
reporting process, and supported versions.
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
# 1. Publish v6.0.0-alpha
|
|
8
|
-
git checkout v6.0.0-alpha
|
|
9
|
-
npm publish --tag alpha --cache /tmp/npm-cache
|
|
10
|
-
|
|
11
|
-
# 2. Publish v6.1.0-alpha
|
|
12
|
-
git checkout v6.1.0-alpha
|
|
13
|
-
npm publish --tag alpha --cache /tmp/npm-cache
|
|
14
|
-
|
|
15
|
-
# 3. Publish v6.2.0-alpha (Final)
|
|
16
|
-
git checkout feature/mindforge-docs
|
|
17
|
-
npm publish --tag alpha --cache /tmp/npm-cache
|
|
18
|
-
|
|
19
|
-
# 1. Re-login (this will prompt for 2FA in the browser or CLI)
|
|
20
|
-
npm login
|
|
21
|
-
|
|
22
|
-
# 2. Then try publishing again
|
|
23
|
-
npm publish --tag alpha --cache /tmp/npm-cache
|
|
24
|
-
|
|
25
|
-
git checkout v6.0.0-alpha
|
|
26
|
-
npm publish --tag alpha --cache /tmp/npm-cache --otp=YOUR_CODE
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
# Replace YOUR_TOKEN with the npm_... token you just generated
|
|
30
|
-
export NPM_TOKEN=YOUR_TOKEN
|
|
31
|
-
|
|
32
|
-
# 1. Publish v6.0.0-alpha
|
|
33
|
-
git checkout v6.0.0-alpha
|
|
34
|
-
npm publish --tag alpha --cache /tmp/npm-cache --//registry.npmjs.org/:_authToken=$NPM_TOKEN
|
|
35
|
-
|
|
36
|
-
# 2. Publish v6.1.0-alpha
|
|
37
|
-
git checkout v6.1.0-alpha
|
|
38
|
-
npm publish --tag alpha --cache /tmp/npm-cache --//registry.npmjs.org/:_authToken=$NPM_TOKEN
|
|
39
|
-
|
|
40
|
-
# 3. Publish v6.2.0-alpha (Final)
|
|
41
|
-
git checkout feature/mindforge-docs
|
|
42
|
-
npm publish --tag alpha --cache /tmp/npm-cache --//registry.npmjs.org/:_authToken=$NPM_TOKEN
|