@pnp/cli-microsoft365
Version:
Manage Microsoft 365 and SharePoint Framework projects on any platform
14 lines • 461 B
JavaScript
import { spfx } from "../../../../../../utils/spfx.js";
import { DependencyRule } from "./DependencyRule.js";
export class FN001019_DEP_knockout extends DependencyRule {
constructor(options) {
super({ ...options, packageName: 'knockout', isOptional: true });
}
get id() {
return 'FN001019';
}
customCondition(project) {
return spfx.isKnockoutProject(project);
}
}
//# sourceMappingURL=FN001019_DEP_knockout.js.map