sleeveforarm
Version:
Making Azure Easy
29 lines • 1.44 kB
JavaScript
;
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());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
// NPM publish turns all .gitignore into .npmignore. For awhile it
// seemed that you could put in both a .gitignore and a .npmignore
// and the .gitignore would be ignored but no longer. So now we
// ship a .npmignore and then rename it after install.
const fs = require("fs-extra");
const Path = require("path");
function doit() {
return __awaiter(this, void 0, void 0, function* () {
const pathToFile = Path.join("..", "assets", "cliInit");
try {
yield fs.move(Path.join(pathToFile, ".npmignore"), Path.join(pathToFile, ".gitignore"));
}
catch (e) {
console.log(`Post install move failed with ${e}`);
}
});
}
doit();
//# sourceMappingURL=renameNpmIgnore.js.map