Browse Source

Debug package.json

pull/1785/head
jlukic 10 years ago
parent
commit
48bae264b2
2 changed files with 2 additions and 2 deletions
  1. 2
      tasks/config/project/release.js
  2. 2
      tasks/install.js

2
tasks/config/project/release.js

@ -17,7 +17,7 @@ var
try {
config = requireDotFile('semantic.json');
package = requireDotFile('package.json');
package = require('../../../package.json');
// looks for version in config or package.json (whichever is available)
version = (config && config.version !== undefined)

2
tasks/install.js

@ -100,7 +100,7 @@ module.exports = function () {
// perform update if new version
if(currentConfig.version !== release.version) {
console.log(release);
console.log(requireDotFile('package.json'));
console.log(require('../package.json'));
console.log('Updating Semantic UI from ' + currentConfig.version + ' to ' + release.version);
console.info('Updating ui definitions...');

Loading…
Cancel
Save