@apollo-annotation/apollo-cli
Advanced tools
Comparing version
@@ -93,3 +93,11 @@ import path from 'node:path'; | ||
} | ||
config.writeConfigFile(); | ||
try { | ||
config.writeConfigFile(); | ||
} | ||
catch (error) { | ||
if (error instanceof ConfigError) { | ||
this.logToStderr(error.message); | ||
this.exit(1); | ||
} | ||
} | ||
} | ||
@@ -96,0 +104,0 @@ async interactiveSetup(config, profileName) { |
@@ -194,2 +194,14 @@ import fs from 'node:fs'; | ||
writeConfigFile() { | ||
let APOLLO_DISABLE_CONFIG_CREATE = false; | ||
if (process.env.APOLLO_DISABLE_CONFIG_CREATE !== undefined && | ||
process.env.APOLLO_DISABLE_CONFIG_CREATE !== '0') { | ||
APOLLO_DISABLE_CONFIG_CREATE = true; | ||
} | ||
if (APOLLO_DISABLE_CONFIG_CREATE && !fs.existsSync(this.configFile)) { | ||
throw new ConfigError(`Configuration file ${this.configFile} does not exist yet, please create it as an empty file first. | ||
On *nix systems you can use: | ||
mkdir -p ${path.dirname(this.configFile)} | ||
touch ${this.configFile}\n`); | ||
} | ||
const yml = YAML.stringify(this.profiles); | ||
@@ -196,0 +208,0 @@ fs.mkdirSync(path.dirname(this.configFile), { recursive: true }); |
@@ -1631,3 +1631,3 @@ { | ||
}, | ||
"version": "0.1.2" | ||
"version": "0.1.3" | ||
} |
{ | ||
"name": "@apollo-annotation/apollo-cli", | ||
"description": "Command line interface for the Apollo annotation server", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"author": "Apollo Team", | ||
@@ -6,0 +6,0 @@ "repository": { |
@@ -17,3 +17,3 @@ # Table of contents | ||
$ apollo (--version) | ||
@apollo-annotation/apollo-cli/0.1.2 linux-x64 node-v18.20.2 | ||
@apollo-annotation/apollo-cli/0.1.3 linux-x64 node-v18.20.2 | ||
$ apollo --help [COMMAND] | ||
@@ -86,3 +86,3 @@ USAGE | ||
_See code: [src/commands/assembly/add-fasta.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/assembly/add-fasta.ts)_ | ||
_See code: [src/commands/assembly/add-fasta.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/assembly/add-fasta.ts)_ | ||
@@ -121,3 +121,3 @@ ## `apollo assembly add-gff` | ||
_See code: [src/commands/assembly/add-gff.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/assembly/add-gff.ts)_ | ||
_See code: [src/commands/assembly/add-gff.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/assembly/add-gff.ts)_ | ||
@@ -164,3 +164,3 @@ ## `apollo assembly check` | ||
_See code: [src/commands/assembly/check.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/assembly/check.ts)_ | ||
_See code: [src/commands/assembly/check.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/assembly/check.ts)_ | ||
@@ -192,3 +192,3 @@ ## `apollo assembly delete` | ||
_See code: [src/commands/assembly/delete.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/assembly/delete.ts)_ | ||
_See code: [src/commands/assembly/delete.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/assembly/delete.ts)_ | ||
@@ -214,3 +214,3 @@ ## `apollo assembly get` | ||
_See code: [src/commands/assembly/get.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/assembly/get.ts)_ | ||
_See code: [src/commands/assembly/get.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/assembly/get.ts)_ | ||
@@ -249,3 +249,3 @@ ## `apollo assembly sequence` | ||
_See code: [src/commands/assembly/sequence.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/assembly/sequence.ts)_ | ||
_See code: [src/commands/assembly/sequence.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/assembly/sequence.ts)_ | ||
@@ -274,3 +274,3 @@ ## `apollo change get` | ||
_See code: [src/commands/change/get.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/change/get.ts)_ | ||
_See code: [src/commands/change/get.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/change/get.ts)_ | ||
@@ -330,3 +330,3 @@ ## `apollo config [KEY] [VALUE]` | ||
_See code: [src/commands/config.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/config.ts)_ | ||
_See code: [src/commands/config.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/config.ts)_ | ||
@@ -361,3 +361,3 @@ ## `apollo feature add-child` | ||
_See code: [src/commands/feature/add-child.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/feature/add-child.ts)_ | ||
_See code: [src/commands/feature/add-child.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/feature/add-child.ts)_ | ||
@@ -395,3 +395,3 @@ ## `apollo feature check` | ||
_See code: [src/commands/feature/check.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/feature/check.ts)_ | ||
_See code: [src/commands/feature/check.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/feature/check.ts)_ | ||
@@ -427,3 +427,3 @@ ## `apollo feature copy` | ||
_See code: [src/commands/feature/copy.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/feature/copy.ts)_ | ||
_See code: [src/commands/feature/copy.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/feature/copy.ts)_ | ||
@@ -452,3 +452,3 @@ ## `apollo feature delete` | ||
_See code: [src/commands/feature/delete.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/feature/delete.ts)_ | ||
_See code: [src/commands/feature/delete.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/feature/delete.ts)_ | ||
@@ -495,3 +495,3 @@ ## `apollo feature edit` | ||
_See code: [src/commands/feature/edit.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/feature/edit.ts)_ | ||
_See code: [src/commands/feature/edit.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/feature/edit.ts)_ | ||
@@ -536,3 +536,3 @@ ## `apollo feature edit-attribute` | ||
_See code: [src/commands/feature/edit-attribute.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/feature/edit-attribute.ts)_ | ||
_See code: [src/commands/feature/edit-attribute.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/feature/edit-attribute.ts)_ | ||
@@ -571,3 +571,3 @@ ## `apollo feature edit-coords` | ||
_See code: [src/commands/feature/edit-coords.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/feature/edit-coords.ts)_ | ||
_See code: [src/commands/feature/edit-coords.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/feature/edit-coords.ts)_ | ||
@@ -595,3 +595,3 @@ ## `apollo feature edit-type` | ||
_See code: [src/commands/feature/edit-type.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/feature/edit-type.ts)_ | ||
_See code: [src/commands/feature/edit-type.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/feature/edit-type.ts)_ | ||
@@ -629,3 +629,3 @@ ## `apollo feature get` | ||
_See code: [src/commands/feature/get.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/feature/get.ts)_ | ||
_See code: [src/commands/feature/get.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/feature/get.ts)_ | ||
@@ -659,3 +659,3 @@ ## `apollo feature get-id` | ||
_See code: [src/commands/feature/get-id.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/feature/get-id.ts)_ | ||
_See code: [src/commands/feature/get-id.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/feature/get-id.ts)_ | ||
@@ -688,3 +688,3 @@ ## `apollo feature import` | ||
_See code: [src/commands/feature/import.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/feature/import.ts)_ | ||
_See code: [src/commands/feature/import.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/feature/import.ts)_ | ||
@@ -740,3 +740,3 @@ ## `apollo feature search` | ||
_See code: [src/commands/feature/search.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/feature/search.ts)_ | ||
_See code: [src/commands/feature/search.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/feature/search.ts)_ | ||
@@ -801,3 +801,3 @@ ## `apollo help [COMMANDS]` | ||
_See code: [src/commands/login.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/login.ts)_ | ||
_See code: [src/commands/login.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/login.ts)_ | ||
@@ -831,3 +831,3 @@ ## `apollo logout` | ||
_See code: [src/commands/logout.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/logout.ts)_ | ||
_See code: [src/commands/logout.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/logout.ts)_ | ||
@@ -864,3 +864,3 @@ ## `apollo refseq get` | ||
_See code: [src/commands/refseq/get.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/refseq/get.ts)_ | ||
_See code: [src/commands/refseq/get.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/refseq/get.ts)_ | ||
@@ -887,3 +887,3 @@ ## `apollo status` | ||
_See code: [src/commands/status.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/status.ts)_ | ||
_See code: [src/commands/status.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/status.ts)_ | ||
@@ -923,3 +923,3 @@ ## `apollo user get` | ||
_See code: [src/commands/user/get.ts](https://github.com/GMOD/Apollo3/blob/v0.1.2/packages/apollo-cli/src/commands/user/get.ts)_ | ||
_See code: [src/commands/user/get.ts](https://github.com/GMOD/Apollo3/blob/v0.1.3/packages/apollo-cli/src/commands/user/get.ts)_ | ||
<!-- commandsstop --> |
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
233765
0.33%5492
0.35%7
40%