Skip to content

Commit 9b07b46

Browse files
kyubisationclydin
authored andcommitted
refactor(@angular-devkit/schematics): remove UpdateBuffer and rename UpdateBuffer2 to UpdateBuffer
This PR removes the internally built `UpdateBuffer` and renames `UpdateBuffer2` (based on magic-string) to `UpdateBuffer`. This should have little to no impact for consumers. BREAKING CHANGE: The depracated `UpdateBuffer` has been removed and `UpdateBuffer2` is renamed to `UpdateBuffer`. With this change the related and deprecated symbols `ContentCannotBeRemovedException` and `Chunk` have also been removed.
1 parent f2a0682 commit 9b07b46

File tree

5 files changed

+11
-603
lines changed

5 files changed

+11
-603
lines changed

packages/angular_devkit/schematics/src/tree/recorder_spec.ts

-6
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
*/
88

99
import { normalize } from '@angular-devkit/core';
10-
import { UpdateBuffer2, UpdateBufferBase } from '../utility/update-buffer';
1110
import { SimpleFileEntry } from './entry';
1211
import { UpdateRecorderBase, UpdateRecorderBom } from './recorder';
1312

@@ -36,11 +35,6 @@ describe('UpdateRecorderBase', () => {
3635
const buffer = Buffer.from('Hello beautiful World');
3736
const entry = new SimpleFileEntry(normalize('/some/path'), buffer);
3837

39-
// TODO: Remove once UpdateBufferBase.create defaults to UpdateBuffer2
40-
spyOn(UpdateBufferBase, 'create').and.callFake(
41-
(originalContent) => new UpdateBuffer2(originalContent),
42-
);
43-
4438
const recorder = new UpdateRecorderBase(entry);
4539
recorder.remove(6, 9);
4640
recorder.insertRight(6, 'amazing');

packages/angular_devkit/schematics/src/utility/environment-options.ts

-20
This file was deleted.

packages/angular_devkit/schematics/src/utility/linked-list.ts

-72
This file was deleted.

0 commit comments

Comments
 (0)