mirror of
https://github.com/hexedtech/codemp-vscode.git
synced 2024-11-22 15:34:49 +01:00
new napi vers and op_cache imports fixed
This commit is contained in:
parent
e0cb9fb464
commit
ec8148cc0e
3 changed files with 3 additions and 2 deletions
|
@ -61,7 +61,7 @@
|
|||
"bundle": "vsce package"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@napi-rs/cli": "^1.0.0",
|
||||
"@napi-rs/cli": "^2.16.3",
|
||||
"@types/mocha": "^10.0.1",
|
||||
"@types/node": "16.x",
|
||||
"@types/vscode": "^1.81.0",
|
||||
|
@ -74,7 +74,6 @@
|
|||
"typescript": "^5.1.6"
|
||||
},
|
||||
"dependencies": {
|
||||
"@napi-rs/cli": "^2.16.3",
|
||||
"@vscode/vsce": "^2.22.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@ pub mod client;
|
|||
pub mod workspace;
|
||||
pub mod cursor;
|
||||
pub mod buffer;
|
||||
pub mod op_cache;
|
||||
|
||||
#[derive(Debug)]
|
||||
struct JsCodempError(codemp::Error);
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
use std::collections::HashSet;
|
||||
use napi_derive::napi;
|
||||
|
||||
pub type OpTuple = (String, u32, String, u32);
|
||||
|
||||
|
|
Loading…
Reference in a new issue