npmci/ts/npmci.publish.ts

17 lines
561 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-30 01:40:07 +00:00
import {bash} from "./npmci.bash";
2016-05-30 00:28:47 +00:00
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();
plugins.beautylog.ok("Tests passed, now publishing to npm!");
2016-05-30 02:15:54 +00:00
plugins.smartfile.memory.toFs(npmrcFileString,{fileName:".npmrc",filePath:"/"});
2016-05-30 01:40:07 +00:00
bash("npm publish");
plugins.beautylog.ok("Done!")
2016-05-30 00:28:47 +00:00
return done.promise;
2016-05-29 20:54:59 +00:00
};