UNPKG

pnpm

Version:

A fast implementation of npm install

35 lines 1.46 kB
"use strict"; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator.throw(value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments)).next()); }); }; const path = require('path'); const yamlfs_1 = require('./yamlfs'); // The dot prefix is needed because otherwise `npm shrinkwrap` // thinks that it is an extraneous package. const modulesFileName = '.modules.yaml'; function read(modulesPath) { return __awaiter(this, void 0, void 0, function* () { const modulesYamlPath = path.join(modulesPath, modulesFileName); try { return yield yamlfs_1.read(modulesYamlPath); } catch (err) { if (err.code !== 'ENOENT') { throw err; } return null; } }); } exports.read = read; function save(modulesPath, modules) { const modulesYamlPath = path.join(modulesPath, modulesFileName); return yamlfs_1.write(modulesYamlPath, modules); } exports.save = save; //# sourceMappingURL=modulesController.js.map