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
Binary file added .yarn/install-state.gz
Binary file not shown.
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@
"typescript": "^4.5.5"
},
"dependencies": {
"@types/linkify-it": "^3.0.5",
"markdown-it": "^13.0.0"
}
}
1 change: 1 addition & 0 deletions src/test/suite/changeTodo.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const assertTodoStateAtLine = (editor: vscode.TextEditor, lineNumber: number, ex

describe('change TODO functions', function () {
let editor: vscode.TextEditor;

beforeEach(async function () {
editor = await helpers.openExample('todos.md');
});
Expand Down
1 change: 1 addition & 0 deletions src/test/suite/gotoHeader.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import * as helpers from '../helpers';

describe('goto header functions', function () {
let editor: vscode.TextEditor;

before(async function () {
editor = await helpers.openExample('simple.md', { lineNumber: 23 });
});
Expand Down
1 change: 1 addition & 0 deletions src/test/suite/sortDoneToBottom.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ describe('sorting', function () {
const expectedSortedText = expectedSortedTextBuffer.toString();
assert.strictEqual(fullText, expectedSortedText);
});

it('should sort the DONEs in another-sortable.md to the bottom', async function () {
const editor = await helpers.openExample('another-sortable.md');
await vscode.commands.executeCommand('markdown-worklogs.sortDoneToBottom');
Expand Down
4,187 changes: 2,742 additions & 1,445 deletions yarn.lock

Large diffs are not rendered by default.

Loading