File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -54,18 +54,18 @@ export async function upgradeProjectIfNecessary(
54
54
}
55
55
56
56
async function upgradeFrom_000_to_001 (
57
- _storage : commonStorage . Storage ,
58
- _projectName : string ,
59
- projectInfo : storageProject . ProjectInfo ) : Promise < void > {
57
+ _storage : commonStorage . Storage ,
58
+ _projectName : string ,
59
+ projectInfo : storageProject . ProjectInfo ) : Promise < void > {
60
60
// Project was saved without a project.info.json file.
61
61
// Nothing needs to be done to upgrade to '0.0.1';
62
62
projectInfo . version = '0.0.1' ;
63
63
}
64
64
65
65
async function upgradeFrom_001_to_002 (
66
- storage : commonStorage . Storage ,
67
- projectName : string ,
68
- projectInfo : storageProject . ProjectInfo ) : Promise < void > {
66
+ storage : commonStorage . Storage ,
67
+ projectName : string ,
68
+ projectInfo : storageProject . ProjectInfo ) : Promise < void > {
69
69
// Modules were saved without private components.
70
70
// The Robot's mrc_mechanism_component_holder block was saved without hidePrivateComponents.
71
71
const projectFileNames : string [ ] = await storage . list (
@@ -136,4 +136,4 @@ async function upgradeFrom_002_to_003(
136
136
}
137
137
}
138
138
projectInfo . version = '0.0.3' ;
139
- }
139
+ }
You can’t perform that action at this time.
0 commit comments