squad-station 0.7.9 → 0.7.11
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/bin/run.js +3 -7
- package/package.json +1 -1
package/bin/run.js
CHANGED
|
@@ -43,7 +43,7 @@ function install() {
|
|
|
43
43
|
|
|
44
44
|
function installBinary() {
|
|
45
45
|
// Binary version — may differ from npm package version
|
|
46
|
-
var VERSION = '0.7.
|
|
46
|
+
var VERSION = '0.7.11';
|
|
47
47
|
var REPO = 'thientranhung/squad-station';
|
|
48
48
|
|
|
49
49
|
var isWindows = process.platform === 'win32';
|
|
@@ -220,12 +220,8 @@ function scaffoldProject(force) {
|
|
|
220
220
|
var sddFiles = fs.readdirSync(sddSrc).filter(function(f) { return f.endsWith('.md'); });
|
|
221
221
|
sddFiles.forEach(function(file) {
|
|
222
222
|
var dest = path.join(sddDest, file);
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
} else {
|
|
226
|
-
fs.copyFileSync(path.join(sddSrc, file), dest);
|
|
227
|
-
console.log(' \x1b[32m✓\x1b[0m .squad/sdd/' + file);
|
|
228
|
-
}
|
|
223
|
+
fs.copyFileSync(path.join(sddSrc, file), dest);
|
|
224
|
+
console.log(' \x1b[32m✓\x1b[0m .squad/sdd/' + file);
|
|
229
225
|
});
|
|
230
226
|
|
|
231
227
|
// Copy rules/ (git workflow rules)
|