UNPKG

@pnp/cli-microsoft365

Version:

Manage Microsoft 365 and SharePoint Framework projects on any platform

18 lines 396 B
import fs from 'fs'; export class ScssFile { get source() { if (!this._source) { try { this._source = fs.readFileSync(this.path, 'utf-8'); } catch { // Do nothing } } return this._source; } constructor(path) { this.path = path; } } //# sourceMappingURL=ScssFile.js.map