create-workframe 0.1.16 → 0.1.17

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 CHANGED
@@ -3,7 +3,7 @@
3
3
  Published on npm as **create-workframe**.
4
4
 
5
5
  ```bash
6
- npx create-workframe@0.1.16 MyProject
6
+ npx create-workframe@0.1.17 MyProject
7
7
  ```
8
8
 
9
9
  Scaffolds an isolated Workframe + Hermes project on Windows, macOS, and Linux.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-workframe",
3
- "version": "0.1.16",
3
+ "version": "0.1.17",
4
4
  "description": "Scaffold a Workframe + Hermes workspace with guided onboarding",
5
5
  "type": "module",
6
6
  "bin": {
@@ -13,7 +13,9 @@ workframe_compose_prepare() {
13
13
  && -f "${WORKFRAME_COMPOSE_DIR}/docker-compose.yml" \
14
14
  && -f "${WORKFRAME_COMPOSE_DIR}/docker-compose.host-bindings.yml" ]]; then
15
15
  compose_cd="${WORKFRAME_COMPOSE_DIR}"
16
- if [[ -d "${WORKFRAME_HOST_COMPOSE_DIR}" ]]; then
16
+ # Docker Desktop resolves Windows host paths via the daemon even when the
17
+ # supervisor cannot see them as Linux directories.
18
+ if [[ -d "${WORKFRAME_HOST_COMPOSE_DIR}" || "${WORKFRAME_HOST_COMPOSE_DIR}" =~ ^[A-Za-z]:[/\\] ]]; then
17
19
  compose_files=(-f docker-compose.yml -f docker-compose.host-bindings.yml)
18
20
  else
19
21
  compose_files=(-f docker-compose.yml)
@@ -1,5 +1,5 @@
1
1
  {
2
- "package_version": "0.1.16",
3
- "bundled_at": "2026-07-12T14:33:30.347Z",
4
- "git_ref": "fa04177"
2
+ "package_version": "0.1.17",
3
+ "bundled_at": "2026-07-12T17:14:24.044Z",
4
+ "git_ref": "debdfd3"
5
5
  }