1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-11-23 06:32:11 +00:00

npm updated some deps

This commit is contained in:
Steven Hugg 2024-09-28 11:01:10 -05:00
parent 69e38237f8
commit f5d2c654fc
4 changed files with 405 additions and 731 deletions

1118
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -10,13 +10,13 @@
}, },
"license": "GPL-3.0", "license": "GPL-3.0",
"dependencies": { "dependencies": {
"@types/dompurify": "^2.3.4", "@types/dompurify": "^3.0.5",
"@types/emscripten": "^1.39.5", "@types/emscripten": "^1.39.5",
"atob": "^2.1.x", "atob": "^2.1.x",
"binaryen": "^101.0.0", "binaryen": "^101.0.0",
"btoa": "^1.2.x", "btoa": "^1.2.x",
"clipboard": "^2.0.6", "clipboard": "^2.0.6",
"dompurify": "^2.4.0", "dompurify": "^3.1.7",
"file-saver": "^2.0.5", "file-saver": "^2.0.5",
"jquery": "^3.6.3", "jquery": "^3.6.3",
"jszip": "^3.7.0", "jszip": "^3.7.0",
@ -31,8 +31,8 @@
"@types/expect": "^24.3.0", "@types/expect": "^24.3.0",
"@types/file-saver": "^2.0.3", "@types/file-saver": "^2.0.3",
"@types/jquery": "^3.5.5", "@types/jquery": "^3.5.5",
"@types/mocha": "^9.1.0", "@types/mocha": "^10.0.8",
"@types/node": "^14.14.20", "@types/node": "^22.7.4",
"bootstrap": "^3.4.1", "bootstrap": "^3.4.1",
"bootstrap-tourist": "^0.2.1", "bootstrap-tourist": "^0.2.1",
"command-exists": "^1.2.9", "command-exists": "^1.2.9",
@ -40,9 +40,9 @@
"esbuild": "^0.12.29", "esbuild": "^0.12.29",
"express": "^4.18.2", "express": "^4.18.2",
"fast-png": "^5.0.4", "fast-png": "^5.0.4",
"jsdom": "^21.1.0", "jsdom": "^25.0.1",
"lzg": "^1.0.x", "lzg": "^1.0.x",
"mocha": "^9.2.0", "mocha": "^10.7.3",
"mocha-simple-html-reporter": "^2.0.0", "mocha-simple-html-reporter": "^2.0.0",
"typescript": "^5.2.2", "typescript": "^5.2.2",
"typescript-formatter": "^7.2.2" "typescript-formatter": "^7.2.2"

View File

@ -259,7 +259,7 @@ export function compileSilice(step: BuildStep): BuildStepResult {
if (staleFiles(step, [destpath])) { if (staleFiles(step, [destpath])) {
//[preprocessor] 97] attempt to concatenate a nil value (global 'addrW') //[preprocessor] 97] attempt to concatenate a nil value (global 'addrW')
var match_fn = (s: string) => { var match_fn = (s: string) => {
s = (s as any).replaceAll(/\033\[\d+\w/g, ''); s = (s as any).replaceAll(/\x1b\[\d+\w/g, '');
var mf = /file:\s*(\w+)/.exec(s); var mf = /file:\s*(\w+)/.exec(s);
var ml = /line:\s+(\d+)/.exec(s); var ml = /line:\s+(\d+)/.exec(s);
var preproc = /\[preprocessor\] (\d+)\] (.+)/.exec(s); var preproc = /\[preprocessor\] (\d+)\] (.+)/.exec(s);

View File

@ -40,13 +40,13 @@ exports['test embed IDE in iframe'] = function(browser) {
.waitForElementVisible('#emuscreen') .waitForElementVisible('#emuscreen')
.waitForElementVisible('.emuvideo') .waitForElementVisible('.emuvideo')
browser.url(IDEURL + "?embed=1&platform=c64&importURL=/presets/c64/hellobasic.dasm") browser.url(IDEURL + "?embed=1&platform=c64&importURL=/presets/c64/hello.dasm")
.waitForElementNotVisible('#compile_spinner', time=10000) .waitForElementNotVisible('#compile_spinner', time=10000)
.waitForElementNotVisible('#error_alert') .waitForElementNotVisible('#error_alert')
.waitForElementVisible('#emuscreen') .waitForElementVisible('#emuscreen')
.waitForElementVisible('.emuvideo') .waitForElementVisible('.emuvideo')
browser.url(IDEURL + "?embed=1&platform=c64&importURL=/presets/c64/hellobasic.dasm") browser.url(IDEURL + "?embed=1&platform=c64&importURL=/presets/c64/hello.dasm")
.waitForElementNotVisible('#compile_spinner', time=10000) .waitForElementNotVisible('#compile_spinner', time=10000)
.waitForElementNotVisible('#error_alert') .waitForElementNotVisible('#error_alert')
.waitForElementVisible('#emuscreen') .waitForElementVisible('#emuscreen')