Merged
Conversation
…orts The `assert` keyword for import attributes is deprecated in Node.js 18+ in favor of the `with` keyword. This change fixes deprecation warnings when running tests and ensures compatibility with modern Node.js versions. The `with` syntax requires Node.js 18.20.0+, so the .nvmrc is updated to 18.20.8. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2 tasks
Co-authored-by: chrisgervang <2461547+chrisgervang@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Remove Volta from deck.gl in JSON imports example
Remove Volta from deck.gl
Jan 28, 2026
Collaborator
Contributor
Author
The branch already contains the Volta removal changes (105ad50). However, due to tooling constraints that prevent force-pushing, I cannot rebase the branch history to be directly on top of master. The current branch is functional and contains all the necessary changes - it just has some extra merge history from the original stacked PR. If you need a clean rebase, you may need to manually force-push or I can close this PR and create a fresh one based on master. |
chrisgervang
approved these changes
Jan 28, 2026
felixpalmer
approved these changes
Jan 29, 2026
felixpalmer
pushed a commit
that referenced
this pull request
Feb 10, 2026
* chore(examples): replace deprecated `assert` with `with` for JSON imports The `assert` keyword for import attributes is deprecated in Node.js 18+ in favor of the `with` keyword. This change fixes deprecation warnings when running tests and ensures compatibility with modern Node.js versions. The `with` syntax requires Node.js 18.20.0+, so the .nvmrc is updated to 18.20.8. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * Initial plan * Remove Volta from deck.gl Co-authored-by: chrisgervang <2461547+chrisgervang@users.noreply.github.com> --------- Co-authored-by: Chris Gervang <chris@gervang.com> Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: Chris Gervang <chrisgervang@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: chrisgervang <2461547+chrisgervang@users.noreply.github.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.
Background
Volta was pinning Node to 18.19.0, which lacks support for the
with {type: 'json'}import syntax (backported only to 18.20+). The.nvmrcalready specifies 18.20.8, creating version conflicts for Volta users.Change List
voltaconfiguration from root and websitepackage.jsonCONTRIBUTING.mdto remove Volta references, keeping nvm as recommended Node version manager.nvmrc(18.20.8) for nvm and other version managers💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.
Note
Low Risk
Low risk because changes are limited to development tooling metadata and documentation; no runtime/library code paths are affected.
Overview
Removes
voltaconfiguration blocks from the rootpackage.jsonandwebsite/package.json, leaving Yarn pinned viapackageManager.Updates
CONTRIBUTING.mdto drop Volta references and simplify local Node version manager guidance tonvm/.nvmrc(and other managers), reducing version-manager conflicts for contributors.Written by Cursor Bugbot for commit 1ca657f. This will update automatically on new commits. Configure here.