@devicecloud.dev/dcd 4.0.2 → 4.0.3
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/bin/dev.js +0 -0
- package/dist/constants.js +2 -5
- package/oclif.manifest.json +3 -6
- package/package.json +12 -13
package/bin/dev.js
CHANGED
|
File without changes
|
package/dist/constants.js
CHANGED
|
@@ -8,15 +8,12 @@ exports.SUPPORTED_MAESTRO_VERSIONS = [
|
|
|
8
8
|
'1.39.0',
|
|
9
9
|
'1.39.1',
|
|
10
10
|
'1.39.2',
|
|
11
|
-
'1.39.4',
|
|
12
11
|
'1.39.5',
|
|
13
12
|
'1.39.7',
|
|
14
|
-
'1.39.13',
|
|
15
|
-
'1.40.0',
|
|
16
|
-
'1.40.1',
|
|
17
|
-
'1.40.2',
|
|
18
13
|
'1.40.3',
|
|
19
14
|
'1.41.0',
|
|
15
|
+
'2.0.2',
|
|
16
|
+
'2.0.3',
|
|
20
17
|
];
|
|
21
18
|
exports.DEFAULT_MAESTRO_VERSION = '1.41.0';
|
|
22
19
|
const getLatestMaestroVersion = () => exports.SUPPORTED_MAESTRO_VERSIONS.at(-1);
|
package/oclif.manifest.json
CHANGED
|
@@ -297,15 +297,12 @@
|
|
|
297
297
|
"1.39.0",
|
|
298
298
|
"1.39.1",
|
|
299
299
|
"1.39.2",
|
|
300
|
-
"1.39.4",
|
|
301
300
|
"1.39.5",
|
|
302
301
|
"1.39.7",
|
|
303
|
-
"1.39.13",
|
|
304
|
-
"1.40.0",
|
|
305
|
-
"1.40.1",
|
|
306
|
-
"1.40.2",
|
|
307
302
|
"1.40.3",
|
|
308
303
|
"1.41.0",
|
|
304
|
+
"2.0.2",
|
|
305
|
+
"2.0.3",
|
|
309
306
|
"latest"
|
|
310
307
|
],
|
|
311
308
|
"type": "option"
|
|
@@ -581,5 +578,5 @@
|
|
|
581
578
|
]
|
|
582
579
|
}
|
|
583
580
|
},
|
|
584
|
-
"version": "4.0.
|
|
581
|
+
"version": "4.0.3"
|
|
585
582
|
}
|
package/package.json
CHANGED
|
@@ -65,22 +65,14 @@
|
|
|
65
65
|
]
|
|
66
66
|
},
|
|
67
67
|
"private": false,
|
|
68
|
+
"publishConfig": {
|
|
69
|
+
"access": "public"
|
|
70
|
+
},
|
|
68
71
|
"repository": {
|
|
69
72
|
"type": "git",
|
|
70
73
|
"url": "https://devicecloud.dev"
|
|
71
74
|
},
|
|
72
|
-
"
|
|
73
|
-
"dcd": "./bin/dev.js",
|
|
74
|
-
"prod": "./bin/run.js",
|
|
75
|
-
"build": "shx rm -rf dist && tsc -b",
|
|
76
|
-
"lint": "NODE_OPTIONS='--no-deprecation' eslint . --ext .ts",
|
|
77
|
-
"postpack": "shx rm -f oclif.manifest.json",
|
|
78
|
-
"prepack": "yarn build && oclif manifest",
|
|
79
|
-
"prepare": "yarn build",
|
|
80
|
-
"version": "oclif readme && git add README.md",
|
|
81
|
-
"test": "node scripts/test-runner.mjs"
|
|
82
|
-
},
|
|
83
|
-
"version": "4.0.2",
|
|
75
|
+
"version": "4.0.3",
|
|
84
76
|
"bugs": {
|
|
85
77
|
"url": "https://discord.gg/gm3mJwcNw8"
|
|
86
78
|
},
|
|
@@ -93,5 +85,12 @@
|
|
|
93
85
|
"testing"
|
|
94
86
|
],
|
|
95
87
|
"types": "dist/index.d.ts",
|
|
96
|
-
"
|
|
88
|
+
"scripts": {
|
|
89
|
+
"dcd": "./bin/dev.js",
|
|
90
|
+
"prod": "./bin/run.js",
|
|
91
|
+
"build": "shx rm -rf dist && tsc -b",
|
|
92
|
+
"lint": "NODE_OPTIONS='--no-deprecation' eslint . --ext .ts",
|
|
93
|
+
"version": "oclif readme && git add README.md",
|
|
94
|
+
"test": "node scripts/test-runner.mjs"
|
|
95
|
+
}
|
|
97
96
|
}
|