artifact-graph 0.8.2 → 0.8.4
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/CHANGELOG.md +33 -0
- package/INSTALL.md +21 -0
- package/README.md +22 -0
- package/README.zh-CN.md +20 -0
- package/contracts/e2e-test/schema.json +315 -0
- package/dist/cli.d.ts +9 -0
- package/dist/cli.js +10199 -0
- package/dist/index.cjs +8652 -0
- package/dist/index.d.cts +1500 -0
- package/dist/index.d.ts +1500 -0
- package/dist/index.js +8536 -0
- package/package.json +1 -1
- package/templates/git-hooks/pre-commit.sh +5 -2
package/package.json
CHANGED
|
@@ -37,7 +37,10 @@ else
|
|
|
37
37
|
fi
|
|
38
38
|
|
|
39
39
|
if ! git diff --quiet -- artifacts/traceability-version-lock.json; then
|
|
40
|
-
echo "artifact-chain-assistant:
|
|
41
|
-
echo "
|
|
40
|
+
echo "artifact-chain-assistant: 版本锁刷新成功,但更新后的锁文件尚未进入本次提交。" >&2
|
|
41
|
+
echo "这不是校验失败,只需把新锁纳入提交:" >&2
|
|
42
|
+
echo " 1. 审查锁变更: git diff artifacts/traceability-version-lock.json" >&2
|
|
43
|
+
echo " 2. 暂存锁文件: git add artifacts/traceability-version-lock.json" >&2
|
|
44
|
+
echo " 3. 重新提交: git commit" >&2
|
|
42
45
|
exit 1
|
|
43
46
|
fi
|