Compare commits

..

5 Commits

Author SHA1 Message Date
e92827de57 1.0.9 2016-05-30 03:06:22 +02:00
2782a242be added some log messages for publishing to npm 2016-05-30 03:06:18 +02:00
eef63f6b38 1.0.8 2016-05-30 02:53:26 +02:00
ce9f3871b4 1.0.7 2016-05-30 02:49:01 +02:00
3e9a62e4c9 update .gitlab-ci.yml 2016-05-30 02:48:08 +02:00
3 changed files with 4 additions and 5 deletions

View File

@@ -7,9 +7,7 @@ stages:
testLTS:
stage: test
script:
- npmci install 4
- npm install
- npm test
- npmci test lts
tags:
- docker

View File

@@ -1,6 +1,6 @@
{
"name": "npmci",
"version": "1.0.6",
"version": "1.0.9",
"description": "",
"main": "dist/index.js",
"bin": {

View File

@@ -8,8 +8,9 @@ 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:"/root/"});
plugins.shelljs.exec("npm publish");
plugins.beautylog.ok("Done!")
return done.promise;
};