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:
parent
69e38237f8
commit
f5d2c654fc
1118
package-lock.json
generated
1118
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
12
package.json
12
package.json
@ -10,13 +10,13 @@
|
||||
},
|
||||
"license": "GPL-3.0",
|
||||
"dependencies": {
|
||||
"@types/dompurify": "^2.3.4",
|
||||
"@types/dompurify": "^3.0.5",
|
||||
"@types/emscripten": "^1.39.5",
|
||||
"atob": "^2.1.x",
|
||||
"binaryen": "^101.0.0",
|
||||
"btoa": "^1.2.x",
|
||||
"clipboard": "^2.0.6",
|
||||
"dompurify": "^2.4.0",
|
||||
"dompurify": "^3.1.7",
|
||||
"file-saver": "^2.0.5",
|
||||
"jquery": "^3.6.3",
|
||||
"jszip": "^3.7.0",
|
||||
@ -31,8 +31,8 @@
|
||||
"@types/expect": "^24.3.0",
|
||||
"@types/file-saver": "^2.0.3",
|
||||
"@types/jquery": "^3.5.5",
|
||||
"@types/mocha": "^9.1.0",
|
||||
"@types/node": "^14.14.20",
|
||||
"@types/mocha": "^10.0.8",
|
||||
"@types/node": "^22.7.4",
|
||||
"bootstrap": "^3.4.1",
|
||||
"bootstrap-tourist": "^0.2.1",
|
||||
"command-exists": "^1.2.9",
|
||||
@ -40,9 +40,9 @@
|
||||
"esbuild": "^0.12.29",
|
||||
"express": "^4.18.2",
|
||||
"fast-png": "^5.0.4",
|
||||
"jsdom": "^21.1.0",
|
||||
"jsdom": "^25.0.1",
|
||||
"lzg": "^1.0.x",
|
||||
"mocha": "^9.2.0",
|
||||
"mocha": "^10.7.3",
|
||||
"mocha-simple-html-reporter": "^2.0.0",
|
||||
"typescript": "^5.2.2",
|
||||
"typescript-formatter": "^7.2.2"
|
||||
|
@ -259,7 +259,7 @@ export function compileSilice(step: BuildStep): BuildStepResult {
|
||||
if (staleFiles(step, [destpath])) {
|
||||
//[preprocessor] 97] attempt to concatenate a nil value (global 'addrW')
|
||||
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 ml = /line:\s+(\d+)/.exec(s);
|
||||
var preproc = /\[preprocessor\] (\d+)\] (.+)/.exec(s);
|
||||
|
@ -40,13 +40,13 @@ exports['test embed IDE in iframe'] = function(browser) {
|
||||
.waitForElementVisible('#emuscreen')
|
||||
.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('#error_alert')
|
||||
.waitForElementVisible('#emuscreen')
|
||||
.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('#error_alert')
|
||||
.waitForElementVisible('#emuscreen')
|
||||
|
Loading…
Reference in New Issue
Block a user