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-commands
The SDK commands are used via npx
to run the version installed in your project:
npx @dcl/sdk-commands init
npx @dcl/sdk-commands start
npx @dcl/sdk-commands build
npx @dcl/sdk-commands deploy
npx @dcl/sdk-commands export-static
npx @dcl/sdk-commands pack-smart-wearable
npx @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-deps
For detailed documentation on using the CLI tools, visit: