@angular-devkit/schematics 16.1.0-next.0 → 16.1.0-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/sink/dryrun.d.ts +0 -1
- package/src/sink/host.d.ts +0 -1
- package/src/sink/sink.d.ts +0 -1
- package/src/tree/action.d.ts +0 -1
- package/src/tree/delegate.d.ts +0 -1
- package/src/tree/entry.d.ts +0 -1
- package/src/tree/host-tree.d.ts +0 -1
- package/src/tree/interface.d.ts +0 -1
- package/src/tree/null.d.ts +0 -1
- package/src/tree/recorder.d.ts +0 -1
- package/src/tree/scoped.d.ts +0 -1
- package/src/utility/update-buffer.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-devkit/schematics",
|
|
3
|
-
"version": "16.1.0-next.
|
|
3
|
+
"version": "16.1.0-next.2",
|
|
4
4
|
"description": "Angular Schematics - Library",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"typings": "src/index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"tooling"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@angular-devkit/core": "16.1.0-next.
|
|
21
|
+
"@angular-devkit/core": "16.1.0-next.2",
|
|
22
22
|
"jsonc-parser": "3.2.0",
|
|
23
23
|
"magic-string": "0.30.0",
|
|
24
24
|
"ora": "5.4.1",
|
package/src/sink/dryrun.d.ts
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
* Use of this source code is governed by an MIT-style license that can be
|
|
6
6
|
* found in the LICENSE file at https://angular.io/license
|
|
7
7
|
*/
|
|
8
|
-
/// <reference types="node" />
|
|
9
8
|
import { virtualFs } from '@angular-devkit/core';
|
|
10
9
|
import { Observable, Subject } from 'rxjs';
|
|
11
10
|
import { HostSink } from './host';
|
package/src/sink/host.d.ts
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
* Use of this source code is governed by an MIT-style license that can be
|
|
6
6
|
* found in the LICENSE file at https://angular.io/license
|
|
7
7
|
*/
|
|
8
|
-
/// <reference types="node" />
|
|
9
8
|
import { Path, virtualFs } from '@angular-devkit/core';
|
|
10
9
|
import { Observable } from 'rxjs';
|
|
11
10
|
import { CreateFileAction } from '../tree/action';
|
package/src/sink/sink.d.ts
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
* Use of this source code is governed by an MIT-style license that can be
|
|
6
6
|
* found in the LICENSE file at https://angular.io/license
|
|
7
7
|
*/
|
|
8
|
-
/// <reference types="node" />
|
|
9
8
|
import { Observable } from 'rxjs';
|
|
10
9
|
import { Action, CreateFileAction, DeleteFileAction, OverwriteFileAction, RenameFileAction } from '../tree/action';
|
|
11
10
|
import { Tree } from '../tree/interface';
|
package/src/tree/action.d.ts
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
* Use of this source code is governed by an MIT-style license that can be
|
|
6
6
|
* found in the LICENSE file at https://angular.io/license
|
|
7
7
|
*/
|
|
8
|
-
/// <reference types="node" />
|
|
9
8
|
import { BaseException, Path } from '@angular-devkit/core';
|
|
10
9
|
export declare class UnknownActionException extends BaseException {
|
|
11
10
|
constructor(action: Action);
|
package/src/tree/delegate.d.ts
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
* Use of this source code is governed by an MIT-style license that can be
|
|
6
6
|
* found in the LICENSE file at https://angular.io/license
|
|
7
7
|
*/
|
|
8
|
-
/// <reference types="node" />
|
|
9
8
|
import { JsonValue } from '@angular-devkit/core';
|
|
10
9
|
import { Action } from './action';
|
|
11
10
|
import { DirEntry, FileEntry, FileVisitor, MergeStrategy, Tree, UpdateRecorder } from './interface';
|
package/src/tree/entry.d.ts
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
* Use of this source code is governed by an MIT-style license that can be
|
|
6
6
|
* found in the LICENSE file at https://angular.io/license
|
|
7
7
|
*/
|
|
8
|
-
/// <reference types="node" />
|
|
9
8
|
import { Path } from '@angular-devkit/core';
|
|
10
9
|
import { FileEntry } from './interface';
|
|
11
10
|
export declare class SimpleFileEntry implements FileEntry {
|
package/src/tree/host-tree.d.ts
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
* Use of this source code is governed by an MIT-style license that can be
|
|
6
6
|
* found in the LICENSE file at https://angular.io/license
|
|
7
7
|
*/
|
|
8
|
-
/// <reference types="node" />
|
|
9
8
|
import { JsonValue, Path, PathFragment, virtualFs } from '@angular-devkit/core';
|
|
10
9
|
import { Action } from './action';
|
|
11
10
|
import { DirEntry, FileEntry, FilePredicate, FileVisitor, MergeStrategy, Tree, UpdateRecorder } from './interface';
|
package/src/tree/interface.d.ts
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
* Use of this source code is governed by an MIT-style license that can be
|
|
6
6
|
* found in the LICENSE file at https://angular.io/license
|
|
7
7
|
*/
|
|
8
|
-
/// <reference types="node" />
|
|
9
8
|
import { JsonValue, Path, PathFragment } from '@angular-devkit/core';
|
|
10
9
|
import { Action } from './action';
|
|
11
10
|
export declare enum MergeStrategy {
|
package/src/tree/null.d.ts
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
* Use of this source code is governed by an MIT-style license that can be
|
|
6
6
|
* found in the LICENSE file at https://angular.io/license
|
|
7
7
|
*/
|
|
8
|
-
/// <reference types="node" />
|
|
9
8
|
import { BaseException, JsonValue, Path, PathFragment } from '@angular-devkit/core';
|
|
10
9
|
import { Action } from './action';
|
|
11
10
|
import { DirEntry, MergeStrategy, Tree, UpdateRecorder } from './interface';
|
package/src/tree/recorder.d.ts
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
* Use of this source code is governed by an MIT-style license that can be
|
|
6
6
|
* found in the LICENSE file at https://angular.io/license
|
|
7
7
|
*/
|
|
8
|
-
/// <reference types="node" />
|
|
9
8
|
import { UpdateBufferBase } from '../utility/update-buffer';
|
|
10
9
|
import { FileEntry, UpdateRecorder } from './interface';
|
|
11
10
|
export declare class UpdateRecorderBase implements UpdateRecorder {
|
package/src/tree/scoped.d.ts
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
* Use of this source code is governed by an MIT-style license that can be
|
|
6
6
|
* found in the LICENSE file at https://angular.io/license
|
|
7
7
|
*/
|
|
8
|
-
/// <reference types="node" />
|
|
9
8
|
import { JsonValue, Path, PathFragment } from '@angular-devkit/core';
|
|
10
9
|
import { Action } from './action';
|
|
11
10
|
import { DirEntry, FileEntry, FileVisitor, MergeStrategy, Tree, UpdateRecorder } from './interface';
|
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
* Use of this source code is governed by an MIT-style license that can be
|
|
6
6
|
* found in the LICENSE file at https://angular.io/license
|
|
7
7
|
*/
|
|
8
|
-
/// <reference types="node" />
|
|
9
8
|
import { BaseException } from '@angular-devkit/core';
|
|
10
9
|
import MagicString from 'magic-string';
|
|
11
10
|
export declare class IndexOutOfBoundException extends BaseException {
|