@microtronics/studio-cli 0.52.0 → 0.53.0

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/out/globals.js CHANGED
@@ -92,10 +92,9 @@ var Globals;
92
92
  const defaultsIni = vscode_uri_1.Utils.joinPath(cwd, defaultFiles_1.DefaultFiles.filePaths.defaultsIni);
93
93
  await mergeIniFile(fs, defaultsIni, allDefines, sections, definesWithSource);
94
94
  }
95
- else {
96
- const appIni = vscode_uri_1.Utils.joinPath(cwd, defaultFiles_1.DefaultFiles.filePaths.appIni);
97
- await mergeIniFile(fs, appIni, allDefines, sections, definesWithSource);
98
- }
95
+ // app.ini is always loaded
96
+ const appIni = vscode_uri_1.Utils.joinPath(cwd, defaultFiles_1.DefaultFiles.filePaths.appIni);
97
+ await mergeIniFile(fs, appIni, allDefines, sections, definesWithSource);
99
98
  return { flat: allDefines, sections, definesWithSource };
100
99
  }
101
100
  Globals.read = read;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microtronics/studio-cli",
3
- "version": "0.52.0",
3
+ "version": "0.53.0",
4
4
  "description": "Microtronics Studio CLI Tool",
5
5
  "main": "./out/api.js",
6
6
  "typings": "./dist/studio-cli.d.ts",