Skip to content
This repository was archived by the owner on Oct 4, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
dust-tutorial-c64-spritro
dust-tutorial-c64-first-intro
node_modules/
npm-debug.log
.DS_Store
.DS_Store
12 changes: 0 additions & 12 deletions bin/dust
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,3 @@ exports.templates = templates;

// boot DUST
require('../lib/dust_boot');












2 changes: 1 addition & 1 deletion lib/dust_cmd
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var dust = require('../bin/dust');

// show version information and usage
dust.cmd
.version('0.5.2')
.version('0.5.3')
.usage('<command> [arguments]');


Expand Down
2 changes: 1 addition & 1 deletion lib/dust_env
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var dust = require('../bin/dust');

var operatingSystem = operatingSystem();
var osVersion = dust.shell.exec("sw_vers -productVersion", {silent:dust.silent}).output;
var dustVersion = '0.5.2 (2015-12-01)';
var dustVersion = '0.5.3 (2016-08-29)';

exports.operatingSystem = operatingSystem
exports.osVersion = osVersion;
Expand Down
2 changes: 0 additions & 2 deletions lib/dust_setup
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ exports.compatibilityCheck = function(){
dust.color.reset();
dust.shell.exit(1);
}

}

exports.installStatus = function(success){
Expand All @@ -41,4 +40,3 @@ exports.removeTemporaryDirectory = function(){
}
dust.setup.installStatus(true);
}

3 changes: 0 additions & 3 deletions lib/dust_test
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ exports.fail = function(text){
dust.color.reset();
}


exports.all = function (){
dust.test.defaults();
dust.test.modDependencies();
Expand Down Expand Up @@ -45,5 +44,3 @@ exports.defaults = function defaults(){
exports.modDependencies = function modDependencies(){
return;
}


1 change: 0 additions & 1 deletion lib/dust_text
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env node
var dust = require('../bin/dust');


exports.dustLogo = function dustLogo(){
dust.color.bold();
console.log("");
Expand Down
4 changes: 2 additions & 2 deletions lib/dust_tutorials
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ function formatTutorialsList(data){
dust.color.yellow().bold();
console.log("Please choose which tutorial code to download: ");


dust.cmd.choose(list, function(i){
console.log('you chose "%s"', i, list[i]);
var choice = i+1;
console.log('you chose "%s"', choice, list[i]);
downloadTutorial(data[i].name);
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"programming",
"setup"
],
"preferGlobal": true,
"preferGlobal": true,
"dependencies" : {
"shelljs" : "0.1.2",
"commander" : "0.6.1",
Expand Down