From 8818ba99f804b1b1845a4757d67cc32d552956e1 Mon Sep 17 00:00:00 2001 From: oldmud0 Date: Sat, 8 Sep 2018 19:02:32 -0500 Subject: Continue major cleanup and style fixes --- package.json | 1 - 1 file changed, 1 deletion(-) (limited to 'package.json') diff --git a/package.json b/package.json index 711e7cf..aed873d 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,6 @@ "description": "Web-based Attorney Online client", "main": "client.js", "scripts": { - "babel": "babel ui.js -o ui.b.js", "webpack": "webpack", "deploy": "cross-env NODE_ENV=production webpack -p", "test": "echo \"Error: no test specified\" && exit 1" -- cgit From 559ff78cdf43bce9365f545b8eb38bc2bab0fcb8 Mon Sep 17 00:00:00 2001 From: oldmud0 Date: Sat, 8 Sep 2018 21:14:12 -0500 Subject: Bump package version to 2.3.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package.json') diff --git a/package.json b/package.json index aed873d..1ff0779 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "webao", - "version": "2.1.1", + "version": "2.3.0", "description": "Web-based Attorney Online client", "main": "client.js", "scripts": { -- cgit From 31bfac3f0ec613710ba00c92202ab7de910b4d05 Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Sat, 23 Mar 2019 19:00:51 +0100 Subject: npm update --- package.json | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) (limited to 'package.json') diff --git a/package.json b/package.json index 1ff0779..d72b6f0 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,14 @@ { "name": "webao", - "version": "2.3.0", + "version": "2.6.0", "description": "Web-based Attorney Online client", "main": "client.js", "scripts": { + "babel": "babel ui.js -o ui.b.js", "webpack": "webpack", "deploy": "cross-env NODE_ENV=production webpack -p", - "test": "echo \"Error: no test specified\" && exit 1" + "test": "echo \"Error: no test specified\" && exit 1", + "build": "webpack" }, "repository": { "type": "git", @@ -18,14 +20,11 @@ }, "homepage": "https://github.com/stonedDiscord/stonedDiscord.github.io#readme", "devDependencies": { - "babel-cli": "^6.26.0", - "babel-core": "^6.26.3", - "babel-loader": "^7.1.4", - "babel-preset-env": "^1.7.0", - "babel-preset-es2015": "^6.24.1", - "cross-env": "^5.1.5", - "uglify-es": "3.3.9", - "webpack": "^4.8.3", - "webpack-cli": "^2.1.3" - } + "@babel/core": "^7.3.4", + "@babel/preset-env": "^7.3.4", + "babel-loader": "^8.0.5", + "webpack": "^4.29.6", + "webpack-cli": "^3.3.0" + }, + "dependencies": {} } -- cgit From 393142f7001269140897a8ca191884e8c29bb699 Mon Sep 17 00:00:00 2001 From: oldmud0 Date: Mon, 1 Jul 2019 21:48:00 -0500 Subject: (See commit message) This commit includes another pass of refactoring to webAO, but could not be tested because it has become virtually impossible to compile GoldenLayout correctly and have it be detected as a module by webpack. GoldenLayout has also been dormant for an alarming amount of time, and its new maintainers have not been doing a stellar job releasing bug fixes. So, I give up trying to build webAO. It's a heaping mess written in vanilla HTML/CSS/JS without the use of a proper web framework, dependent on a raw TCP protocol designed 7 years ago, only to be wrapped with yet another protocol that only half the servers *want* to support, because webAO is so bad that only incompetent players would want to keep using it. (Unless you are a Chromebook player, in which case I am sorry for hurling insults at you.) webAO started off as an experiment by sD, but became real only because I made it real. I was the one who added support for it for tsuserver; I was the one who made the UI vaguely acceptable; I was the one who added a button for it on the home page. It's really my fault that this abomination lives on. I should have learned a legitimate web framework and rewritten it when I had the chance. --- package.json | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'package.json') diff --git a/package.json b/package.json index d72b6f0..7e7b203 100644 --- a/package.json +++ b/package.json @@ -20,11 +20,15 @@ }, "homepage": "https://github.com/stonedDiscord/stonedDiscord.github.io#readme", "devDependencies": { - "@babel/core": "^7.3.4", - "@babel/preset-env": "^7.3.4", - "babel-loader": "^8.0.5", - "webpack": "^4.29.6", - "webpack-cli": "^3.3.0" + "@babel/core": "^7.4.5", + "@babel/preset-env": "^7.4.5", + "babel-loader": "^8.0.6", + "eslint": "^6.0.1", + "webpack": "^4.35.2", + "webpack-cli": "^3.3.5" }, - "dependencies": {} + "dependencies": { + "core-js": "^3.1.4", + "regenerator-runtime": "^0.13.2" + } } -- cgit From 1ff53d9aed85aa31aafcbb72a00fc5f7eb761374 Mon Sep 17 00:00:00 2001 From: oldmud0 Date: Mon, 1 Jul 2019 22:58:47 -0500 Subject: Ugh! It lives! --- package.json | 1 + 1 file changed, 1 insertion(+) (limited to 'package.json') diff --git a/package.json b/package.json index 7e7b203..57d6ba8 100644 --- a/package.json +++ b/package.json @@ -24,6 +24,7 @@ "@babel/preset-env": "^7.4.5", "babel-loader": "^8.0.6", "eslint": "^6.0.1", + "golden-layout": "^1.5.9", "webpack": "^4.35.2", "webpack-cli": "^3.3.5" }, -- cgit