@dcl/sdk-commands
v7.20.0
Published
CLI tools for Decentraland scene development.
Readme
@dcl/sdk-commands
CLI tools for Decentraland scene development.
Overview
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
Installation
npm install @dcl/sdk-commandsUsage
The SDK commands are used via npx to run the version installed in your project:
Create a New Scene
npx @dcl/sdk-commands initStart Development Server
npx @dcl/sdk-commands startBuild Scene
npx @dcl/sdk-commands buildDeploy Scene
npx @dcl/sdk-commands deployExport Static Content
npx @dcl/sdk-commands export-staticPack Smart Wearable
npx @dcl/sdk-commands pack-smart-wearableManage Quests
npx @dcl/sdk-commands questsDevelopment
Building the Package
# Build all packages in the monorepo
make buildTesting
# 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"Development Commands
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-depsDocumentation
For detailed documentation on using the CLI tools, visit:
