Skip to content
This repository was archived by the owner on Apr 16, 2026. It is now read-only.
Closed
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

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Binary file not shown.
98 changes: 49 additions & 49 deletions src/interactive_interface/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 src/interactive_interface/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"author": "Mohammad Pedramfar",
"license": "Apache-2.0",
"dependencies": {
"@bryangingechen/lean-client-js-browser": "^1.4.0",
"lean-client-js-browser": "^3.0.0",
"@types/node": "^12.12.36",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
Expand Down
4 changes: 2 additions & 2 deletions src/interactive_interface/src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// <reference types="monaco-editor" />
import { InfoRecord, LeanJsOpts, Message } from '@bryangingechen/lean-client-js-browser';
import { InfoRecord, LeanJsOpts, Message } from 'lean-client-js-browser';
import * as React from 'react';
import { findDOMNode, render } from 'react-dom';
import { allMessages, checkInputCompletionChange, checkInputCompletionPosition, currentlyRunning, delayMs,
Expand Down Expand Up @@ -1708,4 +1708,4 @@ class PageManager {
}


PageManager.run();
PageManager.run();
2 changes: 1 addition & 1 deletion src/interactive_interface/src/langservice.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// <reference types="monaco-editor" />
import * as lean from '@bryangingechen/lean-client-js-browser';
import * as lean from 'lean-client-js-browser';
import { leanSyntax } from './syntax';
import * as translations from './translations.json';

Expand Down