Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
daoauth committed Dec 29, 2024
1 parent 63dc76f commit 9d32388
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "aptos-extension",
"displayName": "Aptos Extension",
"description": "Supports the compilation, deployment, and testing of Aptos smart contracts, boosting development productivity in GitHub Codespaces. Enables unified management of frontend and backend development within a single repository.",
"version": "0.0.40",
"version": "0.0.39",
"license": "MIT",
"engines": {
"vscode": "^1.95.0"
Expand Down
16 changes: 16 additions & 0 deletions src/webview/activitybar/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions src/webview/activitybar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/crypto-js": "^4.2.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/vscode-webview": "^1.57.5",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useState } from 'react';
import { useState } from 'react';
import {
VSCodeButton,
VSCodeTextField,
Expand Down
3 changes: 2 additions & 1 deletion src/webview/activitybar/src/utilities/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ export const runBuild = (path: string, move2: boolean) => {
return `${COMPILER} move build-publish-payload ${!move2 ? '' : '--move-2'} --package-dir ${path} --json-output-file ${path}/${ByteDump} --assume-yes`;
};

export const runTest = (path: string, move2: boolean) => {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
export const runTest = (path: string, _move2: boolean) => {
return `${COMPILER} move test --skip-fetch-latest-git-deps --package-dir ${path}`;
};

Expand Down
3 changes: 2 additions & 1 deletion src/webview/activitybar/src/utilities/createNonce.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ import {
import { NETWORK } from '../recoil';

export const createNonce = async (
network: NETWORK,
// eslint-disable-next-line @typescript-eslint/no-unused-vars
_network: NETWORK,
): Promise<{
nonce: string;
expiration: number;
Expand Down

0 comments on commit 9d32388

Please sign in to comment.