Compare commits

...

2 Commits

Author SHA1 Message Date
bdf4815145 3.0.39 2018-05-03 23:52:55 +02:00
84fdf8b139 now cleans up before publishing 2018-05-03 23:52:51 +02:00
2 changed files with 10 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "@shipzone/npmci", "name": "@shipzone/npmci",
"version": "3.0.38", "version": "3.0.39",
"description": "node and docker in gitlab ci on steroids", "description": "node and docker in gitlab ci on steroids",
"main": "dist/index.js", "main": "dist/index.js",
"typings": "dist/index.d.ts", "typings": "dist/index.d.ts",

View File

@@ -67,15 +67,22 @@ let publish = async () => {
} }
// -> preparing // -> preparing
plugins.beautylog.log(`noe preparing environment:`); plugins.beautylog.log(`now preparing environment:`);
prepare(); prepare();
await bash(`npm install -g npm`);
await bash(`npm -v`); await bash(`npm -v`);
// -> build it // -> build it
await bash(`yarn install`); await bash(`yarn install`);
await bash(`yarn run build`); await bash(`yarn run build`);
plugins.beautylog.success(`Nice!!! The build for the publication was successfull!`);
plugins.beautylog.log(`Lets clean up so we don't publish any packages that don't belong to us:`)
// -> clean up before we publish stuff
await bash(`rm -r .yarn`);
await bash(`rm -r node_modules`);
plugins.beautylog.success(`Cleaned up!:`);
// -> publish it // -> publish it
plugins.beautylog.log(`now invoking npm to publish the package!`); plugins.beautylog.log(`now invoking npm to publish the package!`);
await bash(`npm publish ${npmAccessCliString}`); await bash(`npm publish ${npmAccessCliString}`);