@pghoya2956/livemap 1.0.0 → 1.0.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/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  버전마다 `## [X.Y.Z] - YYYY-MM-DD` 절을 둔다. 릴리스 워크플로가 태그 버전의 절이 있는지 확인한다.
4
4
 
5
+ ## [1.0.1] - 2026-09-17
6
+
7
+ - 문서: `npx`로 옵션을 넘길 때 `--`가 필요하다는 안내, 로컬 엔진을 `--install-links`로 끼워 보는 방법을 README에 더했다.
8
+ - 이 판부터 태그 push로 GitHub Actions 신뢰 배포(provenance 포함)로 공개한다.
9
+
5
10
  ## [1.0.0] - 2026-09-17
6
11
 
7
12
  첫 공개 판. 한 프로젝트 저장소 안에 있던 상황판 엔진을 패키지로 옮겼다.
package/README.md CHANGED
@@ -29,6 +29,12 @@ npx --no livemap init # map/ 초안·.gitignore·npm 스크립
29
29
 
30
30
  명령은 프로젝트 루트에서 부른다. CI에서는 npm 스크립트나 `npx --no livemap`을 쓴다.
31
31
 
32
+ `npx`로 부를 때 엔진 옵션은 `--` 뒤에 둔다. `npx --no livemap --version`은 `--version`을 npx가 가져가 npm 버전을 출력한다. `npx --no livemap -- --version` 또는 `node_modules/.bin/livemap --version`을 쓴다.
33
+
34
+ ## 로컬 엔진 끼워 보기
35
+
36
+ 엔진 저장소에서 고친 판을 쓰는 프로젝트에서 확인할 때는 `npm install --no-save --install-links <엔진 저장소 경로>`를 쓴다. `package.json`·lockfile은 바뀌지 않고, `npm ci`가 끼운 판을 걷어낸다. `--install-links` 없이 폴더를 설치하면 심링크가 되어 화면 예산 설정이 `@playwright/test`를 엔진 저장소 쪽에서 찾다 실패한다.
37
+
32
38
  ## 설정
33
39
 
34
40
  `map/config.json` 하나가 프로젝트별이다. 참조 어댑터는 React Router + Node BFF + SQL migration + Markdown 작업 문서 관례를 읽는다. 스택이 다르면 `map/adapters/<이름>.mjs`에 프로젝트 어댑터를 둔다.
package/package.json CHANGED
@@ -1,19 +1,44 @@
1
1
  {
2
2
  "name": "@pghoya2956/livemap",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Project status board engine: scans a repository into a graph and serves a one-screen map of journeys, screens, APIs, tests and work.",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
- "bin": { "livemap": "bin/livemap.mjs" },
8
- "files": ["bin/", "src/", "site/", "budget/", "templates/", "docs/", "CHANGELOG.md"],
9
- "engines": { "node": ">=22" },
7
+ "bin": {
8
+ "livemap": "bin/livemap.mjs"
9
+ },
10
+ "files": [
11
+ "bin/",
12
+ "src/",
13
+ "site/",
14
+ "budget/",
15
+ "templates/",
16
+ "docs/",
17
+ "CHANGELOG.md"
18
+ ],
19
+ "engines": {
20
+ "node": ">=22"
21
+ },
10
22
  "scripts": {
11
23
  "test": "node --test test/*.test.mjs"
12
24
  },
13
- "peerDependencies": { "@playwright/test": ">=1.63.0 <2" },
14
- "peerDependenciesMeta": { "@playwright/test": { "optional": true } },
15
- "devDependencies": { "@playwright/test": "1.63.0" },
16
- "repository": { "type": "git", "url": "git+https://github.com/pghoya2956/livemap.git" },
25
+ "peerDependencies": {
26
+ "@playwright/test": ">=1.63.0 <2"
27
+ },
28
+ "peerDependenciesMeta": {
29
+ "@playwright/test": {
30
+ "optional": true
31
+ }
32
+ },
33
+ "devDependencies": {
34
+ "@playwright/test": "1.63.0"
35
+ },
36
+ "repository": {
37
+ "type": "git",
38
+ "url": "git+https://github.com/pghoya2956/livemap.git"
39
+ },
17
40
  "homepage": "https://github.com/pghoya2956/livemap#readme",
18
- "publishConfig": { "access": "public" }
41
+ "publishConfig": {
42
+ "access": "public"
43
+ }
19
44
  }