Skip to content

Commit

Permalink
workaround for crash when CHOOSE LANGUAGE is selected
Browse files Browse the repository at this point in the history
stevekane#116

update workshopper dependencies
  • Loading branch information
tdtsh committed Apr 8, 2017
1 parent 2e22b12 commit fd00e37
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion exercises/always_async/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var exercise = require('workshopper-exercise')();
var filecheck = require('workshopper-exercise/filecheck');
var execute = require('workshopper-exercise/execute');
var comparestdout = require('workshopper-exercise/comparestdout');
var wrappedexec = require('@timothygu/workshopper-wrappedexec');
var wrappedexec = require('workshopper-wrappedexec');

// checks that the submission file actually exists
exercise = filecheck(exercise);
Expand Down
2 changes: 1 addition & 1 deletion exercises/fulfill_a_promise/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var exercise = require('workshopper-exercise')();
var filecheck = require('workshopper-exercise/filecheck');
var execute = require('workshopper-exercise/execute');
var comparestdout = require('workshopper-exercise/comparestdout');
var wrappedexec = require('@timothygu/workshopper-wrappedexec');
var wrappedexec = require('workshopper-wrappedexec');
var timer = require('workshopper-timer');

var THRESHOLD = 100;
Expand Down
2 changes: 1 addition & 1 deletion exercises/multiple_promises/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var exercise = require('workshopper-exercise')();
var filecheck = require('workshopper-exercise/filecheck');
var execute = require('workshopper-exercise/execute');
var comparestdout = require('workshopper-exercise/comparestdout');
var wrappedexec = require('@timothygu/workshopper-wrappedexec');
var wrappedexec = require('workshopper-wrappedexec');
var timer = require('workshopper-timer');
var rnd = require('random-word');

Expand Down
2 changes: 1 addition & 1 deletion exercises/promise_after_promise/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var exercise = require('workshopper-exercise')();
var filecheck = require('workshopper-exercise/filecheck');
var execute = require('workshopper-exercise/execute');
var comparestdout = require('workshopper-exercise/comparestdout');
var wrappedexec = require('@timothygu/workshopper-wrappedexec');
var wrappedexec = require('workshopper-wrappedexec');
var timer = require('workshopper-timer');
var rnd = require('random-word');

Expand Down
2 changes: 1 addition & 1 deletion exercises/reject_a_promise/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var exercise = require('workshopper-exercise')();
var filecheck = require('workshopper-exercise/filecheck');
var execute = require('workshopper-exercise/execute');
var comparestdout = require('workshopper-exercise/comparestdout');
var wrappedexec = require('@timothygu/workshopper-wrappedexec');
var wrappedexec = require('workshopper-wrappedexec');
var timer = require('workshopper-timer');

var THRESHOLD = 100;
Expand Down
2 changes: 1 addition & 1 deletion exercises/shortcuts/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var path = require('path');
var exercise = require('workshopper-exercise')();
var filecheck = require('workshopper-exercise/filecheck');
var execute = require('workshopper-exercise/execute');
var wrappedexec = require('@timothygu/workshopper-wrappedexec');
var wrappedexec = require('workshopper-wrappedexec');

// checks that the submission file actually exists
exercise = filecheck(exercise);
Expand Down
2 changes: 1 addition & 1 deletion exercises/to_reject_or_not_to_reject/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var exercise = require('workshopper-exercise')();
var filecheck = require('workshopper-exercise/filecheck');
var execute = require('workshopper-exercise/execute');
var comparestdout = require('workshopper-exercise/comparestdout');
var wrappedexec = require('@timothygu/workshopper-wrappedexec');
var wrappedexec = require('workshopper-wrappedexec');

// checks that the submission file actually exists
exercise = filecheck(exercise);
Expand Down
2 changes: 1 addition & 1 deletion exercises/values_and_promises/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var exercise = require('workshopper-exercise')();
var filecheck = require('workshopper-exercise/filecheck');
var execute = require('workshopper-exercise/execute');
var comparestdout = require('workshopper-exercise/comparestdout');
var wrappedexec = require('@timothygu/workshopper-wrappedexec');
var wrappedexec = require('workshopper-wrappedexec');

// checks that the submission file actually exists
exercise = filecheck(exercise);
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"bin": "./promise-it-wont-hurt.js",
"preferGlobal": true,
"dependencies": {
"@timothygu/workshopper": "^2.7.4",
"@timothygu/workshopper-wrappedexec": "^0.1.4",
"@tdtsh/workshopper": "^2.7.0",
"workshopper-wrappedexec": "^0.1.3",
"chalk": "^1.1.3",
"es6-promise": "^3.0.2",
"node-uuid": "~1.4.1",
Expand All @@ -33,7 +33,7 @@
"split": "^1.0.0",
"through2": "^2.0.1",
"tuple-stream": "0.0.2",
"workshopper-exercise": "^2.3.0",
"workshopper-exercise": "^3.0.1",
"workshopper-timer": "^1.0.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion promise-it-wont-hurt.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

'use strict';

var workshopper = require('@timothygu/workshopper');
var workshopper = require('workshopper');
var path = require('path');

var fpath = path.join.bind(null, __dirname);
Expand Down

0 comments on commit fd00e37

Please sign in to comment.