31 lines
1.6 KiB
JavaScript
Executable File
31 lines
1.6 KiB
JavaScript
Executable File
"use strict";
|
|
/**
|
|
* @license
|
|
* Copyright Google LLC 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.dev/license
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.default = default_1;
|
|
const utility_1 = require("@schematics/angular/utility");
|
|
/**
|
|
* Schematic factory entry-point for the `ng-add` schematic. The ng-add schematic will be
|
|
* automatically executed if developers run `ng add @angular/cdk`.
|
|
*
|
|
* By default, the CLI already installs the package that has been specified with `ng add`.
|
|
* We just store the version in the `package.json` in case the package manager didn't. Also
|
|
* this ensures that there will be no error that says that the CDK does not support `ng add`.
|
|
*/
|
|
function default_1() {
|
|
// The CLI inserts `@angular/cdk` into the `package.json` before this schematic runs. This
|
|
// means that we do not need to insert the CDK into `package.json` files again. In some cases
|
|
// though, it could happen that this schematic runs outside of the CLI `ng add` command, or
|
|
// the CDK is only listed as a dev dependency. If that is the case, we insert a version based
|
|
// on the current build version (substituted version placeholder).
|
|
// In order to align the CDK version with other Angular dependencies that are setup by
|
|
// `@schematics/angular`, we use tilde instead of caret. This is default for Angular
|
|
// dependencies in new CLI projects.
|
|
return (0, utility_1.addDependency)('@angular/cdk', `~20.2.12`, { existing: utility_1.ExistingBehavior.Skip });
|
|
}
|
|
//# sourceMappingURL=index.js.map
|