Skip to content

Commit

Permalink
(#85) Remove redundant extension to webview messages
Browse files Browse the repository at this point in the history
  • Loading branch information
mario4tier committed Apr 29, 2024
1 parent 3f78cf5 commit 456959e
Show file tree
Hide file tree
Showing 20 changed files with 2,184 additions and 289 deletions.
14 changes: 7 additions & 7 deletions rust/demo-app/move/Move.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[move]
version = 1
manifest_digest = "99A2707BE9E2291561C863B1EDEB5A85A208B564A99B37B6CD77EECD4B77ADD5"
manifest_digest = "D709415505E68A022612B74B374F85067240DDF5CA0768C210BF0F4F3D6CA340"
deps_digest = "3C4103934B1E040BB6B23F1D610B4EF9F2F1166A50A104EADCF77467C004C600"
dependencies = [
{ name = "Log" },
Expand Down Expand Up @@ -30,7 +30,7 @@ dependencies = [
]

[move.toolchain-version]
compiler-version = "1.23.0"
compiler-version = "1.24.0"
edition = "2024.beta"
flavor = "sui"

Expand All @@ -42,13 +42,13 @@ flavor = "sui"
test = 12

[env.localnet_proxy]
chain-id = "599ba668"
original-published-id = "0x4fc94af2a4f1982f56ad734a50b8df98cbf7e45553e0dbb475daab6cd0ab5436"
latest-published-id = "0x4fc94af2a4f1982f56ad734a50b8df98cbf7e45553e0dbb475daab6cd0ab5436"
chain-id = "a88de774"
original-published-id = "0xbcf1c7861cdf5a5eed050ed8990b4fea9e39c365561f033c3d532f3b739e9553"
latest-published-id = "0xbcf1c7861cdf5a5eed050ed8990b4fea9e39c365561f033c3d532f3b739e9553"
published-version = "1"

[env.testnet_proxy]
chain-id = "4c78adac"
original-published-id = "0xb7f03f869344fc7359bc709b54f923e581c9d1ceb8bbfc673dab182d7b3f50a0"
latest-published-id = "0xb7f03f869344fc7359bc709b54f923e581c9d1ceb8bbfc673dab182d7b3f50a0"
original-published-id = "0xef405927dc2f3885f6014be1f32e41a77e77132446b7ed62c9ff62f719cd483e"
latest-published-id = "0xef405927dc2f3885f6014be1f32e41a77e77132446b7ed62c9ff62f719cd483e"
published-version = "1"
15 changes: 11 additions & 4 deletions typescript/vscode-extension/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,20 @@
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
"ecmaVersion": "latest",
"sourceType": "module",
"project": ["./tsconfig.json", "./tsconfig.node.json"],
"tsconfigRootDir": "__dirname"
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:@typescript-eslint/recommended-type-checked",
"plugin:@typescript-eslint/stylistic-type-checked",
"plugin:react/recommended",
"plugin:react/jsx-runtime"
],
"rules": {
"@typescript-eslint/naming-convention": "warn",
"@typescript-eslint/semi": "warn",
Expand All @@ -19,7 +27,6 @@
"ignorePatterns": [
"out",
"dist",
"**/*.d.ts",
"webview-ui/**"
"**/*.d.ts"
]
}
71 changes: 0 additions & 71 deletions typescript/vscode-extension/README.md

This file was deleted.

1 change: 1 addition & 0 deletions typescript/vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
"@typescript-eslint/parser": "^6.21.0",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"glob": "^10.3.12",
"mocha": "^10.4.0",
"typescript": "^5.4.5"
Expand Down
Loading

0 comments on commit 456959e

Please sign in to comment.