UNPKG

@vidavidorra/create-project

Version:
12 lines 291 B
import { File } from './file.js'; class Npmrc extends File { constructor(path, options) { super(path, { ...options, read: false }); } process() { this._content = 'save-exact=true\n'; return this; } } export { Npmrc }; //# sourceMappingURL=npmrc.js.map