File tree 6 files changed +15
-7
lines changed
packages/angular_devkit/core/node
6 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 8
8
9
9
// Start experimental namespace
10
10
// Start jobs namespace
11
- export * from './experimental/job-registry' ;
11
+ export * from './experimental/jobs/ job-registry' ;
12
12
// End jobs namespace
13
13
// End experimental namespace
14
14
Original file line number Diff line number Diff line change 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
- import * as jobs from './job-registry ' ;
8
+ import * as jobs from './jobs ' ;
9
9
10
10
export {
11
11
jobs ,
Original file line number Diff line number Diff line change
1
+ /**
2
+ * @license
3
+ * Copyright Google Inc. All Rights Reserved.
4
+ *
5
+ * Use of this source code is governed by an MIT-style license that can be
6
+ * found in the LICENSE file at https://angular.io/license
7
+ */
8
+ export * from './job-registry' ;
Original file line number Diff line number Diff line change 6
6
* found in the LICENSE file at https://angular.io/license
7
7
*/
8
8
import { Observable , of } from 'rxjs' ;
9
- import { JsonValue , experimental as core_experimental , schema } from '../../src' ;
10
- import { ModuleNotFoundException , resolve } from '../resolve' ;
9
+ import { JsonValue , experimental as core_experimental , schema } from '../../../ src' ;
10
+ import { ModuleNotFoundException , resolve } from '../../ resolve' ;
11
11
12
12
export class NodeModuleJobRegistry < MinimumArgumentValueT extends JsonValue = JsonValue ,
13
13
MinimumInputValueT extends JsonValue = JsonValue ,
Original file line number Diff line number Diff line change 6
6
* found in the LICENSE file at https://angular.io/license
7
7
*/
8
8
import * as path from 'path' ;
9
- import { experimental as core_experimental } from '../../src' ;
9
+ import { experimental as core_experimental } from '../../../ src' ;
10
10
import { NodeModuleJobRegistry } from './job-registry' ;
11
11
12
12
const root = path . join (
13
13
path . dirname ( require . resolve ( __filename ) ) ,
14
- '../../../../../tests/angular_devkit/core/node/jobs' ,
14
+ '../../../../../../ tests/angular_devkit/core/node/jobs' ,
15
15
) ;
16
16
17
17
Original file line number Diff line number Diff line change 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
- import * as experimental from './experimental/job-registry' ;
8
+ import * as experimental from './experimental/jobs/ job-registry' ;
9
9
import * as fs from './fs' ;
10
10
export * from './cli-logger' ;
11
11
export * from './host' ;
You can’t perform that action at this time.
0 commit comments