quackage 1.0.3 → 1.0.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quackage",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Building. Testing. Quacking.",
5
5
  "main": "source/Quackage.js",
6
6
  "scripts": {
@@ -24,7 +24,9 @@ class QuackageCommandBuild extends libCommandLineCommand
24
24
  let tmpActionsToExecute = pArgumentString.toUpperCase();
25
25
  let tmpActionSet = [];
26
26
 
27
- this.log.info(`Building browserified module ${tmpActionsToExecute} from the command...`,pOptions);
27
+ let tmpOptions = pCommand.opts();
28
+
29
+ this.log.info(`Building browserified module ${tmpActionsToExecute} from the command...`,tmpOptions);
28
30
 
29
31
  // ##. Figure out which actions to execute
30
32
  for (let i = 0; i < this.fable.AppData.QuackagePackage.GulpExecutions.length; i++)
@@ -46,7 +46,7 @@ class QuackageCommandLint extends libCommandLineCommand
46
46
 
47
47
  if (!tmpPackageSectionExists || tmpOptions.force)
48
48
  {
49
- this.log.info(` --> ${tmpProjectPackage.name}:${tmpProjectPackage.version}/package.json { ${tmpPackageSectionName}:... }: ${(tmpSectionsMatch && tmpPackageSectionExists) ? '[OK]' : '[NOT OK]'}`);
49
+ this.log.info(` --> ${tmpProjectPackage.name}:${tmpProjectPackage.version}/package.json SECTION { ${tmpPackageSectionName}:... }: ${(tmpSectionsMatch && tmpPackageSectionExists) ? '[OK]' : '[NOT OK]'}`);
50
50
  tmpProjectPackage[tmpPackageSectionName] = tmpQuackageConfigSectionValue;
51
51
  }
52
52
  }