@uniformdev/cli 17.7.1-alpha.176 → 17.7.1-alpha.211
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/index.js +1 -6
- package/dist/index.mjs +1 -6
- package/package.json +2 -3
package/dist/index.js
CHANGED
|
@@ -1717,12 +1717,7 @@ var optimize_default = command;
|
|
|
1717
1717
|
|
|
1718
1718
|
// src/index.ts
|
|
1719
1719
|
require("dotenv").config();
|
|
1720
|
-
var plugins = [
|
|
1721
|
-
"@uniformdev/canvas/cli",
|
|
1722
|
-
"@uniformdev/context/cli",
|
|
1723
|
-
"@uniformdev/project-map/cli",
|
|
1724
|
-
"@uniformdev/uniform-new"
|
|
1725
|
-
];
|
|
1720
|
+
var plugins = ["@uniformdev/canvas/cli", "@uniformdev/context/cli", "@uniformdev/project-map/cli"];
|
|
1726
1721
|
var yarggery = import_yargs3.default.scriptName("uniform");
|
|
1727
1722
|
plugins.flatMap((plugin) => {
|
|
1728
1723
|
try {
|
package/dist/index.mjs
CHANGED
|
@@ -155,12 +155,7 @@ var optimize_default = command;
|
|
|
155
155
|
|
|
156
156
|
// src/index.ts
|
|
157
157
|
__require("dotenv").config();
|
|
158
|
-
var plugins = [
|
|
159
|
-
"@uniformdev/canvas/cli",
|
|
160
|
-
"@uniformdev/context/cli",
|
|
161
|
-
"@uniformdev/project-map/cli",
|
|
162
|
-
"@uniformdev/uniform-new"
|
|
163
|
-
];
|
|
158
|
+
var plugins = ["@uniformdev/canvas/cli", "@uniformdev/context/cli", "@uniformdev/project-map/cli"];
|
|
164
159
|
var yarggery = yargs3.scriptName("uniform");
|
|
165
160
|
plugins.flatMap((plugin) => {
|
|
166
161
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/cli",
|
|
3
|
-
"version": "17.7.1-alpha.
|
|
3
|
+
"version": "17.7.1-alpha.211+e51b76310",
|
|
4
4
|
"description": "Uniform command line interface tool",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./cli.js",
|
|
@@ -34,7 +34,6 @@
|
|
|
34
34
|
"format": "prettier --write \"src/**/*.{js,ts,tsx}\""
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@uniformdev/uniform-new": "^17.7.1-alpha.176+23649b7d5",
|
|
38
37
|
"diff": "^5.0.0",
|
|
39
38
|
"dotenv": "^16.0.3",
|
|
40
39
|
"https-proxy-agent": "^5.0.1",
|
|
@@ -58,5 +57,5 @@
|
|
|
58
57
|
"publishConfig": {
|
|
59
58
|
"access": "public"
|
|
60
59
|
},
|
|
61
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "e51b76310a677d0f0f2b35bfa1f7416c733cf25d"
|
|
62
61
|
}
|