CLI tools for Decentraland scene development.
This package provides command-line tools for creating, developing, and deploying Decentraland scenes. It includes commands for:
- Initializing new scene projects
- Starting a local development server
- Building scenes
- Testing and validating scenes
- Managing scene deployments
npm install @dcl/sdk-commandsThe SDK commands are used via npx to run the version installed in your project:
npx @dcl/sdk-commands initnpx @dcl/sdk-commands startnpx @dcl/sdk-commands buildnpx @dcl/sdk-commands deploynpx @dcl/sdk-commands export-staticnpx @dcl/sdk-commands pack-smart-wearablenpx @dcl/sdk-commands quests# Build all packages in the monorepo
make build# Run all tests in the monorepo
make test
# Run tests for a specific file
make test FILES="--watch packages/@dcl/sdk-commands/src/path/to/test.spec.ts"For local development:
# Clean all build artifacts and reinstall dependencies
make clean && make install
# Format and fix linting issues
make lint-fix
# Update dependencies across packages
make sync-depsFor detailed documentation on using the CLI tools, visit: