ics-builder 4.4.0 → 4.4.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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ics-builder",
3
- "version": "4.4.0",
3
+ "version": "4.4.1",
4
4
  "description": "",
5
5
  "main": "./src/app.js",
6
6
  "preferGlobal": true,
@@ -10,7 +10,7 @@ var ConfigManager = /** @class */ (function () {
10
10
  ConfigManager.getConfig = function (configPath, multipleSchemaFiles) {
11
11
  var config;
12
12
  if (!utils_1.Utils.ensurePath(configPath)) {
13
- utils_1.Logger.info("Build config " + configPath + " is not found. Using default config.");
13
+ utils_1.Logger.warn("Build config " + configPath + " is not found. Using default config.");
14
14
  config = { api: { configuration: "Debug", framework: ".net5" } };
15
15
  }
16
16
  else
@@ -30,7 +30,7 @@ var PackageManager = /** @class */ (function () {
30
30
  var _this = this;
31
31
  if (!using) {
32
32
  if (!this.config.package && skipload) {
33
- this.packages.set(null, { name: "", version: "", modules: [{ name: "_core" }], isSingleModule: true });
33
+ this.packages.set(null, { name: "", version: "", modules: [{ name: "_core" }], isSingleModule: true, packageInfo: {} });
34
34
  return;
35
35
  }
36
36
  var mainPackage = this.config.package;