Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.

Commit eef9d87

Browse files
committed
Update package.json according to upstream
1 parent 86e529c commit eef9d87

File tree

4 files changed

+3
-16
lines changed

4 files changed

+3
-16
lines changed

package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"build": "webpack --mode=development",
1010
"buildj": "webpack --mode=development --profile --json > stats.json",
1111
"watch": "webpack --mode=development --watch",
12-
"start": "webpack-dev-server --mode=development --open",
1312
"serve": "cd dist; python -m http.server 8080; cd ..",
1413
"dist": "webpack --mode=production",
1514
"distj": "webpack --mode=production --profile --json > stats.json",
@@ -19,17 +18,16 @@
1918
"author": "",
2019
"license": "ISC",
2120
"devDependencies": {
22-
"compression-webpack-plugin": "^9.0.0",
2321
"copy-webpack-plugin": "^9.0.0",
22+
"compression-webpack-plugin": "^9.0.0",
2423
"css-loader": "^6.0.0",
2524
"css-minimizer-webpack-plugin": "^3.0.0",
2625
"html-loader": "^3.0.0",
2726
"html-webpack-plugin": "^5.0.0",
2827
"mini-css-extract-plugin": "^2.0.0",
2928
"webpack": "^5.61.0",
3029
"webpack-bundle-analyzer": "^4.0.0",
31-
"webpack-cli": "^4.9.2",
32-
"webpack-dev-server": "^4.7.4"
30+
"webpack-cli": "^4.0.0"
3331
},
3432
"dependencies": {
3533
"-": "0.0.1",

runestone/hparsons/js/horizontal-parsons.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3049,7 +3049,7 @@ class ParsonsInput {
30493049
this.parentElement = parentElement;
30503050
this.el.id = 'regextool-' + this.parentElement.toolNumber + '-parsons-input';
30513051
const dragTip = document.createElement('div');
3052-
dragTip.innerText = 'Drag or click to select from the symbols below to form your code';
3052+
dragTip.innerText = 'Drag from the blocks below to form your code';
30533053
dragTip.classList.add('hparsons-tip');
30543054
this.el.append(dragTip);
30553055
this._dragArea = document.createElement('div');

runestone/mchoice/js/mchoice.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@ export default class MultipleChoice extends RunestoneBase {
127127
renderMCContainer() {
128128
this.containerDiv = document.createElement("div");
129129
$(this.containerDiv).html(this.question);
130-
$(this.containerDiv).addClass('mctesttest');
131130
$(this.containerDiv).addClass(this.origElem.getAttribute("class"));
132131
this.containerDiv.id = this.divid;
133132
}

test.sh

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)