projectops 4.1.2 → 4.1.3
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 +1 -1
- package/package.json +1 -1
- package/src/core/copy/simple.js +7 -2
package/README.md
CHANGED
package/package.json
CHANGED
package/src/core/copy/simple.js
CHANGED
|
@@ -5,9 +5,14 @@ import { chmodSync } from "node:fs";
|
|
|
5
5
|
import { PATHS } from "../paths.js";
|
|
6
6
|
import { exists, copyFileSync, copyDirSync } from "../fsutil.js";
|
|
7
7
|
|
|
8
|
-
//
|
|
8
|
+
// 버전관리/릴리스노트 스크립트만 무조건 덮어쓰기 + chmod +x.
|
|
9
|
+
// version_manager는 .sh(위임 shim) + .py(실 로직) 한 쌍 — 둘 다 복사해야 동작 (#448).
|
|
9
10
|
export function copyScripts(tempDir, targetRoot = ".") {
|
|
10
|
-
const scripts = [
|
|
11
|
+
const scripts = [
|
|
12
|
+
"version_manager.sh", "version_manager.py",
|
|
13
|
+
"changelog_manager.py",
|
|
14
|
+
"truncate_release_notes.sh", "truncate_release_notes.py",
|
|
15
|
+
];
|
|
11
16
|
let copied = 0;
|
|
12
17
|
for (const s of scripts) {
|
|
13
18
|
const src = join(tempDir, PATHS.scriptsDir, s);
|