npmci/ts/npmci.publish.ts

15 lines
452 B
TypeScript
Raw Normal View History

2016-05-30 00:28:47 +00:00
import "typings-global";
import * as plugins from "./npmci.plugins";
2016-05-29 20:54:59 +00:00
let npmrcPrefix:string = "//registry.npmjs.org/:_authToken=";
2016-05-30 00:28:47 +00:00
let npmToken:string = process.env.NPMCITOKEN;
let npmrcFileString = npmrcPrefix + npmToken;
2016-05-29 20:54:59 +00:00
export let publish = () => {
2016-05-30 00:28:47 +00:00
let done = plugins.q.defer();
2016-05-29 20:54:59 +00:00
2016-05-30 00:28:47 +00:00
plugins.smartfile.memory.toFs(npmrcFileString,{fileName:".npmrc",filePath:"/root/"});
plugins.shelljs.exec("npm publish");
return done.promise;
2016-05-29 20:54:59 +00:00
};