Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules
dist
docs
docs2
src/pages/*.vim
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
"scripts": {
"dev": "vite",
"eslint": "eslint --ext .js,.ts,.tsx src --fix",
"documentation": "typedoc --entryPoints src/vim-web/index.ts --entryPointStrategy expand --out docs --excludeProtected --excludeExternals --excludePrivate",
"documentation": "typedoc --entryPoints src/vim-web/index.ts --entryPointStrategy expand --out docs2 --excludeProtected --excludeExternals --excludePrivate",
"declarations": "tsc --project tsconfig.json --declaration --emitDeclarationOnly --outdir ./dist/types",
"build": "vite build --config vite.config.js && npm run declarations",
"package": "npm run build && npm publish",
"publish:package": "npm run build && npm publish",
"publish:documentation": "npm run documentation && gh-pages -d docs",
"publ ish:documentation": "npm run documentation && gh-pages -d docs2",
"publish": "npm run publish:package && npm run publish:documentation"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/vim-web/core-viewers/ultra/rpcClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ return this._socket.state.status === "connected"
this._socket = _socket
}
// RPC Generated Code
readonly API_VERSION = "5.1.0"
readonly API_VERSION = "6.0.0"

RPCAddNodeFlags(componentHandle: number, nodes: number[], flags: number): void {
const marshal = new Marshal();
Expand Down