mod-build 3.7.17 → 3.7.18

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.7.18
4
+
5
+ - Fixing console log
6
+
3
7
  ## 3.7.17
4
8
 
5
9
  - Added in the outer `ServiceType` missing object for Water Treatment trade questions config.
@@ -3,8 +3,8 @@ var merge = require('lodash.merge');
3
3
  var tradeQuestionsConfig = require('../src/trade-questions-config.js');
4
4
 
5
5
  module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
6
- console.log(siteData);
7
6
  if (siteData.useStepsConfig) {
7
+ console.log('Running trade question config...');
8
8
  return async function() {
9
9
  return await new Promise((resolve) => {
10
10
  const trade = siteData.primary_trade.toLowerCase();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-build",
3
- "version": "3.7.17",
3
+ "version": "3.7.18",
4
4
  "description": "Share components for S3 sites.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",