Browse Source

Break it

pull/1785/head
jlukic 10 years ago
parent
commit
c70ed31396
2 changed files with 7 additions and 1 deletions
  1. 3
      tasks/config/defaults.js
  2. 5
      tasks/config/project/install.js

3
tasks/config/defaults.js

@ -7,6 +7,9 @@ module.exports = {
// base path added to all other paths
base : '',
// base path when installed with npm
pmRoot: 'semantic/',
// octal permission for output files, i.e. 644 (false does not adjust)
permission : 744,

5
tasks/config/project/install.js

@ -11,6 +11,9 @@ var
requireDotFile = require('require-dot-file')
;
console.log(defaults.paths);
return;
/*******************************
When to Ask
*******************************/
@ -297,7 +300,7 @@ module.exports = {
type : 'input',
name : 'semanticRoot',
message : 'Where should we put Semantic UI inside your project?',
default : 'semantic/'
default : defaults.pmRoot
}
],

Loading…
Cancel
Save