chore: upgrade deps

This commit is contained in:
Dylan Piercey 2023-06-13 09:00:26 -07:00 committed by Dylan Piercey
parent 4c19cf3419
commit d811dbd87d
5 changed files with 704 additions and 517 deletions

1200
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -21,18 +21,17 @@
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@marko/compiler": "^5.27.10",
"@marko/compiler": "^5.28.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-virtual": "^3.0.1",
"@types/jsdom": "^21.1.1",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.5",
"@types/rollup": "^0.54.0",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"c8": "^7.14.0",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"c8": "^8.0.0",
"chalk": "^5.2.0",
"esbuild": "^0.17.19",
"esbuild": "^0.18.2",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
@ -45,7 +44,7 @@
"mocha-snap": "^5.0.0",
"prettier": "^2.8.8",
"pretty-format": "^29.5.0",
"rollup": "^3.23.1",
"rollup": "^3.25.1",
"sort-package-json": "^2.4.1",
"table": "^6.8.1",
"tiny-glob": "^0.2.9",

View File

@ -1 +1 @@
packages/translator/src/__tests__/fixtures/style-tag-type-conflict/template.marko: <style> must only use "type" or "class" and not both.
packages/translator/src/__tests__/fixtures/style-tag-type-conflict/template.marko: <style> must only use "type" or "class" and not both.

View File

@ -1 +1 @@
packages/translator/src/__tests__/fixtures/style-tag-type-conflict/template.marko: <style> must only use "type" or "class" and not both.
packages/translator/src/__tests__/fixtures/style-tag-type-conflict/template.marko: <style> must only use "type" or "class" and not both.

View File

@ -86,7 +86,7 @@ describe("translator", () => {
try {
const name = path
.relative(fixtureDir, file)
.replace(".marko", ".js");
.replace(".marko", config.error_compiler ? ".error.txt" : ".js");
await targetSnap(() => compileCode(file, finalConfig), {
file: name,
dir: fixtureDir,