Skip to content

Commit

Permalink
refactor: change dir name
Browse files Browse the repository at this point in the history
  • Loading branch information
xudafeng committed Feb 6, 2025
1 parent fbc2459 commit 5122f88
Show file tree
Hide file tree
Showing 47 changed files with 24 additions and 362 deletions.
8 changes: 0 additions & 8 deletions mana/packages/mana-common/.eslintrc.js

This file was deleted.

9 changes: 0 additions & 9 deletions mana/packages/mana-common/.fatherrc.ts

This file was deleted.

247 changes: 0 additions & 247 deletions mana/packages/mana-common/CHANGELOG.md

This file was deleted.

1 change: 0 additions & 1 deletion mana/packages/mana-common/README.md

This file was deleted.

3 changes: 0 additions & 3 deletions mana/packages/mana-common/babel.config.json

This file was deleted.

3 changes: 0 additions & 3 deletions mana/packages/mana-common/jest.config.js

This file was deleted.

56 changes: 0 additions & 56 deletions mana/packages/mana-common/package.json

This file was deleted.

11 changes: 0 additions & 11 deletions mana/packages/mana-common/tsconfig.json

This file was deleted.

File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import {
cancelled,
checkCancelled,
isCancelled,
} from './';
import { Deferred } from './';
} from '.';
import { Deferred } from '.';

describe('cancellation', () => {
const waitTime = (number = 100) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Licensed under the MIT License. See https://github.com/Microsoft/vscode/blob/master/LICENSE.txt for license information.
*--------------------------------------------------------------------------------------------*/

import { Event, Emitter } from './event';
import { Event, Emitter } from './src/event.js';

export type CancellationToken = {
readonly isCancellationRequested: boolean;
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Disposable } from './disposable';
import type { Event } from './event';
import { Emitter } from './event';
import type { Event } from './src/event.js';
import { Emitter } from './src/event.js';

export class DisposableCollection implements Disposable {
protected readonly disposables: Disposable[];
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import assert from 'assert';

import { Deferred, Disposable, noop } from './';
import { DisposableCollection } from './';
import { Deferred, Disposable, noop } from '.';
import { DisposableCollection } from '.';

describe('disposable', () => {
it('#Disposable is', () => {
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import assert from 'assert';
import type { Disposable } from '.';
import { noop } from '.';
import { Deferred } from '.';
import { Emitter, Event } from './';
import { Emitter, Event } from '.';

describe('event', () => {
describe('Event', () => {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 5122f88

Please sign in to comment.