mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-18 11:44:05 +08:00
This API is already experimental. The move allows for the new stable API to use the "workspace" directory structure and to also better signify that the existing API is in fact experimental and subject to change or removal.
15 lines
349 B
TypeScript
15 lines
349 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
import * as jobs from './experimental/jobs/index';
|
|
import * as workspace from './experimental/workspace/index';
|
|
|
|
export {
|
|
jobs,
|
|
workspace,
|
|
};
|