@dcl/sdk-commands 7.1.4-4598596181.commit-a983260 → 7.1.4-4600390768.commit-1125886
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/dist/logic/config.d.ts +0 -1
- package/dist/logic/config.js +1 -2
- package/package.json +3 -3
package/dist/logic/config.d.ts
CHANGED
@@ -10,7 +10,6 @@ export declare function getSdkCommandsVersion(): Promise<any>;
|
|
10
10
|
export declare function getInstalledPackageVersion(components: Pick<CliComponents, 'fs'>, packageName: string, workingDirectory: string): Promise<string>;
|
11
11
|
/**
|
12
12
|
* Returns true if the Decentraland Editor is running.
|
13
|
-
* TODO: EDITOR is a unix reserved env var. Change it for something more specific.
|
14
13
|
*/
|
15
14
|
export declare function isEditor(): boolean;
|
16
15
|
export declare function isCI(): boolean;
|
package/dist/logic/config.js
CHANGED
@@ -35,10 +35,9 @@ async function getInstalledPackageVersion(components, packageName, workingDirect
|
|
35
35
|
exports.getInstalledPackageVersion = getInstalledPackageVersion;
|
36
36
|
/**
|
37
37
|
* Returns true if the Decentraland Editor is running.
|
38
|
-
* TODO: EDITOR is a unix reserved env var. Change it for something more specific.
|
39
38
|
*/
|
40
39
|
function isEditor() {
|
41
|
-
return process.env.
|
40
|
+
return process.env.EDITOR_SDK7 === 'true';
|
42
41
|
}
|
43
42
|
exports.isEditor = isEditor;
|
44
43
|
function isCI() {
|
package/package.json
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dcl/sdk-commands",
|
3
3
|
"description": "",
|
4
|
-
"version": "7.1.4-
|
4
|
+
"version": "7.1.4-4600390768.commit-1125886",
|
5
5
|
"author": "Decentraland",
|
6
6
|
"bin": {
|
7
7
|
"sdk-commands": "./dist/index.js"
|
8
8
|
},
|
9
9
|
"dependencies": {
|
10
10
|
"@dcl/hashing": "1.1.3",
|
11
|
-
"@dcl/inspector": "7.1.4-
|
11
|
+
"@dcl/inspector": "7.1.4-4600390768.commit-1125886",
|
12
12
|
"@dcl/linker-dapp": "0.7.0",
|
13
13
|
"@dcl/mini-comms": "1.0.1-20230216163137.commit-a4c75be",
|
14
14
|
"@dcl/protocol": "1.0.0-4597420155.commit-e877adc",
|
@@ -60,5 +60,5 @@
|
|
60
60
|
"displayName": "SDK",
|
61
61
|
"tsconfig": "./tsconfig.json"
|
62
62
|
},
|
63
|
-
"commit": "
|
63
|
+
"commit": "112588647770ee79319584e13b64fcd569b36d3b"
|
64
64
|
}
|