aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/highlighting.ts
diff options
context:
space:
mode:
authorbjorn3 <[email protected]>2020-02-01 12:39:04 +0000
committerbjorn3 <[email protected]>2020-02-01 12:39:04 +0000
commit5c39311f9639543fe1dd2a67ec5aff757bb830eb (patch)
tree08568d061daf9a100631374743fdb747a16bd02b /editors/code/src/highlighting.ts
parentf4431d2acc8e5dd25ed41c0c8af97050a7a230d1 (diff)
Fix seedrandom in packaged extension
Fixes #2971
Diffstat (limited to 'editors/code/src/highlighting.ts')
-rw-r--r--editors/code/src/highlighting.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/editors/code/src/highlighting.ts b/editors/code/src/highlighting.ts
index 014e96f75..fc7cd5a1c 100644
--- a/editors/code/src/highlighting.ts
+++ b/editors/code/src/highlighting.ts
@@ -1,7 +1,6 @@
1import * as vscode from 'vscode'; 1import * as vscode from 'vscode';
2import * as lc from 'vscode-languageclient'; 2import * as lc from 'vscode-languageclient';
3import * as seedrandom_ from 'seedrandom'; 3import seedrandom from 'seedrandom';
4const seedrandom = seedrandom_; // https://github.com/jvandemo/generator-angular2-library/issues/221#issuecomment-355945207
5 4
6import { ColorTheme, TextMateRuleSettings } from './color_theme'; 5import { ColorTheme, TextMateRuleSettings } from './color_theme';
7 6