fix: drop type-fest dep + landing polish#11
Merged
Merged
Conversation
- package: replace PartialDeep import with a local equivalent type so @vlandoss/env no longer depends on type-fest. Public Config<S> and Defaults<S> shapes unchanged. - docsite: link version chip to npm, route Variable Land link through LANDING_META, switch nav paddings to Tailwind utility scale, rename brand to "Variable Land" in README footer. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
The old line called the React module an SSR adapter and labeled the filesystem loader as Node — neither matches reality. The /fs entry was renamed from /node specifically because it works on any runtime with filesystem access (Node, Bun, Deno), and the /react entry exposes the <EnvScript /> helper that hydrates runtime env across both SSR and CSR. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
Preview releaseLatest commit: Some packages have been released:
Note Use the PR number as tag to install any package. For instance: |
The new run-run CLI exposes the static-check command as `rr check` instead of `rr test:static`. Renames the corresponding mise tasks (`test:static` → `check`, `examples:test:static` → `examples:check`) across the root and all 9 example workspaces, and updates CI plus the README/CONTRIBUTING/DEVELOPMENT docs to match. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
… globs Renames each example's `install` task to `setup` and replaces the hand-rolled `for d in examples/*/` loops in the root mise.toml with mise's native monorepo glob (`//examples/...:task`), which resolves against `[monorepo].config_roots` and runs in parallel. Also moves the per-example `mise run //:env:pack` from the `run` array into `depends = ["//:env:pack"]`, so when the root setup fans out to every example in parallel, mise dedupes `env:pack` to a single execution instead of N racing subprocesses fighting over `pnpm build` + `pnpm pack` + `mv`. With that in place, the explicit `mise run env:pack` step in the root setup task is no longer needed. Docs (README, CONTRIBUTING, DEVELOPMENT, examples/README) are updated to match. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
type-festdependency from@vlandoss/env.PartialDeepis now defined locally inpackage/src/lib/types.tswith an equivalent shape (primitives, arrays/readonly arrays,Map/Set, functions, objects). PublicConfig<S>andDefaults<S>types are unchanged.close.tsxnow links to npm via the newLANDING_META.npmUrl, Variable Land link routes throughLANDING_META.vlandUrl, andnav.tsxpaddings switch to Tailwind utility scale (py-6.5,py-5.5,py-4.5).Includes a patch changeset for
@vlandoss/envso the preview release picks up the dependency drop.Test plan
pnpm --filter @vlandoss/env exec rr tsc— cleanpnpm --filter @vlandoss/env test— 81/81 passingpnpm --filter @vlandoss/env build—dist/*.d.tsno longer referencetype-fest;PartialDeepis inlined🤖 Generated with Claude Code