@dcl/sdk-commands 7.7.5-13242242651.commit-9986c52 → 7.7.5-13413116060.commit-43029a2
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.
- package/package.json +5 -5
- package/README.md +0 -105
package/package.json
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dcl/sdk-commands",
|
3
3
|
"description": "",
|
4
|
-
"version": "7.7.5-
|
4
|
+
"version": "7.7.5-13413116060.commit-43029a2",
|
5
5
|
"author": "Decentraland",
|
6
6
|
"bin": {
|
7
7
|
"sdk-commands": "./dist/index.js"
|
8
8
|
},
|
9
9
|
"dependencies": {
|
10
10
|
"@dcl/crypto": "^3.4.4",
|
11
|
-
"@dcl/ecs": "7.7.5-
|
11
|
+
"@dcl/ecs": "7.7.5-13413116060.commit-43029a2",
|
12
12
|
"@dcl/hashing": "1.1.3",
|
13
|
-
"@dcl/inspector": "7.7.5-
|
13
|
+
"@dcl/inspector": "7.7.5-13413116060.commit-43029a2",
|
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-
|
16
|
+
"@dcl/protocol": "1.0.0-13143749736.commit-5fbeb3c",
|
17
17
|
"@dcl/quests-client": "^1.0.3",
|
18
18
|
"@dcl/quests-manager": "^0.1.4",
|
19
19
|
"@dcl/rpc": "^1.1.1",
|
@@ -73,5 +73,5 @@
|
|
73
73
|
"displayName": "SDK",
|
74
74
|
"tsconfig": "./tsconfig.json"
|
75
75
|
},
|
76
|
-
"commit": "
|
76
|
+
"commit": "43029a27b8a2b43e7dea9bc64e2593ff189373f9"
|
77
77
|
}
|
package/README.md
DELETED
@@ -1,105 +0,0 @@
|
|
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/)
|