@node-cli/npmrc 1.0.2 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -5
- package/dist/index.d.ts +6 -1
- package/dist/npmrc.js +14 -2
- package/dist/npmrc.js.map +1 -1
- package/dist/parse.d.ts +1 -0
- package/dist/parse.js +5 -0
- package/dist/parse.js.map +1 -1
- package/dist/utilities/common.d.ts +2 -0
- package/dist/utilities/common.js +37 -0
- package/dist/utilities/common.js.map +1 -0
- package/dist/utilities/createProfile.d.ts +8 -0
- package/dist/utilities/createProfile.js +54 -0
- package/dist/utilities/createProfile.js.map +1 -0
- package/dist/utilities/deleteProfile.d.ts +8 -0
- package/dist/utilities/deleteProfile.js +42 -0
- package/dist/utilities/deleteProfile.js.map +1 -0
- package/dist/utilities/listProfiles.d.ts +6 -0
- package/dist/utilities/listProfiles.js +50 -0
- package/dist/utilities/listProfiles.js.map +1 -0
- package/dist/utilities/switchProfile.d.ts +9 -0
- package/dist/utilities/switchProfile.js +59 -0
- package/dist/utilities/switchProfile.js.map +1 -0
- package/dist/utilities/updateProfile.d.ts +7 -0
- package/dist/utilities/updateProfile.js +54 -0
- package/dist/utilities/updateProfile.js.map +1 -0
- package/package.json +3 -2
- package/dist/utilities.d.ts +0 -25
- package/dist/utilities.js +0 -173
- package/dist/utilities.js.map +0 -1
package/README.md
CHANGED
|
@@ -12,25 +12,31 @@
|
|
|
12
12
|
|
|
13
13
|
## Examples
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
Create a profile from the current .npmrc file
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
> npmrc -c my-profile
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
List profiles handled by npmrc
|
|
16
22
|
|
|
17
23
|
```sh
|
|
18
24
|
> npmrc -l
|
|
19
25
|
```
|
|
20
26
|
|
|
21
|
-
|
|
27
|
+
Update an existing profile with the current .npmrc file
|
|
22
28
|
|
|
23
29
|
```sh
|
|
24
|
-
> npmrc -
|
|
30
|
+
> npmrc -u
|
|
25
31
|
```
|
|
26
32
|
|
|
27
|
-
Switch to an existing profile
|
|
33
|
+
Switch to an existing profile handled by npmrc
|
|
28
34
|
|
|
29
35
|
```sh
|
|
30
36
|
> npmrc my-profile
|
|
31
37
|
```
|
|
32
38
|
|
|
33
|
-
Delete a profile
|
|
39
|
+
Delete a profile handled by npmrc
|
|
34
40
|
|
|
35
41
|
```sh
|
|
36
42
|
> npmrc -d my-profile
|
package/dist/index.d.ts
CHANGED
|
@@ -5,4 +5,9 @@
|
|
|
5
5
|
export * from "./defaults";
|
|
6
6
|
export * from "./npmrc";
|
|
7
7
|
export * from "./parse";
|
|
8
|
-
export * from "./utilities";
|
|
8
|
+
export * from "./utilities/common";
|
|
9
|
+
export * from "./utilities/createProfile";
|
|
10
|
+
export * from "./utilities/deleteProfile";
|
|
11
|
+
export * from "./utilities/listProfiles";
|
|
12
|
+
export * from "./utilities/switchProfile";
|
|
13
|
+
export * from "./utilities/updateProfile";
|
package/dist/npmrc.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
/* istanbul ignore file */ import {
|
|
3
|
-
import {
|
|
2
|
+
/* istanbul ignore file */ import { config } from "./parse.js";
|
|
3
|
+
import { createProfile } from "./utilities/createProfile.js";
|
|
4
|
+
import { deleteProfile } from "./utilities/deleteProfile.js";
|
|
5
|
+
import { listProfiles } from "./utilities/listProfiles.js";
|
|
4
6
|
import path from "node:path";
|
|
7
|
+
import { switchProfile } from "./utilities/switchProfile.js";
|
|
8
|
+
import { updateProfile } from "./utilities/updateProfile.js";
|
|
5
9
|
const HOME = process.env.HOME;
|
|
6
10
|
const NPMRC_STORE = path.join(HOME, ".envtools/npmrcs");
|
|
7
11
|
const NPMRC_STORE_CONFIG = path.join(HOME, "/.envtools/npmrcs.json");
|
|
@@ -15,6 +19,14 @@ if (flags.create && parameters !== undefined) {
|
|
|
15
19
|
});
|
|
16
20
|
process.exit(exitFlag);
|
|
17
21
|
}
|
|
22
|
+
if (flags.update && parameters !== undefined) {
|
|
23
|
+
const exitFlag = await updateProfile({
|
|
24
|
+
storeConfig: NPMRC_STORE_CONFIG,
|
|
25
|
+
storeLocation: NPMRC_STORE,
|
|
26
|
+
homeLocation: HOME
|
|
27
|
+
});
|
|
28
|
+
process.exit(exitFlag);
|
|
29
|
+
}
|
|
18
30
|
if (flags.delete && parameters !== undefined) {
|
|
19
31
|
const exitFlag = await deleteProfile({
|
|
20
32
|
flags,
|
package/dist/npmrc.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/npmrc.ts"],"sourcesContent":["#!/usr/bin/env node\n/* istanbul ignore file */\n\nimport {\
|
|
1
|
+
{"version":3,"sources":["../src/npmrc.ts"],"sourcesContent":["#!/usr/bin/env node\n/* istanbul ignore file */\n\nimport { config } from \"./parse.js\";\nimport { createProfile } from \"./utilities/createProfile.js\";\nimport { deleteProfile } from \"./utilities/deleteProfile.js\";\nimport { listProfiles } from \"./utilities/listProfiles.js\";\nimport path from \"node:path\";\nimport { switchProfile } from \"./utilities/switchProfile.js\";\nimport { updateProfile } from \"./utilities/updateProfile.js\";\n\nconst HOME = process.env.HOME;\nconst NPMRC_STORE = path.join(HOME, \".envtools/npmrcs\");\nconst NPMRC_STORE_CONFIG = path.join(HOME, \"/.envtools/npmrcs.json\");\n\nconst { parameters, flags, showHelp } = config;\n\nif (flags.create && parameters !== undefined) {\n\tconst exitFlag = await createProfile({\n\t\tstoreConfig: NPMRC_STORE_CONFIG,\n\t\tstoreLocation: NPMRC_STORE,\n\t\tprofileName: parameters[\"0\"],\n\t\thomeLocation: HOME,\n\t});\n\tprocess.exit(exitFlag);\n}\n\nif (flags.update && parameters !== undefined) {\n\tconst exitFlag = await updateProfile({\n\t\tstoreConfig: NPMRC_STORE_CONFIG,\n\t\tstoreLocation: NPMRC_STORE,\n\t\thomeLocation: HOME,\n\t});\n\tprocess.exit(exitFlag);\n}\n\nif (flags.delete && parameters !== undefined) {\n\tconst exitFlag = await deleteProfile({\n\t\tflags,\n\t\tstoreConfig: NPMRC_STORE_CONFIG,\n\t\tstoreLocation: NPMRC_STORE,\n\t\tprofileName: parameters[\"0\"],\n\t});\n\tprocess.exit(exitFlag);\n}\n\nif (parameters !== undefined && parameters[\"0\"] !== undefined) {\n\tconst exitFlag = await switchProfile({\n\t\tflags,\n\t\tstoreConfig: NPMRC_STORE_CONFIG,\n\t\tstoreLocation: NPMRC_STORE,\n\t\tprofileName: parameters[\"0\"],\n\t\thomeLocation: HOME,\n\t});\n\tprocess.exit(exitFlag);\n}\n\nif (flags.list || (!flags.version && !flags.help)) {\n\tconst exitFlag = await listProfiles({\n\t\tflags,\n\t\tstoreConfig: NPMRC_STORE_CONFIG,\n\t});\n\tprocess.exit(exitFlag);\n}\n\nshowHelp();\n"],"names":["config","createProfile","deleteProfile","listProfiles","path","switchProfile","updateProfile","HOME","process","env","NPMRC_STORE","join","NPMRC_STORE_CONFIG","parameters","flags","showHelp","create","undefined","exitFlag","storeConfig","storeLocation","profileName","homeLocation","exit","update","delete","list","version","help"],"mappings":";AACA,wBAAwB,GAExB,SAASA,MAAM,QAAQ,aAAa;AACpC,SAASC,aAAa,QAAQ,+BAA+B;AAC7D,SAASC,aAAa,QAAQ,+BAA+B;AAC7D,SAASC,YAAY,QAAQ,8BAA8B;AAC3D,OAAOC,UAAU,YAAY;AAC7B,SAASC,aAAa,QAAQ,+BAA+B;AAC7D,SAASC,aAAa,QAAQ,+BAA+B;AAE7D,MAAMC,OAAOC,QAAQC,GAAG,CAACF,IAAI;AAC7B,MAAMG,cAAcN,KAAKO,IAAI,CAACJ,MAAM;AACpC,MAAMK,qBAAqBR,KAAKO,IAAI,CAACJ,MAAM;AAE3C,MAAM,EAAEM,UAAU,EAAEC,KAAK,EAAEC,QAAQ,EAAE,GAAGf;AAExC,IAAIc,MAAME,MAAM,IAAIH,eAAeI,WAAW;IAC7C,MAAMC,WAAW,MAAMjB,cAAc;QACpCkB,aAAaP;QACbQ,eAAeV;QACfW,aAAaR,UAAU,CAAC,IAAI;QAC5BS,cAAcf;IACf;IACAC,QAAQe,IAAI,CAACL;AACd;AAEA,IAAIJ,MAAMU,MAAM,IAAIX,eAAeI,WAAW;IAC7C,MAAMC,WAAW,MAAMZ,cAAc;QACpCa,aAAaP;QACbQ,eAAeV;QACfY,cAAcf;IACf;IACAC,QAAQe,IAAI,CAACL;AACd;AAEA,IAAIJ,MAAMW,MAAM,IAAIZ,eAAeI,WAAW;IAC7C,MAAMC,WAAW,MAAMhB,cAAc;QACpCY;QACAK,aAAaP;QACbQ,eAAeV;QACfW,aAAaR,UAAU,CAAC,IAAI;IAC7B;IACAL,QAAQe,IAAI,CAACL;AACd;AAEA,IAAIL,eAAeI,aAAaJ,UAAU,CAAC,IAAI,KAAKI,WAAW;IAC9D,MAAMC,WAAW,MAAMb,cAAc;QACpCS;QACAK,aAAaP;QACbQ,eAAeV;QACfW,aAAaR,UAAU,CAAC,IAAI;QAC5BS,cAAcf;IACf;IACAC,QAAQe,IAAI,CAACL;AACd;AAEA,IAAIJ,MAAMY,IAAI,IAAK,CAACZ,MAAMa,OAAO,IAAI,CAACb,MAAMc,IAAI,EAAG;IAClD,MAAMV,WAAW,MAAMf,aAAa;QACnCW;QACAK,aAAaP;IACd;IACAJ,QAAQe,IAAI,CAACL;AACd;AAEAH"}
|
package/dist/parse.d.ts
CHANGED
package/dist/parse.js
CHANGED
|
@@ -41,6 +41,11 @@ import { parser } from "@node-cli/parser";
|
|
|
41
41
|
description: "List all profiles",
|
|
42
42
|
type: "boolean"
|
|
43
43
|
},
|
|
44
|
+
update: {
|
|
45
|
+
shortFlag: "u",
|
|
46
|
+
description: "Update the current profile",
|
|
47
|
+
type: "boolean"
|
|
48
|
+
},
|
|
44
49
|
boring: {
|
|
45
50
|
shortFlag: "b",
|
|
46
51
|
default: defaultFlags.boring,
|
package/dist/parse.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/parse.ts"],"sourcesContent":["import { defaultFlags } from \"./defaults.js\";\nimport { parser } from \"@node-cli/parser\";\n\nexport type Parameters = {\n\t[\"0\"]?: string;\n};\nexport type Flags = {\n\tverbose?: boolean;\n\tdelete?: boolean;\n\tcreate?: boolean;\n\tlist?: boolean;\n\tboring?: boolean;\n\thelp?: boolean;\n\tversion?: boolean;\n};\nexport type Configuration = {\n\tflags?: Flags;\n\tparameters?: Parameters;\n\tshowHelp?: () => void;\n};\n\n/* istanbul ignore next */\nexport const config: Configuration = parser({\n\tmeta: import.meta,\n\texamples: [\n\t\t{\n\t\t\tcommand: \"npmrc -l\",\n\t\t\tcomment: \"## List existing profiles\",\n\t\t},\n\t\t{\n\t\t\tcommand: \"npmrc -c [name]\",\n\t\t\tcomment: \"## Create a profile\",\n\t\t},\n\t\t{\n\t\t\tcommand: \"npmrc [name]\",\n\t\t\tcomment: \"## Switch to an existing profile\",\n\t\t},\n\t\t{\n\t\t\tcommand: \"npmrc -d [name]\",\n\t\t\tcomment: \"## Delete an existing profile\",\n\t\t},\n\t],\n\tflags: {\n\t\tverbose: {\n\t\t\tshortFlag: \"V\",\n\t\t\tdescription: \"Output debugging information\",\n\t\t\ttype: \"boolean\",\n\t\t},\n\t\tdelete: {\n\t\t\tshortFlag: \"d\",\n\t\t\tdescription: \"Delete a profile\",\n\t\t\ttype: \"boolean\",\n\t\t},\n\t\tcreate: {\n\t\t\tshortFlag: \"c\",\n\t\t\tdescription: \"Create a new profile\",\n\t\t\ttype: \"boolean\",\n\t\t},\n\t\tlist: {\n\t\t\tshortFlag: \"l\",\n\t\t\tdescription: \"List all profiles\",\n\t\t\ttype: \"boolean\",\n\t\t},\n\t\tboring: {\n\t\t\tshortFlag: \"b\",\n\t\t\tdefault: defaultFlags.boring,\n\t\t\tdescription: \"Do not use color output\",\n\t\t\ttype: \"boolean\",\n\t\t},\n\t\thelp: {\n\t\t\tshortFlag: \"h\",\n\t\t\tdescription: \"Display help instructions\",\n\t\t\ttype: \"boolean\",\n\t\t},\n\t\tversion: {\n\t\t\tshortFlag: \"v\",\n\t\t\tdescription: \"Output the current version\",\n\t\t\ttype: \"boolean\",\n\t\t},\n\t},\n\tparameters: {\n\t\tprofile: {\n\t\t\tdescription: \"profile name\",\n\t\t},\n\t},\n\trestrictions: [\n\t\t{\n\t\t\texit: 1,\n\t\t\tmessage: \"To create a profile, you must provide a profile name\",\n\t\t\ttest: (flags?: Flags, parameters?: Parameters) => {\n\t\t\t\treturn flags.create && (!parameters || !parameters[\"0\"]);\n\t\t\t},\n\t\t},\n\t],\n\tusage: \"npmrc [options] [profile]\",\n});\n"],"names":["defaultFlags","parser","config","meta","examples","command","comment","flags","verbose","shortFlag","description","type","delete","create","list","boring","default","help","version","parameters","profile","restrictions","exit","message","test","usage"],"mappings":"AAAA,SAASA,YAAY,QAAQ,gBAAgB;AAC7C,SAASC,MAAM,QAAQ,mBAAmB;
|
|
1
|
+
{"version":3,"sources":["../src/parse.ts"],"sourcesContent":["import { defaultFlags } from \"./defaults.js\";\nimport { parser } from \"@node-cli/parser\";\n\nexport type Parameters = {\n\t[\"0\"]?: string;\n};\nexport type Flags = {\n\tverbose?: boolean;\n\tdelete?: boolean;\n\tcreate?: boolean;\n\tlist?: boolean;\n\tupdate?: boolean;\n\tboring?: boolean;\n\thelp?: boolean;\n\tversion?: boolean;\n};\nexport type Configuration = {\n\tflags?: Flags;\n\tparameters?: Parameters;\n\tshowHelp?: () => void;\n};\n\n/* istanbul ignore next */\nexport const config: Configuration = parser({\n\tmeta: import.meta,\n\texamples: [\n\t\t{\n\t\t\tcommand: \"npmrc -l\",\n\t\t\tcomment: \"## List existing profiles\",\n\t\t},\n\t\t{\n\t\t\tcommand: \"npmrc -c [name]\",\n\t\t\tcomment: \"## Create a profile\",\n\t\t},\n\t\t{\n\t\t\tcommand: \"npmrc [name]\",\n\t\t\tcomment: \"## Switch to an existing profile\",\n\t\t},\n\t\t{\n\t\t\tcommand: \"npmrc -d [name]\",\n\t\t\tcomment: \"## Delete an existing profile\",\n\t\t},\n\t],\n\tflags: {\n\t\tverbose: {\n\t\t\tshortFlag: \"V\",\n\t\t\tdescription: \"Output debugging information\",\n\t\t\ttype: \"boolean\",\n\t\t},\n\t\tdelete: {\n\t\t\tshortFlag: \"d\",\n\t\t\tdescription: \"Delete a profile\",\n\t\t\ttype: \"boolean\",\n\t\t},\n\t\tcreate: {\n\t\t\tshortFlag: \"c\",\n\t\t\tdescription: \"Create a new profile\",\n\t\t\ttype: \"boolean\",\n\t\t},\n\t\tlist: {\n\t\t\tshortFlag: \"l\",\n\t\t\tdescription: \"List all profiles\",\n\t\t\ttype: \"boolean\",\n\t\t},\n\t\tupdate: {\n\t\t\tshortFlag: \"u\",\n\t\t\tdescription: \"Update the current profile\",\n\t\t\ttype: \"boolean\",\n\t\t},\n\t\tboring: {\n\t\t\tshortFlag: \"b\",\n\t\t\tdefault: defaultFlags.boring,\n\t\t\tdescription: \"Do not use color output\",\n\t\t\ttype: \"boolean\",\n\t\t},\n\t\thelp: {\n\t\t\tshortFlag: \"h\",\n\t\t\tdescription: \"Display help instructions\",\n\t\t\ttype: \"boolean\",\n\t\t},\n\t\tversion: {\n\t\t\tshortFlag: \"v\",\n\t\t\tdescription: \"Output the current version\",\n\t\t\ttype: \"boolean\",\n\t\t},\n\t},\n\tparameters: {\n\t\tprofile: {\n\t\t\tdescription: \"profile name\",\n\t\t},\n\t},\n\trestrictions: [\n\t\t{\n\t\t\texit: 1,\n\t\t\tmessage: \"To create a profile, you must provide a profile name\",\n\t\t\ttest: (flags?: Flags, parameters?: Parameters) => {\n\t\t\t\treturn flags.create && (!parameters || !parameters[\"0\"]);\n\t\t\t},\n\t\t},\n\t],\n\tusage: \"npmrc [options] [profile]\",\n});\n"],"names":["defaultFlags","parser","config","meta","examples","command","comment","flags","verbose","shortFlag","description","type","delete","create","list","update","boring","default","help","version","parameters","profile","restrictions","exit","message","test","usage"],"mappings":"AAAA,SAASA,YAAY,QAAQ,gBAAgB;AAC7C,SAASC,MAAM,QAAQ,mBAAmB;AAqB1C,wBAAwB,GACxB,OAAO,MAAMC,SAAwBD,OAAO;IAC3CE,MAAM;IACNC,UAAU;QACT;YACCC,SAAS;YACTC,SAAS;QACV;QACA;YACCD,SAAS;YACTC,SAAS;QACV;QACA;YACCD,SAAS;YACTC,SAAS;QACV;QACA;YACCD,SAAS;YACTC,SAAS;QACV;KACA;IACDC,OAAO;QACNC,SAAS;YACRC,WAAW;YACXC,aAAa;YACbC,MAAM;QACP;QACAC,QAAQ;YACPH,WAAW;YACXC,aAAa;YACbC,MAAM;QACP;QACAE,QAAQ;YACPJ,WAAW;YACXC,aAAa;YACbC,MAAM;QACP;QACAG,MAAM;YACLL,WAAW;YACXC,aAAa;YACbC,MAAM;QACP;QACAI,QAAQ;YACPN,WAAW;YACXC,aAAa;YACbC,MAAM;QACP;QACAK,QAAQ;YACPP,WAAW;YACXQ,SAASjB,aAAagB,MAAM;YAC5BN,aAAa;YACbC,MAAM;QACP;QACAO,MAAM;YACLT,WAAW;YACXC,aAAa;YACbC,MAAM;QACP;QACAQ,SAAS;YACRV,WAAW;YACXC,aAAa;YACbC,MAAM;QACP;IACD;IACAS,YAAY;QACXC,SAAS;YACRX,aAAa;QACd;IACD;IACAY,cAAc;QACb;YACCC,MAAM;YACNC,SAAS;YACTC,MAAM,CAAClB,OAAea;gBACrB,OAAOb,MAAMM,MAAM,IAAK,CAAA,CAACO,cAAc,CAACA,UAAU,CAAC,IAAI,AAAD;YACvD;QACD;KACA;IACDM,OAAO;AACR,GAAG"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import kleur from "kleur";
|
|
2
|
+
export const GET_REGISTRY_CMD = 'npm config list -l -g -json | grep registry\\"';
|
|
3
|
+
export const formatRegistries = (registries)=>{
|
|
4
|
+
/**
|
|
5
|
+
* We receive this kind of output:
|
|
6
|
+
* [
|
|
7
|
+
* ' "@node-cli:registry": "https://other-registry.npmjs.org/"',
|
|
8
|
+
* ' "registry": "https://registry.npmjs.org/"',
|
|
9
|
+
* ]
|
|
10
|
+
* And we need convert that to a JSON object that looks like that:
|
|
11
|
+
* [
|
|
12
|
+
* { "@node-cli:registry": "https://other-registry.npmjs.org/" },
|
|
13
|
+
* { "registry": "https://registry.npmjs.org/" },
|
|
14
|
+
* ]
|
|
15
|
+
*/ const messages = [];
|
|
16
|
+
const stdoutLines = registries.split("\n");
|
|
17
|
+
const jsonObjects = stdoutLines.map((line)=>{
|
|
18
|
+
const trimmedLine = line.trim();
|
|
19
|
+
if (trimmedLine.startsWith('"') && trimmedLine.endsWith(",")) {
|
|
20
|
+
const jsonLine = trimmedLine.slice(0, -1); // remove trailing comma
|
|
21
|
+
try {
|
|
22
|
+
const jsonObject = JSON.parse(`{${jsonLine}}`);
|
|
23
|
+
return jsonObject;
|
|
24
|
+
} catch {
|
|
25
|
+
// nothing to declare officer
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
// eslint-disable-next-line unicorn/no-null
|
|
29
|
+
return null;
|
|
30
|
+
}).filter(Boolean); // remove undefined values
|
|
31
|
+
for (const jsonObject of jsonObjects){
|
|
32
|
+
messages.push(` • ${Object.keys(jsonObject)}:`, ` ${kleur.underline().grey(`${Object.values(jsonObject)}`)}`);
|
|
33
|
+
}
|
|
34
|
+
return messages;
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
//# sourceMappingURL=common.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/utilities/common.ts"],"sourcesContent":["import kleur from \"kleur\";\n\nexport const GET_REGISTRY_CMD =\n\t'npm config list -l -g -json | grep registry\\\\\"';\n\nexport const formatRegistries = (registries: string) => {\n\t/**\n\t * We receive this kind of output:\n\t * [\n\t * ' \"@node-cli:registry\": \"https://other-registry.npmjs.org/\"',\n\t * ' \"registry\": \"https://registry.npmjs.org/\"',\n\t * ]\n\t * And we need convert that to a JSON object that looks like that:\n\t * [\n\t * { \"@node-cli:registry\": \"https://other-registry.npmjs.org/\" },\n\t * { \"registry\": \"https://registry.npmjs.org/\" },\n\t * ]\n\t */\n\tconst messages = [];\n\tconst stdoutLines = registries.split(\"\\n\");\n\tconst jsonObjects = stdoutLines\n\t\t.map((line) => {\n\t\t\tconst trimmedLine = line.trim();\n\t\t\tif (trimmedLine.startsWith('\"') && trimmedLine.endsWith(\",\")) {\n\t\t\t\tconst jsonLine = trimmedLine.slice(0, -1); // remove trailing comma\n\t\t\t\ttry {\n\t\t\t\t\tconst jsonObject = JSON.parse(`{${jsonLine}}`);\n\t\t\t\t\treturn jsonObject;\n\t\t\t\t} catch {\n\t\t\t\t\t// nothing to declare officer\n\t\t\t\t}\n\t\t\t}\n\t\t\t// eslint-disable-next-line unicorn/no-null\n\t\t\treturn null;\n\t\t})\n\t\t.filter(Boolean); // remove undefined values\n\n\tfor (const jsonObject of jsonObjects) {\n\t\tmessages.push(\n\t\t\t` • ${Object.keys(jsonObject)}:`,\n\t\t\t` ${kleur.underline().grey(`${Object.values(jsonObject)}`)}`,\n\t\t);\n\t}\n\treturn messages;\n};\n"],"names":["kleur","GET_REGISTRY_CMD","formatRegistries","registries","messages","stdoutLines","split","jsonObjects","map","line","trimmedLine","trim","startsWith","endsWith","jsonLine","slice","jsonObject","JSON","parse","filter","Boolean","push","Object","keys","underline","grey","values"],"mappings":"AAAA,OAAOA,WAAW,QAAQ;AAE1B,OAAO,MAAMC,mBACZ,iDAAiD;AAElD,OAAO,MAAMC,mBAAmB,CAACC;IAChC;;;;;;;;;;;EAWC,GACD,MAAMC,WAAW,EAAE;IACnB,MAAMC,cAAcF,WAAWG,KAAK,CAAC;IACrC,MAAMC,cAAcF,YAClBG,GAAG,CAAC,CAACC;QACL,MAAMC,cAAcD,KAAKE,IAAI;QAC7B,IAAID,YAAYE,UAAU,CAAC,QAAQF,YAAYG,QAAQ,CAAC,MAAM;YAC7D,MAAMC,WAAWJ,YAAYK,KAAK,CAAC,GAAG,CAAC,IAAI,wBAAwB;YACnE,IAAI;gBACH,MAAMC,aAAaC,KAAKC,KAAK,CAAC,CAAC,CAAC,EAAEJ,SAAS,CAAC,CAAC;gBAC7C,OAAOE;YACR,EAAE,OAAM;YACP,6BAA6B;YAC9B;QACD;QACA,2CAA2C;QAC3C,OAAO;IACR,GACCG,MAAM,CAACC,UAAU,0BAA0B;IAE7C,KAAK,MAAMJ,cAAcT,YAAa;QACrCH,SAASiB,IAAI,CACZ,CAAC,GAAG,EAAEC,OAAOC,IAAI,CAACP,YAAY,CAAC,CAAC,EAChC,CAAC,IAAI,EAAEhB,MAAMwB,SAAS,GAAGC,IAAI,CAAC,CAAC,EAAEH,OAAOI,MAAM,CAACV,YAAY,CAAC,EAAE,CAAC;IAEjE;IACA,OAAOZ;AACR,EAAE"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Logger } from "@node-cli/logger";
|
|
2
|
+
export declare const logger: Logger;
|
|
3
|
+
export declare const createProfile: ({ storeConfig, storeLocation, profileName, homeLocation, }: {
|
|
4
|
+
storeConfig: any;
|
|
5
|
+
storeLocation: any;
|
|
6
|
+
profileName: any;
|
|
7
|
+
homeLocation: any;
|
|
8
|
+
}) => Promise<number>;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { Logger } from "@node-cli/logger";
|
|
2
|
+
import fs from "fs-extra";
|
|
3
|
+
export const logger = new Logger();
|
|
4
|
+
logger.boring = process.env.NODE_ENV === "test";
|
|
5
|
+
export const createProfile = async ({ storeConfig, storeLocation, profileName, homeLocation })=>{
|
|
6
|
+
let profiles = {
|
|
7
|
+
available: [],
|
|
8
|
+
enabled: undefined
|
|
9
|
+
};
|
|
10
|
+
await fs.ensureFile(storeConfig);
|
|
11
|
+
try {
|
|
12
|
+
// if the profile already exists, do nothing
|
|
13
|
+
profiles = await fs.readJson(storeConfig);
|
|
14
|
+
if (profiles.available.includes(profileName)) {
|
|
15
|
+
logger.warn(`Profile '${profileName}' already exists...`);
|
|
16
|
+
return 0;
|
|
17
|
+
}
|
|
18
|
+
} catch {
|
|
19
|
+
// ignoring error since we are going to create the file
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* If the profile does not exist, create a folder named as
|
|
23
|
+
* the profile under the storeLocation folder, with the
|
|
24
|
+
* existing npmrc / yarnrc files.
|
|
25
|
+
*/ await fs.ensureDir(`${storeLocation}/${profileName}`);
|
|
26
|
+
// copy the existing npmrc / yarnrc files to the new folder
|
|
27
|
+
const NPMRC = `${homeLocation}/.npmrc`;
|
|
28
|
+
const YARNRC = `${homeLocation}/.yarnrc`;
|
|
29
|
+
if (await fs.pathExists(YARNRC)) {
|
|
30
|
+
await fs.copy(YARNRC, `${storeLocation}/${profileName}/yarnrc`);
|
|
31
|
+
}
|
|
32
|
+
if (await fs.pathExists(NPMRC)) {
|
|
33
|
+
await fs.copy(NPMRC, `${storeLocation}/${profileName}/npmrc`);
|
|
34
|
+
}
|
|
35
|
+
// then add the profile to the configuration file
|
|
36
|
+
const newProfiles = {
|
|
37
|
+
available: [
|
|
38
|
+
...profiles.available,
|
|
39
|
+
profileName
|
|
40
|
+
],
|
|
41
|
+
enabled: profiles.enabled ?? profileName
|
|
42
|
+
};
|
|
43
|
+
await fs.writeJson(storeConfig, newProfiles, {
|
|
44
|
+
spaces: 2
|
|
45
|
+
});
|
|
46
|
+
logger.printBox(`Profile '${profileName}' created`, {
|
|
47
|
+
textAlignment: "left",
|
|
48
|
+
title: "Profiles",
|
|
49
|
+
borderColor: "blue"
|
|
50
|
+
});
|
|
51
|
+
return 0;
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
//# sourceMappingURL=createProfile.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/utilities/createProfile.ts"],"sourcesContent":["import { Logger } from \"@node-cli/logger\";\nimport fs from \"fs-extra\";\n\nexport const logger = new Logger();\nlogger.boring = process.env.NODE_ENV === \"test\";\n\nexport const createProfile = async ({\n\tstoreConfig,\n\tstoreLocation,\n\tprofileName,\n\thomeLocation,\n}) => {\n\tlet profiles = { available: [], enabled: undefined };\n\tawait fs.ensureFile(storeConfig);\n\ttry {\n\t\t// if the profile already exists, do nothing\n\t\tprofiles = await fs.readJson(storeConfig);\n\t\tif (profiles.available.includes(profileName)) {\n\t\t\tlogger.warn(`Profile '${profileName}' already exists...`);\n\t\t\treturn 0;\n\t\t}\n\t} catch {\n\t\t// ignoring error since we are going to create the file\n\t}\n\n\t/**\n\t * If the profile does not exist, create a folder named as\n\t * the profile under the storeLocation folder, with the\n\t * existing npmrc / yarnrc files.\n\t */\n\tawait fs.ensureDir(`${storeLocation}/${profileName}`);\n\t// copy the existing npmrc / yarnrc files to the new folder\n\tconst NPMRC = `${homeLocation}/.npmrc`;\n\tconst YARNRC = `${homeLocation}/.yarnrc`;\n\tif (await fs.pathExists(YARNRC)) {\n\t\tawait fs.copy(YARNRC, `${storeLocation}/${profileName}/yarnrc`);\n\t}\n\tif (await fs.pathExists(NPMRC)) {\n\t\tawait fs.copy(NPMRC, `${storeLocation}/${profileName}/npmrc`);\n\t}\n\t// then add the profile to the configuration file\n\tconst newProfiles = {\n\t\tavailable: [...profiles.available, profileName],\n\t\tenabled: profiles.enabled ?? profileName,\n\t};\n\tawait fs.writeJson(storeConfig, newProfiles, { spaces: 2 });\n\tlogger.printBox(`Profile '${profileName}' created`, {\n\t\ttextAlignment: \"left\",\n\t\ttitle: \"Profiles\",\n\t\tborderColor: \"blue\",\n\t});\n\treturn 0;\n};\n"],"names":["Logger","fs","logger","boring","process","env","NODE_ENV","createProfile","storeConfig","storeLocation","profileName","homeLocation","profiles","available","enabled","undefined","ensureFile","readJson","includes","warn","ensureDir","NPMRC","YARNRC","pathExists","copy","newProfiles","writeJson","spaces","printBox","textAlignment","title","borderColor"],"mappings":"AAAA,SAASA,MAAM,QAAQ,mBAAmB;AAC1C,OAAOC,QAAQ,WAAW;AAE1B,OAAO,MAAMC,SAAS,IAAIF,SAAS;AACnCE,OAAOC,MAAM,GAAGC,QAAQC,GAAG,CAACC,QAAQ,KAAK;AAEzC,OAAO,MAAMC,gBAAgB,OAAO,EACnCC,WAAW,EACXC,aAAa,EACbC,WAAW,EACXC,YAAY,EACZ;IACA,IAAIC,WAAW;QAAEC,WAAW,EAAE;QAAEC,SAASC;IAAU;IACnD,MAAMd,GAAGe,UAAU,CAACR;IACpB,IAAI;QACH,4CAA4C;QAC5CI,WAAW,MAAMX,GAAGgB,QAAQ,CAACT;QAC7B,IAAII,SAASC,SAAS,CAACK,QAAQ,CAACR,cAAc;YAC7CR,OAAOiB,IAAI,CAAC,CAAC,SAAS,EAAET,YAAY,mBAAmB,CAAC;YACxD,OAAO;QACR;IACD,EAAE,OAAM;IACP,uDAAuD;IACxD;IAEA;;;;EAIC,GACD,MAAMT,GAAGmB,SAAS,CAAC,CAAC,EAAEX,cAAc,CAAC,EAAEC,YAAY,CAAC;IACpD,2DAA2D;IAC3D,MAAMW,QAAQ,CAAC,EAAEV,aAAa,OAAO,CAAC;IACtC,MAAMW,SAAS,CAAC,EAAEX,aAAa,QAAQ,CAAC;IACxC,IAAI,MAAMV,GAAGsB,UAAU,CAACD,SAAS;QAChC,MAAMrB,GAAGuB,IAAI,CAACF,QAAQ,CAAC,EAAEb,cAAc,CAAC,EAAEC,YAAY,OAAO,CAAC;IAC/D;IACA,IAAI,MAAMT,GAAGsB,UAAU,CAACF,QAAQ;QAC/B,MAAMpB,GAAGuB,IAAI,CAACH,OAAO,CAAC,EAAEZ,cAAc,CAAC,EAAEC,YAAY,MAAM,CAAC;IAC7D;IACA,iDAAiD;IACjD,MAAMe,cAAc;QACnBZ,WAAW;eAAID,SAASC,SAAS;YAAEH;SAAY;QAC/CI,SAASF,SAASE,OAAO,IAAIJ;IAC9B;IACA,MAAMT,GAAGyB,SAAS,CAAClB,aAAaiB,aAAa;QAAEE,QAAQ;IAAE;IACzDzB,OAAO0B,QAAQ,CAAC,CAAC,SAAS,EAAElB,YAAY,SAAS,CAAC,EAAE;QACnDmB,eAAe;QACfC,OAAO;QACPC,aAAa;IACd;IACA,OAAO;AACR,EAAE"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Logger } from "@node-cli/logger";
|
|
2
|
+
export declare const logger: Logger;
|
|
3
|
+
export declare const deleteProfile: ({ flags, profileName, storeConfig, storeLocation, }: {
|
|
4
|
+
flags: any;
|
|
5
|
+
profileName: any;
|
|
6
|
+
storeConfig: any;
|
|
7
|
+
storeLocation: any;
|
|
8
|
+
}) => Promise<1 | 0>;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { Logger } from "@node-cli/logger";
|
|
2
|
+
import fs from "fs-extra";
|
|
3
|
+
export const logger = new Logger();
|
|
4
|
+
logger.boring = process.env.NODE_ENV === "test";
|
|
5
|
+
export const deleteProfile = async ({ flags, profileName, storeConfig, storeLocation })=>{
|
|
6
|
+
try {
|
|
7
|
+
const profiles = await fs.readJson(storeConfig);
|
|
8
|
+
if (!profiles.available.includes(profileName)) {
|
|
9
|
+
logger.error(`Profile '${profileName}' does not exist`);
|
|
10
|
+
return 1;
|
|
11
|
+
}
|
|
12
|
+
// if the profile is enabled, do nothing
|
|
13
|
+
if (profiles.enabled === profileName) {
|
|
14
|
+
logger.error(`Profile '${profileName}' is currently active`);
|
|
15
|
+
return 1;
|
|
16
|
+
}
|
|
17
|
+
// if profile exists, delete it by removing the profile folder
|
|
18
|
+
await fs.remove(`${storeLocation}/${profileName}`);
|
|
19
|
+
// then remove the profile from the configuration file
|
|
20
|
+
const newProfiles = {
|
|
21
|
+
available: profiles.available.filter((profile)=>profile !== profileName),
|
|
22
|
+
enabled: profiles.enabled
|
|
23
|
+
};
|
|
24
|
+
await fs.writeJson(storeConfig, newProfiles, {
|
|
25
|
+
spaces: 2
|
|
26
|
+
});
|
|
27
|
+
logger.printBox(`Profile '${profileName}' deleted`, {
|
|
28
|
+
textAlignment: "left",
|
|
29
|
+
title: "Profiles",
|
|
30
|
+
borderColor: "blue"
|
|
31
|
+
});
|
|
32
|
+
return 0;
|
|
33
|
+
} catch (error) {
|
|
34
|
+
if (flags.verbose) {
|
|
35
|
+
logger.log(error);
|
|
36
|
+
}
|
|
37
|
+
logger.error("Could not delete profile");
|
|
38
|
+
return 1;
|
|
39
|
+
}
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
//# sourceMappingURL=deleteProfile.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/utilities/deleteProfile.ts"],"sourcesContent":["import { Logger } from \"@node-cli/logger\";\nimport fs from \"fs-extra\";\n\nexport const logger = new Logger();\nlogger.boring = process.env.NODE_ENV === \"test\";\n\nexport const deleteProfile = async ({\n\tflags,\n\tprofileName,\n\tstoreConfig,\n\tstoreLocation,\n}) => {\n\ttry {\n\t\tconst profiles = await fs.readJson(storeConfig);\n\t\tif (!profiles.available.includes(profileName)) {\n\t\t\tlogger.error(`Profile '${profileName}' does not exist`);\n\t\t\treturn 1;\n\t\t}\n\t\t// if the profile is enabled, do nothing\n\t\tif (profiles.enabled === profileName) {\n\t\t\tlogger.error(`Profile '${profileName}' is currently active`);\n\t\t\treturn 1;\n\t\t}\n\t\t// if profile exists, delete it by removing the profile folder\n\t\tawait fs.remove(`${storeLocation}/${profileName}`);\n\t\t// then remove the profile from the configuration file\n\t\tconst newProfiles = {\n\t\t\tavailable: profiles.available.filter(\n\t\t\t\t(profile: any) => profile !== profileName,\n\t\t\t),\n\t\t\tenabled: profiles.enabled,\n\t\t};\n\t\tawait fs.writeJson(storeConfig, newProfiles, { spaces: 2 });\n\t\tlogger.printBox(`Profile '${profileName}' deleted`, {\n\t\t\ttextAlignment: \"left\",\n\t\t\ttitle: \"Profiles\",\n\t\t\tborderColor: \"blue\",\n\t\t});\n\t\treturn 0;\n\t} catch (error) {\n\t\tif (flags.verbose) {\n\t\t\tlogger.log(error);\n\t\t}\n\t\tlogger.error(\"Could not delete profile\");\n\t\treturn 1;\n\t}\n};\n"],"names":["Logger","fs","logger","boring","process","env","NODE_ENV","deleteProfile","flags","profileName","storeConfig","storeLocation","profiles","readJson","available","includes","error","enabled","remove","newProfiles","filter","profile","writeJson","spaces","printBox","textAlignment","title","borderColor","verbose","log"],"mappings":"AAAA,SAASA,MAAM,QAAQ,mBAAmB;AAC1C,OAAOC,QAAQ,WAAW;AAE1B,OAAO,MAAMC,SAAS,IAAIF,SAAS;AACnCE,OAAOC,MAAM,GAAGC,QAAQC,GAAG,CAACC,QAAQ,KAAK;AAEzC,OAAO,MAAMC,gBAAgB,OAAO,EACnCC,KAAK,EACLC,WAAW,EACXC,WAAW,EACXC,aAAa,EACb;IACA,IAAI;QACH,MAAMC,WAAW,MAAMX,GAAGY,QAAQ,CAACH;QACnC,IAAI,CAACE,SAASE,SAAS,CAACC,QAAQ,CAACN,cAAc;YAC9CP,OAAOc,KAAK,CAAC,CAAC,SAAS,EAAEP,YAAY,gBAAgB,CAAC;YACtD,OAAO;QACR;QACA,wCAAwC;QACxC,IAAIG,SAASK,OAAO,KAAKR,aAAa;YACrCP,OAAOc,KAAK,CAAC,CAAC,SAAS,EAAEP,YAAY,qBAAqB,CAAC;YAC3D,OAAO;QACR;QACA,8DAA8D;QAC9D,MAAMR,GAAGiB,MAAM,CAAC,CAAC,EAAEP,cAAc,CAAC,EAAEF,YAAY,CAAC;QACjD,sDAAsD;QACtD,MAAMU,cAAc;YACnBL,WAAWF,SAASE,SAAS,CAACM,MAAM,CACnC,CAACC,UAAiBA,YAAYZ;YAE/BQ,SAASL,SAASK,OAAO;QAC1B;QACA,MAAMhB,GAAGqB,SAAS,CAACZ,aAAaS,aAAa;YAAEI,QAAQ;QAAE;QACzDrB,OAAOsB,QAAQ,CAAC,CAAC,SAAS,EAAEf,YAAY,SAAS,CAAC,EAAE;YACnDgB,eAAe;YACfC,OAAO;YACPC,aAAa;QACd;QACA,OAAO;IACR,EAAE,OAAOX,OAAO;QACf,IAAIR,MAAMoB,OAAO,EAAE;YAClB1B,OAAO2B,GAAG,CAACb;QACZ;QACAd,OAAOc,KAAK,CAAC;QACb,OAAO;IACR;AACD,EAAE"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { GET_REGISTRY_CMD, formatRegistries } from "./common.js";
|
|
2
|
+
import { Logger } from "@node-cli/logger";
|
|
3
|
+
import fs from "fs-extra";
|
|
4
|
+
import kleur from "kleur";
|
|
5
|
+
import { run } from "@node-cli/run";
|
|
6
|
+
export const logger = new Logger();
|
|
7
|
+
logger.boring = process.env.NODE_ENV === "test";
|
|
8
|
+
export const listProfiles = async ({ flags, storeConfig })=>{
|
|
9
|
+
try {
|
|
10
|
+
const profiles = await fs.readJson(storeConfig);
|
|
11
|
+
if (profiles?.available?.length > 0) {
|
|
12
|
+
const activeProfile = profiles.enabled;
|
|
13
|
+
const messages = activeProfile === undefined ? [] : [
|
|
14
|
+
kleur.green(`★ ${activeProfile} (active)`)
|
|
15
|
+
];
|
|
16
|
+
/**
|
|
17
|
+
* Since there is an active profile, we can check the
|
|
18
|
+
* global registries and list them, alongside the active profile.
|
|
19
|
+
*/ if (activeProfile) {
|
|
20
|
+
const { stdout, stderr } = await run(GET_REGISTRY_CMD, {
|
|
21
|
+
ignoreError: true
|
|
22
|
+
});
|
|
23
|
+
if (!stderr) {
|
|
24
|
+
messages.push(...formatRegistries(stdout));
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
for (const profile of profiles.available){
|
|
28
|
+
if (profile !== activeProfile) {
|
|
29
|
+
messages.push(`${profile}`);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
logger.printBox(messages.join("\n"), {
|
|
33
|
+
textAlignment: "left",
|
|
34
|
+
title: "Profiles",
|
|
35
|
+
borderColor: "blue"
|
|
36
|
+
});
|
|
37
|
+
} else {
|
|
38
|
+
logger.warn("No profiles found");
|
|
39
|
+
}
|
|
40
|
+
return 0;
|
|
41
|
+
} catch (error) {
|
|
42
|
+
if (flags.verbose) {
|
|
43
|
+
logger.log(error);
|
|
44
|
+
}
|
|
45
|
+
logger.error("Unable to read the profile configuration file");
|
|
46
|
+
return 1;
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
//# sourceMappingURL=listProfiles.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/utilities/listProfiles.ts"],"sourcesContent":["import { GET_REGISTRY_CMD, formatRegistries } from \"./common.js\";\n\nimport { Logger } from \"@node-cli/logger\";\nimport fs from \"fs-extra\";\nimport kleur from \"kleur\";\nimport { run } from \"@node-cli/run\";\n\nexport const logger = new Logger();\nlogger.boring = process.env.NODE_ENV === \"test\";\n\nexport const listProfiles = async ({ flags, storeConfig }) => {\n\ttry {\n\t\tconst profiles = await fs.readJson(storeConfig);\n\n\t\tif (profiles?.available?.length > 0) {\n\t\t\tconst activeProfile = profiles.enabled;\n\t\t\tconst messages =\n\t\t\t\tactiveProfile === undefined\n\t\t\t\t\t? []\n\t\t\t\t\t: [kleur.green(`★ ${activeProfile} (active)`)];\n\n\t\t\t/**\n\t\t\t * Since there is an active profile, we can check the\n\t\t\t * global registries and list them, alongside the active profile.\n\t\t\t */\n\t\t\tif (activeProfile) {\n\t\t\t\tconst { stdout, stderr } = await run(GET_REGISTRY_CMD, {\n\t\t\t\t\tignoreError: true,\n\t\t\t\t});\n\n\t\t\t\tif (!stderr) {\n\t\t\t\t\tmessages.push(...formatRegistries(stdout as string));\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor (const profile of profiles.available) {\n\t\t\t\tif (profile !== activeProfile) {\n\t\t\t\t\tmessages.push(`${profile}`);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tlogger.printBox(messages.join(\"\\n\"), {\n\t\t\t\ttextAlignment: \"left\",\n\t\t\t\ttitle: \"Profiles\",\n\t\t\t\tborderColor: \"blue\",\n\t\t\t});\n\t\t} else {\n\t\t\tlogger.warn(\"No profiles found\");\n\t\t}\n\t\treturn 0;\n\t} catch (error) {\n\t\tif (flags.verbose) {\n\t\t\tlogger.log(error);\n\t\t}\n\t\tlogger.error(\"Unable to read the profile configuration file\");\n\t\treturn 1;\n\t}\n};\n"],"names":["GET_REGISTRY_CMD","formatRegistries","Logger","fs","kleur","run","logger","boring","process","env","NODE_ENV","listProfiles","flags","storeConfig","profiles","readJson","available","length","activeProfile","enabled","messages","undefined","green","stdout","stderr","ignoreError","push","profile","printBox","join","textAlignment","title","borderColor","warn","error","verbose","log"],"mappings":"AAAA,SAASA,gBAAgB,EAAEC,gBAAgB,QAAQ,cAAc;AAEjE,SAASC,MAAM,QAAQ,mBAAmB;AAC1C,OAAOC,QAAQ,WAAW;AAC1B,OAAOC,WAAW,QAAQ;AAC1B,SAASC,GAAG,QAAQ,gBAAgB;AAEpC,OAAO,MAAMC,SAAS,IAAIJ,SAAS;AACnCI,OAAOC,MAAM,GAAGC,QAAQC,GAAG,CAACC,QAAQ,KAAK;AAEzC,OAAO,MAAMC,eAAe,OAAO,EAAEC,KAAK,EAAEC,WAAW,EAAE;IACxD,IAAI;QACH,MAAMC,WAAW,MAAMX,GAAGY,QAAQ,CAACF;QAEnC,IAAIC,UAAUE,WAAWC,SAAS,GAAG;YACpC,MAAMC,gBAAgBJ,SAASK,OAAO;YACtC,MAAMC,WACLF,kBAAkBG,YACf,EAAE,GACF;gBAACjB,MAAMkB,KAAK,CAAC,CAAC,EAAE,EAAEJ,cAAc,SAAS,CAAC;aAAE;YAEhD;;;IAGC,GACD,IAAIA,eAAe;gBAClB,MAAM,EAAEK,MAAM,EAAEC,MAAM,EAAE,GAAG,MAAMnB,IAAIL,kBAAkB;oBACtDyB,aAAa;gBACd;gBAEA,IAAI,CAACD,QAAQ;oBACZJ,SAASM,IAAI,IAAIzB,iBAAiBsB;gBACnC;YACD;YAEA,KAAK,MAAMI,WAAWb,SAASE,SAAS,CAAE;gBACzC,IAAIW,YAAYT,eAAe;oBAC9BE,SAASM,IAAI,CAAC,CAAC,EAAEC,QAAQ,CAAC;gBAC3B;YACD;YAEArB,OAAOsB,QAAQ,CAACR,SAASS,IAAI,CAAC,OAAO;gBACpCC,eAAe;gBACfC,OAAO;gBACPC,aAAa;YACd;QACD,OAAO;YACN1B,OAAO2B,IAAI,CAAC;QACb;QACA,OAAO;IACR,EAAE,OAAOC,OAAO;QACf,IAAItB,MAAMuB,OAAO,EAAE;YAClB7B,OAAO8B,GAAG,CAACF;QACZ;QACA5B,OAAO4B,KAAK,CAAC;QACb,OAAO;IACR;AACD,EAAE"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Logger } from "@node-cli/logger";
|
|
2
|
+
export declare const logger: Logger;
|
|
3
|
+
export declare const switchProfile: ({ flags, storeConfig, storeLocation, profileName, homeLocation, }: {
|
|
4
|
+
flags: any;
|
|
5
|
+
storeConfig: any;
|
|
6
|
+
storeLocation: any;
|
|
7
|
+
profileName: any;
|
|
8
|
+
homeLocation: any;
|
|
9
|
+
}) => Promise<1 | 0>;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { Logger } from "@node-cli/logger";
|
|
2
|
+
import fs from "fs-extra";
|
|
3
|
+
export const logger = new Logger();
|
|
4
|
+
logger.boring = process.env.NODE_ENV === "test";
|
|
5
|
+
export const switchProfile = async ({ flags, storeConfig, storeLocation, profileName, homeLocation })=>{
|
|
6
|
+
try {
|
|
7
|
+
const profiles = await fs.readJson(storeConfig);
|
|
8
|
+
if (!profiles.available.includes(profileName)) {
|
|
9
|
+
logger.error(`Profile '${profileName}' does not exist`);
|
|
10
|
+
return 1;
|
|
11
|
+
}
|
|
12
|
+
// if profile is already enabled, do nothing
|
|
13
|
+
if (profiles.enabled === profileName) {
|
|
14
|
+
logger.warn(`Profile '${profileName}' is already active`);
|
|
15
|
+
return 0;
|
|
16
|
+
}
|
|
17
|
+
// if profile exists and is not enabled, switch to it by copying
|
|
18
|
+
// the npmrc and yarnrc files from the profile folder to the home folder
|
|
19
|
+
const NPMRC = `${homeLocation}/.npmrc`;
|
|
20
|
+
const PROFILE_NPMRC = `${storeLocation}/${profileName}/npmrc`;
|
|
21
|
+
const YARNRC = `${homeLocation}/.yarnrc`;
|
|
22
|
+
const PROFILE_YARNRC = `${storeLocation}/${profileName}/yarnrc`;
|
|
23
|
+
if (await fs.pathExists(PROFILE_NPMRC)) {
|
|
24
|
+
await fs.copy(PROFILE_NPMRC, NPMRC, {
|
|
25
|
+
overwrite: true
|
|
26
|
+
});
|
|
27
|
+
} else {
|
|
28
|
+
logger.warn(`No npmrc file found for profile '${profileName}'`);
|
|
29
|
+
}
|
|
30
|
+
if (await fs.pathExists(PROFILE_YARNRC)) {
|
|
31
|
+
await fs.copy(PROFILE_YARNRC, YARNRC, {
|
|
32
|
+
overwrite: true
|
|
33
|
+
});
|
|
34
|
+
} else {
|
|
35
|
+
logger.warn(`No yarnrc file found for profile '${profileName}'`);
|
|
36
|
+
}
|
|
37
|
+
const newProfiles = {
|
|
38
|
+
available: profiles.available,
|
|
39
|
+
enabled: profileName
|
|
40
|
+
};
|
|
41
|
+
await fs.writeJson(storeConfig, newProfiles, {
|
|
42
|
+
spaces: 2
|
|
43
|
+
});
|
|
44
|
+
logger.printBox(`Profile switched to '${profileName}'`, {
|
|
45
|
+
textAlignment: "left",
|
|
46
|
+
title: "Profiles",
|
|
47
|
+
borderColor: "blue"
|
|
48
|
+
});
|
|
49
|
+
return 0;
|
|
50
|
+
} catch (error) {
|
|
51
|
+
if (flags.verbose) {
|
|
52
|
+
logger.log(error);
|
|
53
|
+
}
|
|
54
|
+
logger.error("Could not switch profile");
|
|
55
|
+
return 1;
|
|
56
|
+
}
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
//# sourceMappingURL=switchProfile.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/utilities/switchProfile.ts"],"sourcesContent":["import { Logger } from \"@node-cli/logger\";\nimport fs from \"fs-extra\";\n\nexport const logger = new Logger();\nlogger.boring = process.env.NODE_ENV === \"test\";\n\nexport const switchProfile = async ({\n\tflags,\n\tstoreConfig,\n\tstoreLocation,\n\tprofileName,\n\thomeLocation,\n}) => {\n\ttry {\n\t\tconst profiles = await fs.readJson(storeConfig);\n\t\tif (!profiles.available.includes(profileName)) {\n\t\t\tlogger.error(`Profile '${profileName}' does not exist`);\n\t\t\treturn 1;\n\t\t}\n\t\t// if profile is already enabled, do nothing\n\t\tif (profiles.enabled === profileName) {\n\t\t\tlogger.warn(`Profile '${profileName}' is already active`);\n\t\t\treturn 0;\n\t\t}\n\t\t// if profile exists and is not enabled, switch to it by copying\n\t\t// the npmrc and yarnrc files from the profile folder to the home folder\n\t\tconst NPMRC = `${homeLocation}/.npmrc`;\n\t\tconst PROFILE_NPMRC = `${storeLocation}/${profileName}/npmrc`;\n\t\tconst YARNRC = `${homeLocation}/.yarnrc`;\n\t\tconst PROFILE_YARNRC = `${storeLocation}/${profileName}/yarnrc`;\n\n\t\tif (await fs.pathExists(PROFILE_NPMRC)) {\n\t\t\tawait fs.copy(PROFILE_NPMRC, NPMRC, {\n\t\t\t\toverwrite: true,\n\t\t\t});\n\t\t} else {\n\t\t\tlogger.warn(`No npmrc file found for profile '${profileName}'`);\n\t\t}\n\t\tif (await fs.pathExists(PROFILE_YARNRC)) {\n\t\t\tawait fs.copy(PROFILE_YARNRC, YARNRC, {\n\t\t\t\toverwrite: true,\n\t\t\t});\n\t\t} else {\n\t\t\tlogger.warn(`No yarnrc file found for profile '${profileName}'`);\n\t\t}\n\n\t\tconst newProfiles = {\n\t\t\tavailable: profiles.available,\n\t\t\tenabled: profileName,\n\t\t};\n\t\tawait fs.writeJson(storeConfig, newProfiles, { spaces: 2 });\n\t\tlogger.printBox(`Profile switched to '${profileName}'`, {\n\t\t\ttextAlignment: \"left\",\n\t\t\ttitle: \"Profiles\",\n\t\t\tborderColor: \"blue\",\n\t\t});\n\t\treturn 0;\n\t} catch (error) {\n\t\tif (flags.verbose) {\n\t\t\tlogger.log(error);\n\t\t}\n\t\tlogger.error(\"Could not switch profile\");\n\t\treturn 1;\n\t}\n};\n"],"names":["Logger","fs","logger","boring","process","env","NODE_ENV","switchProfile","flags","storeConfig","storeLocation","profileName","homeLocation","profiles","readJson","available","includes","error","enabled","warn","NPMRC","PROFILE_NPMRC","YARNRC","PROFILE_YARNRC","pathExists","copy","overwrite","newProfiles","writeJson","spaces","printBox","textAlignment","title","borderColor","verbose","log"],"mappings":"AAAA,SAASA,MAAM,QAAQ,mBAAmB;AAC1C,OAAOC,QAAQ,WAAW;AAE1B,OAAO,MAAMC,SAAS,IAAIF,SAAS;AACnCE,OAAOC,MAAM,GAAGC,QAAQC,GAAG,CAACC,QAAQ,KAAK;AAEzC,OAAO,MAAMC,gBAAgB,OAAO,EACnCC,KAAK,EACLC,WAAW,EACXC,aAAa,EACbC,WAAW,EACXC,YAAY,EACZ;IACA,IAAI;QACH,MAAMC,WAAW,MAAMZ,GAAGa,QAAQ,CAACL;QACnC,IAAI,CAACI,SAASE,SAAS,CAACC,QAAQ,CAACL,cAAc;YAC9CT,OAAOe,KAAK,CAAC,CAAC,SAAS,EAAEN,YAAY,gBAAgB,CAAC;YACtD,OAAO;QACR;QACA,4CAA4C;QAC5C,IAAIE,SAASK,OAAO,KAAKP,aAAa;YACrCT,OAAOiB,IAAI,CAAC,CAAC,SAAS,EAAER,YAAY,mBAAmB,CAAC;YACxD,OAAO;QACR;QACA,gEAAgE;QAChE,wEAAwE;QACxE,MAAMS,QAAQ,CAAC,EAAER,aAAa,OAAO,CAAC;QACtC,MAAMS,gBAAgB,CAAC,EAAEX,cAAc,CAAC,EAAEC,YAAY,MAAM,CAAC;QAC7D,MAAMW,SAAS,CAAC,EAAEV,aAAa,QAAQ,CAAC;QACxC,MAAMW,iBAAiB,CAAC,EAAEb,cAAc,CAAC,EAAEC,YAAY,OAAO,CAAC;QAE/D,IAAI,MAAMV,GAAGuB,UAAU,CAACH,gBAAgB;YACvC,MAAMpB,GAAGwB,IAAI,CAACJ,eAAeD,OAAO;gBACnCM,WAAW;YACZ;QACD,OAAO;YACNxB,OAAOiB,IAAI,CAAC,CAAC,iCAAiC,EAAER,YAAY,CAAC,CAAC;QAC/D;QACA,IAAI,MAAMV,GAAGuB,UAAU,CAACD,iBAAiB;YACxC,MAAMtB,GAAGwB,IAAI,CAACF,gBAAgBD,QAAQ;gBACrCI,WAAW;YACZ;QACD,OAAO;YACNxB,OAAOiB,IAAI,CAAC,CAAC,kCAAkC,EAAER,YAAY,CAAC,CAAC;QAChE;QAEA,MAAMgB,cAAc;YACnBZ,WAAWF,SAASE,SAAS;YAC7BG,SAASP;QACV;QACA,MAAMV,GAAG2B,SAAS,CAACnB,aAAakB,aAAa;YAAEE,QAAQ;QAAE;QACzD3B,OAAO4B,QAAQ,CAAC,CAAC,qBAAqB,EAAEnB,YAAY,CAAC,CAAC,EAAE;YACvDoB,eAAe;YACfC,OAAO;YACPC,aAAa;QACd;QACA,OAAO;IACR,EAAE,OAAOhB,OAAO;QACf,IAAIT,MAAM0B,OAAO,EAAE;YAClBhC,OAAOiC,GAAG,CAAClB;QACZ;QACAf,OAAOe,KAAK,CAAC;QACb,OAAO;IACR;AACD,EAAE"}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { GET_REGISTRY_CMD, formatRegistries } from "./common.js";
|
|
2
|
+
import { Logger } from "@node-cli/logger";
|
|
3
|
+
import fs from "fs-extra";
|
|
4
|
+
import kleur from "kleur";
|
|
5
|
+
import { run } from "@node-cli/run";
|
|
6
|
+
export const logger = new Logger();
|
|
7
|
+
logger.boring = process.env.NODE_ENV === "test";
|
|
8
|
+
export const updateProfile = async ({ storeConfig, storeLocation, homeLocation })=>{
|
|
9
|
+
let profiles;
|
|
10
|
+
// Step 1: check if there is an active profile
|
|
11
|
+
try {
|
|
12
|
+
profiles = await fs.readJson(storeConfig);
|
|
13
|
+
} catch {
|
|
14
|
+
// ignoring error since we are going to create the file
|
|
15
|
+
}
|
|
16
|
+
if (profiles?.available?.length > 0) {
|
|
17
|
+
const profileName = profiles.enabled;
|
|
18
|
+
if (profileName) {
|
|
19
|
+
const messages = [
|
|
20
|
+
kleur.green(`Profile '${profileName}' updated`)
|
|
21
|
+
];
|
|
22
|
+
/**
|
|
23
|
+
* Step2: since there is an active profile, we can check the
|
|
24
|
+
* global registries and list them, alongside the updated profile.
|
|
25
|
+
*/ const { stdout, stderr } = await run(GET_REGISTRY_CMD, {
|
|
26
|
+
ignoreError: true
|
|
27
|
+
});
|
|
28
|
+
if (!stderr) {
|
|
29
|
+
messages.push(...formatRegistries(stdout));
|
|
30
|
+
}
|
|
31
|
+
// Step 3: update the active profile
|
|
32
|
+
await fs.ensureDir(`${storeLocation}/${profileName}`);
|
|
33
|
+
// copy the existing npmrc / yarnrc files to the storage folder
|
|
34
|
+
const NPMRC = `${homeLocation}/.npmrc`;
|
|
35
|
+
const YARNRC = `${homeLocation}/.yarnrc`;
|
|
36
|
+
if (await fs.pathExists(YARNRC)) {
|
|
37
|
+
await fs.copy(YARNRC, `${storeLocation}/${profileName}/yarnrc`);
|
|
38
|
+
}
|
|
39
|
+
if (await fs.pathExists(NPMRC)) {
|
|
40
|
+
await fs.copy(NPMRC, `${storeLocation}/${profileName}/npmrc`);
|
|
41
|
+
}
|
|
42
|
+
logger.printBox(messages.join("\n"), {
|
|
43
|
+
textAlignment: "left",
|
|
44
|
+
title: "Profiles",
|
|
45
|
+
borderColor: "blue"
|
|
46
|
+
});
|
|
47
|
+
return 0;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
logger.warn("Only active profiles can be updated. Please switch to the profile you want to update.");
|
|
51
|
+
return 0;
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
//# sourceMappingURL=updateProfile.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/utilities/updateProfile.ts"],"sourcesContent":["import { GET_REGISTRY_CMD, formatRegistries } from \"./common.js\";\n\nimport { Logger } from \"@node-cli/logger\";\nimport fs from \"fs-extra\";\nimport kleur from \"kleur\";\nimport { run } from \"@node-cli/run\";\n\nexport const logger = new Logger();\nlogger.boring = process.env.NODE_ENV === \"test\";\n\nexport const updateProfile = async ({\n\tstoreConfig,\n\tstoreLocation,\n\thomeLocation,\n}) => {\n\tlet profiles: { available: string | any[]; enabled: any };\n\n\t// Step 1: check if there is an active profile\n\ttry {\n\t\tprofiles = await fs.readJson(storeConfig);\n\t} catch {\n\t\t// ignoring error since we are going to create the file\n\t}\n\n\tif (profiles?.available?.length > 0) {\n\t\tconst profileName = profiles.enabled;\n\t\tif (profileName) {\n\t\t\tconst messages = [kleur.green(`Profile '${profileName}' updated`)];\n\t\t\t/**\n\t\t\t * Step2: since there is an active profile, we can check the\n\t\t\t * global registries and list them, alongside the updated profile.\n\t\t\t */\n\n\t\t\tconst { stdout, stderr } = await run(GET_REGISTRY_CMD, {\n\t\t\t\tignoreError: true,\n\t\t\t});\n\t\t\tif (!stderr) {\n\t\t\t\tmessages.push(...formatRegistries(stdout as string));\n\t\t\t}\n\n\t\t\t// Step 3: update the active profile\n\t\t\tawait fs.ensureDir(`${storeLocation}/${profileName}`);\n\t\t\t// copy the existing npmrc / yarnrc files to the storage folder\n\t\t\tconst NPMRC = `${homeLocation}/.npmrc`;\n\t\t\tconst YARNRC = `${homeLocation}/.yarnrc`;\n\t\t\tif (await fs.pathExists(YARNRC)) {\n\t\t\t\tawait fs.copy(YARNRC, `${storeLocation}/${profileName}/yarnrc`);\n\t\t\t}\n\t\t\tif (await fs.pathExists(NPMRC)) {\n\t\t\t\tawait fs.copy(NPMRC, `${storeLocation}/${profileName}/npmrc`);\n\t\t\t}\n\t\t\tlogger.printBox(messages.join(\"\\n\"), {\n\t\t\t\ttextAlignment: \"left\",\n\t\t\t\ttitle: \"Profiles\",\n\t\t\t\tborderColor: \"blue\",\n\t\t\t});\n\t\t\treturn 0;\n\t\t}\n\t}\n\n\tlogger.warn(\n\t\t\"Only active profiles can be updated. Please switch to the profile you want to update.\",\n\t);\n\treturn 0;\n};\n"],"names":["GET_REGISTRY_CMD","formatRegistries","Logger","fs","kleur","run","logger","boring","process","env","NODE_ENV","updateProfile","storeConfig","storeLocation","homeLocation","profiles","readJson","available","length","profileName","enabled","messages","green","stdout","stderr","ignoreError","push","ensureDir","NPMRC","YARNRC","pathExists","copy","printBox","join","textAlignment","title","borderColor","warn"],"mappings":"AAAA,SAASA,gBAAgB,EAAEC,gBAAgB,QAAQ,cAAc;AAEjE,SAASC,MAAM,QAAQ,mBAAmB;AAC1C,OAAOC,QAAQ,WAAW;AAC1B,OAAOC,WAAW,QAAQ;AAC1B,SAASC,GAAG,QAAQ,gBAAgB;AAEpC,OAAO,MAAMC,SAAS,IAAIJ,SAAS;AACnCI,OAAOC,MAAM,GAAGC,QAAQC,GAAG,CAACC,QAAQ,KAAK;AAEzC,OAAO,MAAMC,gBAAgB,OAAO,EACnCC,WAAW,EACXC,aAAa,EACbC,YAAY,EACZ;IACA,IAAIC;IAEJ,8CAA8C;IAC9C,IAAI;QACHA,WAAW,MAAMZ,GAAGa,QAAQ,CAACJ;IAC9B,EAAE,OAAM;IACP,uDAAuD;IACxD;IAEA,IAAIG,UAAUE,WAAWC,SAAS,GAAG;QACpC,MAAMC,cAAcJ,SAASK,OAAO;QACpC,IAAID,aAAa;YAChB,MAAME,WAAW;gBAACjB,MAAMkB,KAAK,CAAC,CAAC,SAAS,EAAEH,YAAY,SAAS,CAAC;aAAE;YAClE;;;IAGC,GAED,MAAM,EAAEI,MAAM,EAAEC,MAAM,EAAE,GAAG,MAAMnB,IAAIL,kBAAkB;gBACtDyB,aAAa;YACd;YACA,IAAI,CAACD,QAAQ;gBACZH,SAASK,IAAI,IAAIzB,iBAAiBsB;YACnC;YAEA,oCAAoC;YACpC,MAAMpB,GAAGwB,SAAS,CAAC,CAAC,EAAEd,cAAc,CAAC,EAAEM,YAAY,CAAC;YACpD,+DAA+D;YAC/D,MAAMS,QAAQ,CAAC,EAAEd,aAAa,OAAO,CAAC;YACtC,MAAMe,SAAS,CAAC,EAAEf,aAAa,QAAQ,CAAC;YACxC,IAAI,MAAMX,GAAG2B,UAAU,CAACD,SAAS;gBAChC,MAAM1B,GAAG4B,IAAI,CAACF,QAAQ,CAAC,EAAEhB,cAAc,CAAC,EAAEM,YAAY,OAAO,CAAC;YAC/D;YACA,IAAI,MAAMhB,GAAG2B,UAAU,CAACF,QAAQ;gBAC/B,MAAMzB,GAAG4B,IAAI,CAACH,OAAO,CAAC,EAAEf,cAAc,CAAC,EAAEM,YAAY,MAAM,CAAC;YAC7D;YACAb,OAAO0B,QAAQ,CAACX,SAASY,IAAI,CAAC,OAAO;gBACpCC,eAAe;gBACfC,OAAO;gBACPC,aAAa;YACd;YACA,OAAO;QACR;IACD;IAEA9B,OAAO+B,IAAI,CACV;IAED,OAAO;AACR,EAAE"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@node-cli/npmrc",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"description": "Toggle different npmrc configuration files on the fly",
|
|
@@ -27,11 +27,12 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@node-cli/logger": "1.2.3",
|
|
29
29
|
"@node-cli/parser": "2.3.2",
|
|
30
|
+
"@node-cli/run": "1.0.3",
|
|
30
31
|
"fs-extra": "11.2.0",
|
|
31
32
|
"kleur": "4.1.5"
|
|
32
33
|
},
|
|
33
34
|
"publishConfig": {
|
|
34
35
|
"access": "public"
|
|
35
36
|
},
|
|
36
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "bf18648501bcd42db9e2a44793d53a1ef21d8c2d"
|
|
37
38
|
}
|
package/dist/utilities.d.ts
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { Logger } from "@node-cli/logger";
|
|
2
|
-
export declare const logger: Logger;
|
|
3
|
-
export declare const listProfiles: ({ flags, storeConfig }: {
|
|
4
|
-
flags: any;
|
|
5
|
-
storeConfig: any;
|
|
6
|
-
}) => Promise<0 | 1>;
|
|
7
|
-
export declare const createProfile: ({ storeConfig, storeLocation, profileName, homeLocation, }: {
|
|
8
|
-
storeConfig: any;
|
|
9
|
-
storeLocation: any;
|
|
10
|
-
profileName: any;
|
|
11
|
-
homeLocation: any;
|
|
12
|
-
}) => Promise<number>;
|
|
13
|
-
export declare const switchProfile: ({ flags, storeConfig, storeLocation, profileName, homeLocation, }: {
|
|
14
|
-
flags: any;
|
|
15
|
-
storeConfig: any;
|
|
16
|
-
storeLocation: any;
|
|
17
|
-
profileName: any;
|
|
18
|
-
homeLocation: any;
|
|
19
|
-
}) => Promise<0 | 1>;
|
|
20
|
-
export declare const deleteProfile: ({ flags, profileName, storeConfig, storeLocation, }: {
|
|
21
|
-
flags: any;
|
|
22
|
-
profileName: any;
|
|
23
|
-
storeConfig: any;
|
|
24
|
-
storeLocation: any;
|
|
25
|
-
}) => Promise<0 | 1>;
|
package/dist/utilities.js
DELETED
|
@@ -1,173 +0,0 @@
|
|
|
1
|
-
import { Logger } from "@node-cli/logger";
|
|
2
|
-
import fs from "fs-extra";
|
|
3
|
-
import kleur from "kleur";
|
|
4
|
-
export const logger = new Logger();
|
|
5
|
-
logger.boring = process.env.NODE_ENV === "test";
|
|
6
|
-
export const listProfiles = async ({ flags, storeConfig })=>{
|
|
7
|
-
try {
|
|
8
|
-
const profiles = await fs.readJson(storeConfig);
|
|
9
|
-
if (profiles?.available?.length > 0) {
|
|
10
|
-
const activeProfile = profiles.enabled;
|
|
11
|
-
const messages = activeProfile === undefined ? [] : [
|
|
12
|
-
kleur.green(`★ ${activeProfile} (active)`)
|
|
13
|
-
];
|
|
14
|
-
for (const profile of profiles.available){
|
|
15
|
-
if (profile !== activeProfile) {
|
|
16
|
-
messages.push(`${profile}`);
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
logger.printBox(messages.join("\n"), {
|
|
20
|
-
textAlignment: "left",
|
|
21
|
-
title: "Profiles",
|
|
22
|
-
borderColor: "blue"
|
|
23
|
-
});
|
|
24
|
-
} else {
|
|
25
|
-
logger.warn("No profiles found");
|
|
26
|
-
}
|
|
27
|
-
return 0;
|
|
28
|
-
} catch (error) {
|
|
29
|
-
if (flags.verbose) {
|
|
30
|
-
logger.log(error);
|
|
31
|
-
}
|
|
32
|
-
logger.error("Unable to read the profile configuration file");
|
|
33
|
-
return 1;
|
|
34
|
-
}
|
|
35
|
-
};
|
|
36
|
-
export const createProfile = async ({ storeConfig, storeLocation, profileName, homeLocation })=>{
|
|
37
|
-
let profiles = {
|
|
38
|
-
available: [],
|
|
39
|
-
enabled: undefined
|
|
40
|
-
};
|
|
41
|
-
await fs.ensureFile(storeConfig);
|
|
42
|
-
try {
|
|
43
|
-
// if the profile already exists, do nothing
|
|
44
|
-
profiles = await fs.readJson(storeConfig);
|
|
45
|
-
if (profiles.available.includes(profileName)) {
|
|
46
|
-
logger.warn(`Profile '${profileName}' already exists...`);
|
|
47
|
-
return 0;
|
|
48
|
-
}
|
|
49
|
-
} catch {
|
|
50
|
-
// ignoring error since we are creating the file
|
|
51
|
-
}
|
|
52
|
-
// if the profile does not exist, create
|
|
53
|
-
// a folder named as the profile under the storeLocation folder,
|
|
54
|
-
// with the existing npmrc / yarnrc files
|
|
55
|
-
await fs.ensureDir(`${storeLocation}/${profileName}`);
|
|
56
|
-
// copy the existing npmrc / yarnrc files to the new folder
|
|
57
|
-
const NPMRC = `${homeLocation}/.npmrc`;
|
|
58
|
-
const YARNRC = `${homeLocation}/.yarnrc`;
|
|
59
|
-
if (await fs.pathExists(YARNRC)) {
|
|
60
|
-
await fs.copy(YARNRC, `${storeLocation}/${profileName}/yarnrc`);
|
|
61
|
-
}
|
|
62
|
-
if (await fs.pathExists(NPMRC)) {
|
|
63
|
-
await fs.copy(NPMRC, `${storeLocation}/${profileName}/npmrc`);
|
|
64
|
-
}
|
|
65
|
-
// then add the profile to the configuration file
|
|
66
|
-
const newProfiles = {
|
|
67
|
-
available: [
|
|
68
|
-
...profiles.available,
|
|
69
|
-
profileName
|
|
70
|
-
],
|
|
71
|
-
enabled: profiles.enabled ?? profileName
|
|
72
|
-
};
|
|
73
|
-
await fs.writeJson(storeConfig, newProfiles, {
|
|
74
|
-
spaces: 2
|
|
75
|
-
});
|
|
76
|
-
logger.printBox(`Profile '${profileName}' created`, {
|
|
77
|
-
textAlignment: "left",
|
|
78
|
-
title: "Profiles",
|
|
79
|
-
borderColor: "blue"
|
|
80
|
-
});
|
|
81
|
-
return 0;
|
|
82
|
-
};
|
|
83
|
-
export const switchProfile = async ({ flags, storeConfig, storeLocation, profileName, homeLocation })=>{
|
|
84
|
-
try {
|
|
85
|
-
const profiles = await fs.readJson(storeConfig);
|
|
86
|
-
if (!profiles.available.includes(profileName)) {
|
|
87
|
-
logger.error(`Profile '${profileName}' does not exist`);
|
|
88
|
-
return 1;
|
|
89
|
-
}
|
|
90
|
-
// if profile is already enabled, do nothing
|
|
91
|
-
if (profiles.enabled === profileName) {
|
|
92
|
-
logger.warn(`Profile '${profileName}' is already active`);
|
|
93
|
-
return 0;
|
|
94
|
-
}
|
|
95
|
-
// if profile exists and is not enabled, switch to it by copying
|
|
96
|
-
// the npmrc and yarnrc files from the profile folder to the home folder
|
|
97
|
-
const NPMRC = `${homeLocation}/.npmrc`;
|
|
98
|
-
const PROFILE_NPMRC = `${storeLocation}/${profileName}/npmrc`;
|
|
99
|
-
const YARNRC = `${homeLocation}/.yarnrc`;
|
|
100
|
-
const PROFILE_YARNRC = `${storeLocation}/${profileName}/yarnrc`;
|
|
101
|
-
if (await fs.pathExists(PROFILE_NPMRC)) {
|
|
102
|
-
await fs.copy(PROFILE_NPMRC, NPMRC, {
|
|
103
|
-
overwrite: true
|
|
104
|
-
});
|
|
105
|
-
} else {
|
|
106
|
-
logger.warn(`No npmrc file found for profile '${profileName}'`);
|
|
107
|
-
}
|
|
108
|
-
if (await fs.pathExists(PROFILE_YARNRC)) {
|
|
109
|
-
await fs.copy(PROFILE_YARNRC, YARNRC, {
|
|
110
|
-
overwrite: true
|
|
111
|
-
});
|
|
112
|
-
} else {
|
|
113
|
-
logger.warn(`No yarnrc file found for profile '${profileName}'`);
|
|
114
|
-
}
|
|
115
|
-
const newProfiles = {
|
|
116
|
-
available: profiles.available,
|
|
117
|
-
enabled: profileName
|
|
118
|
-
};
|
|
119
|
-
await fs.writeJson(storeConfig, newProfiles, {
|
|
120
|
-
spaces: 2
|
|
121
|
-
});
|
|
122
|
-
logger.printBox(`Profile switched to '${profileName}'`, {
|
|
123
|
-
textAlignment: "left",
|
|
124
|
-
title: "Profiles",
|
|
125
|
-
borderColor: "blue"
|
|
126
|
-
});
|
|
127
|
-
return 0;
|
|
128
|
-
} catch (error) {
|
|
129
|
-
if (flags.verbose) {
|
|
130
|
-
logger.log(error);
|
|
131
|
-
}
|
|
132
|
-
logger.error("Could not switch profile");
|
|
133
|
-
return 1;
|
|
134
|
-
}
|
|
135
|
-
};
|
|
136
|
-
export const deleteProfile = async ({ flags, profileName, storeConfig, storeLocation })=>{
|
|
137
|
-
try {
|
|
138
|
-
const profiles = await fs.readJson(storeConfig);
|
|
139
|
-
if (!profiles.available.includes(profileName)) {
|
|
140
|
-
logger.error(`Profile '${profileName}' does not exist`);
|
|
141
|
-
return 1;
|
|
142
|
-
}
|
|
143
|
-
// if the profile is enabled, do nothing
|
|
144
|
-
if (profiles.enabled === profileName) {
|
|
145
|
-
logger.error(`Profile '${profileName}' is currently active`);
|
|
146
|
-
return 1;
|
|
147
|
-
}
|
|
148
|
-
// if profile exists, delete it by removing the profile folder
|
|
149
|
-
await fs.remove(`${storeLocation}/${profileName}`);
|
|
150
|
-
// then remove the profile from the configuration file
|
|
151
|
-
const newProfiles = {
|
|
152
|
-
available: profiles.available.filter((profile)=>profile !== profileName),
|
|
153
|
-
enabled: profiles.enabled
|
|
154
|
-
};
|
|
155
|
-
await fs.writeJson(storeConfig, newProfiles, {
|
|
156
|
-
spaces: 2
|
|
157
|
-
});
|
|
158
|
-
logger.printBox(`Profile '${profileName}' deleted`, {
|
|
159
|
-
textAlignment: "left",
|
|
160
|
-
title: "Profiles",
|
|
161
|
-
borderColor: "blue"
|
|
162
|
-
});
|
|
163
|
-
return 0;
|
|
164
|
-
} catch (error) {
|
|
165
|
-
if (flags.verbose) {
|
|
166
|
-
logger.log(error);
|
|
167
|
-
}
|
|
168
|
-
logger.error("Could not delete profile");
|
|
169
|
-
return 1;
|
|
170
|
-
}
|
|
171
|
-
};
|
|
172
|
-
|
|
173
|
-
//# sourceMappingURL=utilities.js.map
|
package/dist/utilities.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/utilities.ts"],"sourcesContent":["import { Logger } from \"@node-cli/logger\";\nimport fs from \"fs-extra\";\nimport kleur from \"kleur\";\n\nexport const logger = new Logger();\nlogger.boring = process.env.NODE_ENV === \"test\";\n\nexport const listProfiles = async ({ flags, storeConfig }) => {\n\ttry {\n\t\tconst profiles = await fs.readJson(storeConfig);\n\n\t\tif (profiles?.available?.length > 0) {\n\t\t\tconst activeProfile = profiles.enabled;\n\t\t\tconst messages =\n\t\t\t\tactiveProfile === undefined\n\t\t\t\t\t? []\n\t\t\t\t\t: [kleur.green(`★ ${activeProfile} (active)`)];\n\n\t\t\tfor (const profile of profiles.available) {\n\t\t\t\tif (profile !== activeProfile) {\n\t\t\t\t\tmessages.push(`${profile}`);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tlogger.printBox(messages.join(\"\\n\"), {\n\t\t\t\ttextAlignment: \"left\",\n\t\t\t\ttitle: \"Profiles\",\n\t\t\t\tborderColor: \"blue\",\n\t\t\t});\n\t\t} else {\n\t\t\tlogger.warn(\"No profiles found\");\n\t\t}\n\t\treturn 0;\n\t} catch (error) {\n\t\tif (flags.verbose) {\n\t\t\tlogger.log(error);\n\t\t}\n\t\tlogger.error(\"Unable to read the profile configuration file\");\n\t\treturn 1;\n\t}\n};\n\nexport const createProfile = async ({\n\tstoreConfig,\n\tstoreLocation,\n\tprofileName,\n\thomeLocation,\n}) => {\n\tlet profiles = { available: [], enabled: undefined };\n\tawait fs.ensureFile(storeConfig);\n\ttry {\n\t\t// if the profile already exists, do nothing\n\t\tprofiles = await fs.readJson(storeConfig);\n\t\tif (profiles.available.includes(profileName)) {\n\t\t\tlogger.warn(`Profile '${profileName}' already exists...`);\n\t\t\treturn 0;\n\t\t}\n\t} catch {\n\t\t// ignoring error since we are creating the file\n\t}\n\n\t// if the profile does not exist, create\n\t// a folder named as the profile under the storeLocation folder,\n\t// with the existing npmrc / yarnrc files\n\tawait fs.ensureDir(`${storeLocation}/${profileName}`);\n\t// copy the existing npmrc / yarnrc files to the new folder\n\tconst NPMRC = `${homeLocation}/.npmrc`;\n\tconst YARNRC = `${homeLocation}/.yarnrc`;\n\tif (await fs.pathExists(YARNRC)) {\n\t\tawait fs.copy(YARNRC, `${storeLocation}/${profileName}/yarnrc`);\n\t}\n\tif (await fs.pathExists(NPMRC)) {\n\t\tawait fs.copy(NPMRC, `${storeLocation}/${profileName}/npmrc`);\n\t}\n\t// then add the profile to the configuration file\n\tconst newProfiles = {\n\t\tavailable: [...profiles.available, profileName],\n\t\tenabled: profiles.enabled ?? profileName,\n\t};\n\tawait fs.writeJson(storeConfig, newProfiles, { spaces: 2 });\n\tlogger.printBox(`Profile '${profileName}' created`, {\n\t\ttextAlignment: \"left\",\n\t\ttitle: \"Profiles\",\n\t\tborderColor: \"blue\",\n\t});\n\treturn 0;\n};\n\nexport const switchProfile = async ({\n\tflags,\n\tstoreConfig,\n\tstoreLocation,\n\tprofileName,\n\thomeLocation,\n}) => {\n\ttry {\n\t\tconst profiles = await fs.readJson(storeConfig);\n\t\tif (!profiles.available.includes(profileName)) {\n\t\t\tlogger.error(`Profile '${profileName}' does not exist`);\n\t\t\treturn 1;\n\t\t}\n\t\t// if profile is already enabled, do nothing\n\t\tif (profiles.enabled === profileName) {\n\t\t\tlogger.warn(`Profile '${profileName}' is already active`);\n\t\t\treturn 0;\n\t\t}\n\t\t// if profile exists and is not enabled, switch to it by copying\n\t\t// the npmrc and yarnrc files from the profile folder to the home folder\n\t\tconst NPMRC = `${homeLocation}/.npmrc`;\n\t\tconst PROFILE_NPMRC = `${storeLocation}/${profileName}/npmrc`;\n\t\tconst YARNRC = `${homeLocation}/.yarnrc`;\n\t\tconst PROFILE_YARNRC = `${storeLocation}/${profileName}/yarnrc`;\n\n\t\tif (await fs.pathExists(PROFILE_NPMRC)) {\n\t\t\tawait fs.copy(PROFILE_NPMRC, NPMRC, {\n\t\t\t\toverwrite: true,\n\t\t\t});\n\t\t} else {\n\t\t\tlogger.warn(`No npmrc file found for profile '${profileName}'`);\n\t\t}\n\t\tif (await fs.pathExists(PROFILE_YARNRC)) {\n\t\t\tawait fs.copy(PROFILE_YARNRC, YARNRC, {\n\t\t\t\toverwrite: true,\n\t\t\t});\n\t\t} else {\n\t\t\tlogger.warn(`No yarnrc file found for profile '${profileName}'`);\n\t\t}\n\n\t\tconst newProfiles = {\n\t\t\tavailable: profiles.available,\n\t\t\tenabled: profileName,\n\t\t};\n\t\tawait fs.writeJson(storeConfig, newProfiles, { spaces: 2 });\n\t\tlogger.printBox(`Profile switched to '${profileName}'`, {\n\t\t\ttextAlignment: \"left\",\n\t\t\ttitle: \"Profiles\",\n\t\t\tborderColor: \"blue\",\n\t\t});\n\t\treturn 0;\n\t} catch (error) {\n\t\tif (flags.verbose) {\n\t\t\tlogger.log(error);\n\t\t}\n\t\tlogger.error(\"Could not switch profile\");\n\t\treturn 1;\n\t}\n};\n\nexport const deleteProfile = async ({\n\tflags,\n\tprofileName,\n\tstoreConfig,\n\tstoreLocation,\n}) => {\n\ttry {\n\t\tconst profiles = await fs.readJson(storeConfig);\n\t\tif (!profiles.available.includes(profileName)) {\n\t\t\tlogger.error(`Profile '${profileName}' does not exist`);\n\t\t\treturn 1;\n\t\t}\n\t\t// if the profile is enabled, do nothing\n\t\tif (profiles.enabled === profileName) {\n\t\t\tlogger.error(`Profile '${profileName}' is currently active`);\n\t\t\treturn 1;\n\t\t}\n\t\t// if profile exists, delete it by removing the profile folder\n\t\tawait fs.remove(`${storeLocation}/${profileName}`);\n\t\t// then remove the profile from the configuration file\n\t\tconst newProfiles = {\n\t\t\tavailable: profiles.available.filter(\n\t\t\t\t(profile: any) => profile !== profileName,\n\t\t\t),\n\t\t\tenabled: profiles.enabled,\n\t\t};\n\t\tawait fs.writeJson(storeConfig, newProfiles, { spaces: 2 });\n\t\tlogger.printBox(`Profile '${profileName}' deleted`, {\n\t\t\ttextAlignment: \"left\",\n\t\t\ttitle: \"Profiles\",\n\t\t\tborderColor: \"blue\",\n\t\t});\n\t\treturn 0;\n\t} catch (error) {\n\t\tif (flags.verbose) {\n\t\t\tlogger.log(error);\n\t\t}\n\t\tlogger.error(\"Could not delete profile\");\n\t\treturn 1;\n\t}\n};\n"],"names":["Logger","fs","kleur","logger","boring","process","env","NODE_ENV","listProfiles","flags","storeConfig","profiles","readJson","available","length","activeProfile","enabled","messages","undefined","green","profile","push","printBox","join","textAlignment","title","borderColor","warn","error","verbose","log","createProfile","storeLocation","profileName","homeLocation","ensureFile","includes","ensureDir","NPMRC","YARNRC","pathExists","copy","newProfiles","writeJson","spaces","switchProfile","PROFILE_NPMRC","PROFILE_YARNRC","overwrite","deleteProfile","remove","filter"],"mappings":"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"}
|