create-mendix-widget-gleam 4.0.2 → 4.0.5
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/template/docs/glendix_guide.md +2 -2
- package/template/gleam.toml +1 -1
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ my-widget/
|
|
|
28
28
|
components/
|
|
29
29
|
hello_world.gleam # Hello World 공유 컴포넌트
|
|
30
30
|
package.json # npm 의존성 (React, 외부 라이브러리 등)
|
|
31
|
-
gleam.toml # Gleam 프로젝트 설정 (glendix >= 4.0.
|
|
31
|
+
gleam.toml # Gleam 프로젝트 설정 (glendix >= 4.0.5 + mendraw >= 1.2.1 의존성 포함)
|
|
32
32
|
CLAUDE.md # AI 어시스턴트용 프로젝트 컨텍스트
|
|
33
33
|
```
|
|
34
34
|
|
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# glendix v4.0.
|
|
1
|
+
# glendix v4.0.5 — Agent Reference Guide
|
|
2
2
|
|
|
3
3
|
> 이 문서는 AI 에이전트(LLM)가 glendix 코드를 작성할 때 참조하는 가이드입니다. 각 섹션은 독립적으로 읽을 수 있습니다.
|
|
4
4
|
|
|
@@ -46,7 +46,7 @@ glendix는 Gleam으로 Mendix Pluggable Widget을 작성하는 FFI 라이브러
|
|
|
46
46
|
|
|
47
47
|
```toml
|
|
48
48
|
[dependencies]
|
|
49
|
-
glendix = ">= 4.0.
|
|
49
|
+
glendix = ">= 4.0.5 and < 5.0.0"
|
|
50
50
|
mendraw = ">= 1.2.1 and < 2.0.0"
|
|
51
51
|
```
|
|
52
52
|
|
package/template/gleam.toml
CHANGED