-
Notifications
You must be signed in to change notification settings - Fork 177
Remix encoding fix #665
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Remix encoding fix #665
Changes from 51 commits
Commits
Show all changes
60 commits
Select commit
Hold shift + click to select a range
27ebf04
Before running with prettier
CoveMB 7c7828e
After running with prettier
CoveMB ce5fcd3
Add consistent-type-imports rule
CoveMB 3cd0b59
Add lint step in ci action
CoveMB 31f0c78
resolve prettier conflict
CoveMB 365421b
After running with prettier
CoveMB cedaeaa
resolve prettier conflict
CoveMB 98bd8af
Add lint step in ci action
CoveMB a9098d0
resolve prettier conflict
CoveMB 6e9df26
resolve prettier conflict
CoveMB 574a739
Remove .vscode directory from Git tracking
CoveMB c0e9002
move linter action in it's own job
CoveMB 86c65dc
add lint note in readme
CoveMB a1111d3
Update .github/workflows/test.yml
CoveMB abbd5a4
Merge remote-tracking branch 'upstream/master'
CoveMB beffa34
Merge branch 'master' into master
ericglau d6bec2a
lint script files
CoveMB 315b775
Merge branch 'master' of github.com:CoveMB/contracts-wizard
CoveMB 6ed6e4f
Merge remote-tracking branch 'upstream/master'
CoveMB ea90cd1
Merge remote-tracking branch 'upstream/master'
CoveMB abf687a
Merge remote-tracking branch 'upstream/master'
CoveMB 426b62d
Merge remote-tracking branch 'upstream/master'
CoveMB ea25cc1
Merge remote-tracking branch 'upstream/master'
CoveMB 0911f87
Merge remote-tracking branch 'upstream/master'
CoveMB 4914083
Merge remote-tracking branch 'upstream/master'
CoveMB 5ce527f
Merge remote-tracking branch 'upstream/master'
CoveMB 03a32fc
Merge remote-tracking branch 'upstream/master'
CoveMB b3c0347
Merge remote-tracking branch 'upstream/master'
CoveMB 0a52a65
Merge remote-tracking branch 'upstream/master'
CoveMB 9e74342
Merge remote-tracking branch 'upstream/master'
CoveMB d727f51
Merge remote-tracking branch 'upstream/master'
CoveMB 60fb18f
Merge remote-tracking branch 'upstream/master'
CoveMB cbb7631
Merge remote-tracking branch 'upstream/master'
CoveMB 0f1267f
Merge remote-tracking branch 'upstream/master'
CoveMB acc5e6e
Merge remote-tracking branch 'upstream/master'
CoveMB e3b74c8
Merge remote-tracking branch 'upstream/master'
CoveMB 16ba867
Merge remote-tracking branch 'upstream/master'
CoveMB 10442ac
Merge remote-tracking branch 'upstream/master'
CoveMB f3d5bea
Merge remote-tracking branch 'upstream/master'
CoveMB 4427128
Merge remote-tracking branch 'upstream/master'
CoveMB e4734df
Merge remote-tracking branch 'upstream/master'
CoveMB 52bd1e0
Merge remote-tracking branch 'upstream/master'
CoveMB 0de594f
Merge branch 'master' of github.com:CoveMB/contracts-wizard
CoveMB 5bac310
Merge remote-tracking branch 'upstream/master'
CoveMB 63a50d5
Merge remote-tracking branch 'upstream/master'
CoveMB a10f142
Merge remote-tracking branch 'upstream/master'
CoveMB 8a4840e
Merge remote-tracking branch 'upstream/master'
CoveMB a1e9c0b
Update remix code param encoding
CoveMB 5b531a5
Add test case for remixUrl
CoveMB 6933f06
Merge branch 'master' into remix-encoding-fix
CoveMB d72435f
Merge branch 'master' into remix-encoding-fix
CoveMB 3d6799d
Merge branch 'master' into remix-encoding-fix
CoveMB cd47f7c
Use ava for UI tests
CoveMB d4112dc
Use ava for UI tests
CoveMB d2105fb
Merge branch 'master' into remix-encoding-fix
CoveMB 837840b
Add back overrideUrl
CoveMB 89b9f68
Merge branch 'remix-encoding-fix' of github.com:CoveMB/contracts-wiza…
CoveMB f07ee7b
Merge branch 'master' into remix-encoding-fix
CoveMB d8ca4ef
Merge branch 'master' into remix-encoding-fix
ericglau 0c6c047
Merge branch 'master' into remix-encoding-fix
CoveMB File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
import test from 'node:test'; | ||
import assert from 'node:assert/strict'; | ||
import { remixURL } from './remix'; | ||
|
||
// Decoder provided in the prompt | ||
const decodeBase64 = (b64Payload: string) => { | ||
const raw = atob(decodeURIComponent(b64Payload)); | ||
const bytes = Uint8Array.from(raw, (c) => c.charCodeAt(0)); | ||
return new TextDecoder().decode(bytes); | ||
}; | ||
CoveMB marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
||
test('remixURL encodes code param decodable by decodeBase64', () => { | ||
const contractSource = 'contract A{}'; | ||
|
||
const url = remixURL(contractSource); | ||
const codeParam = url.searchParams.get('code'); | ||
assert.ok(codeParam, 'Expected code search param to be set'); | ||
|
||
const decoded = decodeBase64(codeParam!); | ||
assert.equal(decoded, contractSource, 'Decoded code should equal original source'); | ||
}); | ||
|
||
test('remixURL sets deployProxy flag when upgradeable', () => { | ||
const contractSource = 'contract A{}'; | ||
|
||
const urlTrue = remixURL(contractSource, true); | ||
assert.equal(urlTrue.searchParams.get('deployProxy'), 'true'); | ||
|
||
const urlFalse = remixURL(contractSource, false); | ||
assert.equal(urlFalse.searchParams.get('deployProxy'), null); | ||
}); | ||
|
||
test('remixURL encodes code param with special characters decodable by decodeBase64', () => { | ||
const contractSource = `// SPDX-License-Identifier: MIT | ||
// Compatible with OpenZeppelin Contracts ^5.4.0 | ||
ericglau marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
pragma solidity ^0.8.27; | ||
import {AbstractSigner} from "@openzeppelin/contracts/utils/cryptography/signers/AbstractSigner.sol"; | ||
import {Account} from "@openzeppelin/contracts/account/Account.sol"; | ||
import {AccountERC7579} from "@openzeppelin/contracts/account/extensions/draft-AccountERC7579.sol"; | ||
import {EIP712} from "@openzeppelin/contracts/utils/cryptography/EIP712.sol"; | ||
import {ERC1155Holder} from "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol"; | ||
import {ERC721Holder} from "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol"; | ||
import {ERC7739} from "@openzeppelin/contracts/utils/cryptography/signers/draft-ERC7739.sol"; | ||
import {PackedUserOperation} from "@openzeppelin/contracts/interfaces/draft-IERC4337.sol"; | ||
import {SignerECDSA} from "@openzeppelin/contracts/utils/cryptography/signers/SignerECDSA.sol"; | ||
contract MyAccount is Account, EIP712, ERC7739, AccountERC7579, SignerECDSA, ERC721Holder, ERC1155Holder { | ||
constructor(address signer) | ||
EIP712(unicode"MyAccount🌾", "1") | ||
SignerECDSA(signer) | ||
{} | ||
function isValidSignature(bytes32 hash, bytes calldata signature) | ||
public | ||
view | ||
override(AccountERC7579, ERC7739) | ||
returns (bytes4) | ||
{ | ||
// ERC-7739 can return the ERC-1271 magic value, 0xffffffff (invalid) or 0x77390001 (detection). | ||
// If the returned value is 0xffffffff, fallback to ERC-7579 validation. | ||
bytes4 erc7739magic = ERC7739.isValidSignature(hash, signature); | ||
return erc7739magic == bytes4(0xffffffff) ? AccountERC7579.isValidSignature(hash, signature) : erc7739magic; | ||
} | ||
// The following functions are overrides required by Solidity. | ||
function _validateUserOp(PackedUserOperation calldata userOp, bytes32 userOpHash) | ||
internal | ||
override(Account, AccountERC7579) | ||
returns (uint256) | ||
{ | ||
return super._validateUserOp(userOp, userOpHash); | ||
} | ||
// IMPORTANT: Make sure SignerECDSA is most derived than AccountERC7579 | ||
// in the inheritance chain (i.e. contract ... is AccountERC7579, ..., SignerECDSA) | ||
// to ensure the correct order of function resolution. | ||
// AccountERC7579 returns false for _rawSignatureValidation | ||
function _rawSignatureValidation(bytes32 hash, bytes calldata signature) | ||
internal | ||
view | ||
override(SignerECDSA, AbstractSigner, AccountERC7579) | ||
returns (bool) | ||
{ | ||
return super._rawSignatureValidation(hash, signature); | ||
} | ||
}`; | ||
|
||
const url = remixURL(contractSource); | ||
const codeParam = url.searchParams.get('code'); | ||
assert.ok(codeParam, 'Expected code search param to be set'); | ||
|
||
const decoded = decodeBase64(codeParam!); | ||
assert.equal(decoded, contractSource, 'Decoded code should equal original source'); | ||
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -246,6 +246,136 @@ | |
dependencies: | ||
"@jridgewell/trace-mapping" "0.3.9" | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.10.tgz#ee6b7163a13528e099ecf562b972f2bcebe0aa97" | ||
integrity sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.10.tgz#115fc76631e82dd06811bfaf2db0d4979c16e2cb" | ||
integrity sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.10.tgz#8d5811912da77f615398611e5bbc1333fe321aa9" | ||
integrity sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.10.tgz#e3e96516b2d50d74105bb92594c473e30ddc16b1" | ||
integrity sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.10.tgz#6af6bb1d05887dac515de1b162b59dc71212ed76" | ||
integrity sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.10.tgz#99ae82347fbd336fc2d28ffd4f05694e6e5b723d" | ||
integrity sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.10.tgz#0c6d5558a6322b0bdb17f7025c19bd7d2359437d" | ||
integrity sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.10.tgz#8c35873fab8c0857a75300a3dcce4324ca0b9844" | ||
integrity sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.10.tgz#3edc2f87b889a15b4cedaf65f498c2bed7b16b90" | ||
integrity sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.10.tgz#86501cfdfb3d110176d80c41b27ed4611471cde7" | ||
integrity sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.10.tgz#e6589877876142537c6864680cd5d26a622b9d97" | ||
integrity sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.10.tgz#11119e18781f136d8083ea10eb6be73db7532de8" | ||
integrity sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.10.tgz#3052f5436b0c0c67a25658d5fc87f045e7def9e6" | ||
integrity sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.10.tgz#2f098920ee5be2ce799f35e367b28709925a8744" | ||
integrity sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.10.tgz#fa51d7fd0a22a62b51b4b94b405a3198cf7405dd" | ||
integrity sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.10.tgz#a27642e36fc282748fdb38954bd3ef4f85791e8a" | ||
integrity sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.10.tgz#9d9b09c0033d17529570ced6d813f98315dfe4e9" | ||
integrity sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.10.tgz#25c09a659c97e8af19e3f2afd1c9190435802151" | ||
integrity sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.10.tgz#7fa5f6ffc19be3a0f6f5fd32c90df3dc2506937a" | ||
integrity sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.10.tgz#8faa6aa1afca0c6d024398321d6cb1c18e72a1c3" | ||
integrity sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.10.tgz#a42979b016f29559a8453d32440d3c8cd420af5e" | ||
integrity sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.10.tgz#fd87bfeadd7eeb3aa384bbba907459ffa3197cb1" | ||
integrity sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.10.tgz#3a18f590e36cb78ae7397976b760b2b8c74407f4" | ||
integrity sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.10.tgz#e71741a251e3fd971408827a529d2325551f530c" | ||
integrity sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.10.tgz#c6f010b5d3b943d8901a0c87ea55f93b8b54bf94" | ||
integrity sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.10.tgz#e4b3e255a1b4aea84f6e1d2ae0b73f826c3785bd" | ||
integrity sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw== | ||
|
||
"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.7.0": | ||
version "4.7.0" | ||
resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz#607084630c6c033992a082de6e6fbc1a8b52175a" | ||
|
@@ -2533,6 +2663,38 @@ es6-promise@^3.1.2: | |
resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" | ||
integrity sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg== | ||
|
||
esbuild@~0.25.0: | ||
version "0.25.10" | ||
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.10.tgz#37f5aa5cd14500f141be121c01b096ca83ac34a9" | ||
integrity sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ== | ||
optionalDependencies: | ||
"@esbuild/aix-ppc64" "0.25.10" | ||
"@esbuild/android-arm" "0.25.10" | ||
"@esbuild/android-arm64" "0.25.10" | ||
"@esbuild/android-x64" "0.25.10" | ||
"@esbuild/darwin-arm64" "0.25.10" | ||
"@esbuild/darwin-x64" "0.25.10" | ||
"@esbuild/freebsd-arm64" "0.25.10" | ||
"@esbuild/freebsd-x64" "0.25.10" | ||
"@esbuild/linux-arm" "0.25.10" | ||
"@esbuild/linux-arm64" "0.25.10" | ||
"@esbuild/linux-ia32" "0.25.10" | ||
"@esbuild/linux-loong64" "0.25.10" | ||
"@esbuild/linux-mips64el" "0.25.10" | ||
"@esbuild/linux-ppc64" "0.25.10" | ||
"@esbuild/linux-riscv64" "0.25.10" | ||
"@esbuild/linux-s390x" "0.25.10" | ||
"@esbuild/linux-x64" "0.25.10" | ||
"@esbuild/netbsd-arm64" "0.25.10" | ||
"@esbuild/netbsd-x64" "0.25.10" | ||
"@esbuild/openbsd-arm64" "0.25.10" | ||
"@esbuild/openbsd-x64" "0.25.10" | ||
"@esbuild/openharmony-arm64" "0.25.10" | ||
"@esbuild/sunos-x64" "0.25.10" | ||
"@esbuild/win32-arm64" "0.25.10" | ||
"@esbuild/win32-ia32" "0.25.10" | ||
"@esbuild/win32-x64" "0.25.10" | ||
|
||
escalade@^3.1.1, escalade@^3.2.0: | ||
version "3.2.0" | ||
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" | ||
|
@@ -3003,7 +3165,7 @@ fs.realpath@^1.0.0: | |
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" | ||
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== | ||
|
||
fsevents@~2.3.2: | ||
fsevents@~2.3.2, fsevents@~2.3.3: | ||
version "2.3.3" | ||
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" | ||
integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== | ||
|
@@ -3052,6 +3214,13 @@ get-proto@^1.0.0, get-proto@^1.0.1: | |
dunder-proto "^1.0.1" | ||
es-object-atoms "^1.0.0" | ||
|
||
get-tsconfig@^4.7.5: | ||
version "4.10.1" | ||
resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.10.1.tgz#d34c1c01f47d65a606c37aa7a177bc3e56ab4b2e" | ||
integrity sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ== | ||
dependencies: | ||
resolve-pkg-maps "^1.0.0" | ||
|
||
glob-parent@^5.1.2, glob-parent@~5.1.2: | ||
version "5.1.2" | ||
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" | ||
|
@@ -5098,6 +5267,11 @@ resolve-from@^5.0.0: | |
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" | ||
integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== | ||
|
||
resolve-pkg-maps@^1.0.0: | ||
version "1.0.0" | ||
resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f" | ||
integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw== | ||
|
||
resolve.exports@^2.0.0: | ||
version "2.0.3" | ||
resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.3.tgz#41955e6f1b4013b7586f873749a635dea07ebe3f" | ||
|
@@ -5969,6 +6143,16 @@ [email protected]: | |
resolved "https://registry.yarnpkg.com/tsort/-/tsort-0.0.1.tgz#e2280f5e817f8bf4275657fd0f9aebd44f5a2786" | ||
integrity sha512-Tyrf5mxF8Ofs1tNoxA13lFeZ2Zrbd6cKbuH3V+MQ5sb6DtBj5FjrXVsRWT8YvNAQTqNoz66dz1WsbigI22aEnw== | ||
|
||
tsx@^4.19.2: | ||
version "4.20.5" | ||
resolved "https://registry.yarnpkg.com/tsx/-/tsx-4.20.5.tgz#856c8b2f114c50a9f4ae108126967a167f240dc7" | ||
integrity sha512-+wKjMNU9w/EaQayHXb7WA7ZaHY6hN8WgfvHNQ3t1PnU91/7O8TcTnIhCDYTZwnt8JsO9IBqZ30Ln1r7pPF52Aw== | ||
dependencies: | ||
esbuild "~0.25.0" | ||
get-tsconfig "^4.7.5" | ||
optionalDependencies: | ||
fsevents "~2.3.3" | ||
|
||
type-check@^0.4.0, type-check@~0.4.0: | ||
version "0.4.0" | ||
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.