Skip to content

Commit

Permalink
build: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
j4k0xb committed Oct 27, 2024
1 parent ffc3bf6 commit 80e1909
Show file tree
Hide file tree
Showing 9 changed files with 802 additions and 622 deletions.
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"devDependencies": {
"@webcrack/eslint-config": "workspace:*",
"@webcrack/typescript-config": "workspace:*",
"typescript": "^5.5.4",
"typescript": "^5.6.3",
"vitepress": "1.0.0-rc.31"
}
}
20 changes: 10 additions & 10 deletions apps/playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,26 @@
},
"devDependencies": {
"@types/babel__generator": "^7.6.8",
"@types/node": "^20.15.0",
"@types/node": "^22.8.1",
"@webcrack/eslint-config": "workspace:*",
"@webcrack/typescript-config": "workspace:*",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.10",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"vite": "^5.4.1",
"daisyui": "^4.12.13",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-monaco-editor": "^1.1.0",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-solid": "^2.10.2"
},
"dependencies": {
"@babel/generator": "^7.25.0",
"@babel/types": "^7.25.2",
"@babel/generator": "^7.26.0",
"@babel/types": "^7.26.0",
"idb": "^8.0.0",
"monaco-editor": "^0.50.0",
"monaco-editor": "^0.52.0",
"sandybox": "^1.1.2",
"solid-js": "^1.8.21",
"solid-js": "^1.9.3",
"webcrack": "workspace:*"
}
}
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@vitest/coverage-istanbul": "^2.0.5",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/coverage-istanbul": "^2.1.3",
"@vitest/coverage-v8": "^2.1.3",
"@webcrack/eslint-config": "workspace:*",
"eslint": "^9.9.0",
"eslint": "^9.13.0",
"prettier": "^3.3.3",
"turbo": "^2.0.14",
"vitest": "^2.0.5"
"turbo": "^2.2.3",
"vitest": "^2.1.3"
},
"packageManager": "pnpm@9.7.1+sha512.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247",
"packageManager": "pnpm@9.12.2",
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
Expand Down
20 changes: 10 additions & 10 deletions packages/webcrack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@
"unbundle"
],
"dependencies": {
"@babel/generator": "^7.25.0",
"@babel/helper-validator-identifier": "^7.24.7",
"@babel/parser": "^7.25.3",
"@babel/template": "^7.25.0",
"@babel/traverse": "^7.25.3",
"@babel/types": "^7.25.2",
"@babel/generator": "^7.26.0",
"@babel/helper-validator-identifier": "^7.25.9",
"@babel/parser": "^7.26.1",
"@babel/template": "^7.25.9",
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.26.0",
"@codemod/matchers": "^1.7.1",
"commander": "^12.1.0",
"debug": "^4.3.6",
"debug": "^4.3.7",
"isolated-vm": "^5.0.1"
},
"devDependencies": {
Expand All @@ -57,10 +57,10 @@
"@types/babel__template": "^7.4.4",
"@types/babel__traverse": "^7.20.6",
"@types/debug": "^4.1.12",
"@types/node": "^20.15.0",
"@types/node": "^22.8.1",
"@webcrack/eslint-config": "workspace:*",
"@webcrack/typescript-config": "workspace:*",
"esbuild": "^0.23.0",
"typescript": "^5.5.4"
"esbuild": "^0.24.0",
"typescript": "^5.6.3"
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
function hi() {
console.log( /*webcrack:decode_error*/undefined);
console.log(/*webcrack:decode_error*/undefined);
}
hi();
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

function hi() {
console.log("Hello World!");
console.log( /*webcrack:decode_error*/undefined);
console.log( /*webcrack:decode_error*/undefined);
console.log(/*webcrack:decode_error*/undefined);
console.log(/*webcrack:decode_error*/undefined);
const p = true;
console.log(p ? "log" : "Hello World!");
}
Expand Down
2 changes: 1 addition & 1 deletion packages/webcrack/src/unminify/test/sequence.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ test('dont rearrange from do-while', () =>
expectJS(`
do {} while (a(), b());
`).toMatchInlineSnapshot(`
do {} while ((a(), b()));
do {} while (a(), b());
`));

test('rearrange variable declarator', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ WebpackBundle {
"modules": Map {
"2wwy" => WebpackModule {
"ast": const a = require("./E8gZ.js");
const b = require( /*webcrack:missing*/"./w6GO.js");,
const b = require(/*webcrack:missing*/"./w6GO.js");,
"id": "2wwy",
"isEntry": false,
"path": "./2wwy.js",
Expand Down
Loading

0 comments on commit 80e1909

Please sign in to comment.