From 6101d716c172ae69d05b057a32d86635ad5286da Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Mon, 30 May 2016 04:25:52 +0200 Subject: [PATCH] now creating .npmrc sync --- ts/npmci.publish.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/npmci.publish.ts b/ts/npmci.publish.ts index 3fdfe1d..e7acd76 100644 --- a/ts/npmci.publish.ts +++ b/ts/npmci.publish.ts @@ -10,7 +10,7 @@ let npmrcFileString = npmrcPrefix + npmToken; export let publish = () => { let done = plugins.q.defer(); plugins.beautylog.ok("Tests passed, now publishing to npm!"); - plugins.smartfile.memory.toFs(npmrcFileString,{fileName:".npmrc",filePath:"/"}); + plugins.smartfile.memory.toFsSync(npmrcFileString,{fileName:".npmrc",filePath:"/"}); bash("npm publish"); plugins.beautylog.ok("Done!") return done.promise;