sb-mig 5.5.3-beta.1 → 5.5.4-beta.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/api/migrate.js +0 -1
- package/dist/cli/commands/sync.js +0 -7
- package/package.json +1 -1
package/dist/api/migrate.js
CHANGED
|
@@ -31,7 +31,6 @@ export const removeAllComponents = async (config) => {
|
|
|
31
31
|
await managementApi.components.removeComponentGroup(componentGroup, config);
|
|
32
32
|
}),
|
|
33
33
|
]);
|
|
34
|
-
return [];
|
|
35
34
|
};
|
|
36
35
|
export const removeSpecifiedComponents = async (components, config) => {
|
|
37
36
|
const remoteComponents = await managementApi.components.getAllComponents(config);
|
|
@@ -105,13 +105,6 @@ export const sync = async (props) => {
|
|
|
105
105
|
syncDirection,
|
|
106
106
|
});
|
|
107
107
|
}
|
|
108
|
-
console.log({
|
|
109
|
-
from,
|
|
110
|
-
to,
|
|
111
|
-
...flags,
|
|
112
|
-
syncDirection,
|
|
113
|
-
test: "Test",
|
|
114
|
-
});
|
|
115
108
|
if (syncDirection) {
|
|
116
109
|
if (isIt("all")) {
|
|
117
110
|
if (syncDirection !== "fromSpaceToFile") {
|
package/package.json
CHANGED