Skip to content

Commit b5e3b3a

Browse files
committed
feat(tools): add --version argument to specify the desized version instead of auto generating
1 parent 8e2cdd9 commit b5e3b3a

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

packages/cli/project.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
"build:docker": {
9090
"executor": "@nrwl/workspace:run-commands",
9191
"options": {
92-
"command": "node ../../../tools/scripts/buildDocker.mjs {args.tag}",
92+
"command": "node ../../../tools/scripts/buildDocker.mjs {args.tag} {args.version}",
9393
"cwd": "dist/packages/cli"
9494
},
9595
"dependsOn": [
@@ -102,7 +102,7 @@
102102
"publish:docker": {
103103
"executor": "@nrwl/workspace:run-commands",
104104
"options": {
105-
"command": "node ../../../tools/scripts/publishDocker.mjs {args.tag}",
105+
"command": "node ../../../tools/scripts/publishDocker.mjs {args.tag} {args.version}",
106106
"cwd": "dist/packages/cli"
107107
},
108108
"dependsOn": [

tools/scripts/buildDocker.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { getVersionByArguments } from './version.mjs';
22
import path from 'path';
33
import fs from 'fs';
44
import { execSync } from 'child_process';
5-
5+
// node buildDocker.mjs <tag> <version>
66
// CWD: ./dist/packages/xxx
77
const packageJSONPath = path.resolve(process.cwd(), 'package.json');
88

tools/scripts/publishDocker.mjs

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import path from 'path';
33
import fs from 'fs';
44
import { execSync } from 'child_process';
55

6+
// node publishDocker.mjs <tag> <version>
7+
68
if (process.env.READY_FOR_PUBLISH !== 'true') {
79
console.log(`Set env READY_FOR_PUBLISH=true before running publish commands.`)
810
process.exit(1);

tools/scripts/version.mjs

+12
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,21 @@ export function getReleaseTag() {
4141
return tag;
4242
}
4343

44+
/** Get the release version which is passed by argument directly */
45+
export function getReleaseVersionInArguments() {
46+
// Executing publish script: node path/to/xxxx.mjs {tag} {version}
47+
let [, , , version] = process.argv;
4448

49+
if (!version || version === 'undefined') return null;
4550

51+
return version;
52+
}
53+
54+
/** Get the release version from argument or generate one by tag */
4655
export function getVersionByArguments() {
56+
const versionFromInArg = getReleaseVersionInArguments();
57+
if (versionFromInArg) return versionFromInArg;
58+
4759
const tag = getReleaseTag();
4860
switch (tag) {
4961
case 'dev':

0 commit comments

Comments
 (0)