@dcl/sdk-commands 7.7.3-13089595989.commit-0b20ca2 → 7.7.3-13092675533.commit-f0ff8b0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +105 -0
  2. package/package.json +3 -3
package/README.md ADDED
@@ -0,0 +1,105 @@
1
+ # @dcl/sdk-commands
2
+
3
+ CLI tools for Decentraland scene development.
4
+
5
+ ## Overview
6
+
7
+ This package provides command-line tools for creating, developing, and deploying Decentraland scenes. It includes commands for:
8
+
9
+ - Initializing new scene projects
10
+ - Starting a local development server
11
+ - Building scenes
12
+ - Testing and validating scenes
13
+ - Managing scene deployments
14
+
15
+ ## Installation
16
+
17
+ ```bash
18
+ npm install @dcl/sdk-commands
19
+ ```
20
+
21
+ ## Usage
22
+
23
+ The SDK commands are used via `npx` to run the version installed in your project:
24
+
25
+ ### Create a New Scene
26
+
27
+ ```bash
28
+ npx @dcl/sdk-commands init
29
+ ```
30
+
31
+ ### Start Development Server
32
+
33
+ ```bash
34
+ npx @dcl/sdk-commands start
35
+ ```
36
+
37
+ ### Build Scene
38
+
39
+ ```bash
40
+ npx @dcl/sdk-commands build
41
+ ```
42
+
43
+ ### Deploy Scene
44
+
45
+ ```bash
46
+ npx @dcl/sdk-commands deploy
47
+ ```
48
+
49
+ ### Export Static Content
50
+
51
+ ```bash
52
+ npx @dcl/sdk-commands export-static
53
+ ```
54
+
55
+ ### Pack Smart Wearable
56
+
57
+ ```bash
58
+ npx @dcl/sdk-commands pack-smart-wearable
59
+ ```
60
+
61
+ ### Manage Quests
62
+
63
+ ```bash
64
+ npx @dcl/sdk-commands quests
65
+ ```
66
+
67
+ ## Development
68
+
69
+ ### Building the Package
70
+
71
+ ```bash
72
+ # Build all packages in the monorepo
73
+ make build
74
+ ```
75
+
76
+ ### Testing
77
+
78
+ ```bash
79
+ # Run all tests in the monorepo
80
+ make test
81
+
82
+ # Run tests for a specific file
83
+ make test FILES="--watch packages/@dcl/sdk-commands/src/path/to/test.spec.ts"
84
+ ```
85
+
86
+ ### Development Commands
87
+
88
+ For local development:
89
+
90
+ ```bash
91
+ # Clean all build artifacts and reinstall dependencies
92
+ make clean && make install
93
+
94
+ # Format and fix linting issues
95
+ make lint-fix
96
+
97
+ # Update dependencies across packages
98
+ make sync-deps
99
+ ```
100
+
101
+ ## Documentation
102
+
103
+ For detailed documentation on using the CLI tools, visit:
104
+
105
+ - [CLI Documentation](https://docs.decentraland.org/creator/development-guide/sdk7/cli/)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcl/sdk-commands",
3
3
  "description": "",
4
- "version": "7.7.3-13089595989.commit-0b20ca2",
4
+ "version": "7.7.3-13092675533.commit-f0ff8b0",
5
5
  "author": "Decentraland",
6
6
  "bin": {
7
7
  "sdk-commands": "./dist/index.js"
@@ -13,7 +13,7 @@
13
13
  "@dcl/inspector": "https://sdk-team-cdn.decentraland.org/",
14
14
  "@dcl/linker-dapp": "^0.14.2",
15
15
  "@dcl/mini-comms": "1.0.1-20230216163137.commit-a4c75be",
16
- "@dcl/protocol": "^1.0.0-12988319503.commit-ea9043b",
16
+ "@dcl/protocol": "1.0.0-13090605858.commit-8290125",
17
17
  "@dcl/quests-client": "^1.0.3",
18
18
  "@dcl/quests-manager": "^0.1.4",
19
19
  "@dcl/rpc": "^1.1.1",
@@ -74,5 +74,5 @@
74
74
  "displayName": "SDK",
75
75
  "tsconfig": "./tsconfig.json"
76
76
  },
77
- "commit": "0b20ca2b07b25eb7acfa0778623b58201cc13810"
77
+ "commit": "f0ff8b0a2e282dc30bfe741cd31a8d0780f45b09"
78
78
  }