@uniformdev/cli 19.170.1-alpha.0 → 19.170.1-alpha.1
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.mjs +2 -2
- package/package.json +8 -8
package/dist/index.mjs
CHANGED
|
@@ -9684,7 +9684,7 @@ var SyncPullModule = {
|
|
|
9684
9684
|
state: entityConfigSupportsPullState(entityConfig) ? entityConfig.state ?? 0 : 0,
|
|
9685
9685
|
format: getFormat(entityType, config2),
|
|
9686
9686
|
onlyCompositions: entityType === "composition" ? true : void 0,
|
|
9687
|
-
onlyPatterns: ["
|
|
9687
|
+
onlyPatterns: ["componentPattern", "compositionPattern"].includes(entityType) ? true : void 0,
|
|
9688
9688
|
patternType: entityType === "compositionPattern" ? "composition" : entityType === "componentPattern" ? "component" : void 0,
|
|
9689
9689
|
mode: getPullMode(entityType, config2),
|
|
9690
9690
|
directory: getPullFilename(entityType, config2),
|
|
@@ -9790,7 +9790,7 @@ var SyncPushModule = {
|
|
|
9790
9790
|
state: 0,
|
|
9791
9791
|
format: getFormat2(entityType, config2),
|
|
9792
9792
|
onlyCompositions: entityType === "composition" ? true : void 0,
|
|
9793
|
-
onlyPatterns: ["
|
|
9793
|
+
onlyPatterns: ["componentPattern", "compositionPattern"].includes(entityType) ? true : void 0,
|
|
9794
9794
|
patternType: entityType === "compositionPattern" ? "composition" : entityType === "componentPattern" ? "component" : void 0,
|
|
9795
9795
|
mode: getPushMode(entityType, config2),
|
|
9796
9796
|
directory: getPushFilename(entityType, config2),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/cli",
|
|
3
|
-
"version": "19.170.1-alpha.
|
|
3
|
+
"version": "19.170.1-alpha.1+51ca6d7af1",
|
|
4
4
|
"description": "Uniform command line interface tool",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./cli.js",
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@thi.ng/mime": "^2.2.23",
|
|
30
|
-
"@uniformdev/assets": "19.170.1-alpha.
|
|
31
|
-
"@uniformdev/canvas": "19.170.1-alpha.
|
|
32
|
-
"@uniformdev/context": "19.170.1-alpha.
|
|
33
|
-
"@uniformdev/files": "19.170.1-alpha.
|
|
34
|
-
"@uniformdev/project-map": "19.170.1-alpha.
|
|
35
|
-
"@uniformdev/redirect": "19.170.1-alpha.
|
|
30
|
+
"@uniformdev/assets": "19.170.1-alpha.1+51ca6d7af1",
|
|
31
|
+
"@uniformdev/canvas": "19.170.1-alpha.1+51ca6d7af1",
|
|
32
|
+
"@uniformdev/context": "19.170.1-alpha.1+51ca6d7af1",
|
|
33
|
+
"@uniformdev/files": "19.170.1-alpha.1+51ca6d7af1",
|
|
34
|
+
"@uniformdev/project-map": "19.170.1-alpha.1+51ca6d7af1",
|
|
35
|
+
"@uniformdev/redirect": "19.170.1-alpha.1+51ca6d7af1",
|
|
36
36
|
"call-bind": "^1.0.2",
|
|
37
37
|
"colorette": "2.0.20",
|
|
38
38
|
"cosmiconfig": "9.0.0",
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"publishConfig": {
|
|
79
79
|
"access": "public"
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "51ca6d7af193fed44b1e2b0412c99e0c6cc85c2c"
|
|
82
82
|
}
|