@apollosproject/cli
Advanced tools
Comparing version 0.1.4 to 0.1.5
@@ -5,2 +5,13 @@ # Changelog | ||
## [0.1.5](https://github.com/apollosproject/cli/compare/v0.1.4...v0.1.5) (2022-06-22) | ||
### Features | ||
* adds amplitude helper ([93030a2](https://github.com/apollosproject/cli/commit/93030a2d72606e0b5ca922bc4ac4ef1c7a3b05e3)) | ||
* adds bugsnag to third party services ([#6](https://github.com/apollosproject/cli/issues/6)) ([057cf70](https://github.com/apollosproject/cli/commit/057cf70890d72664d8e91b92934edf10724a1ab6)) | ||
* adds config get command ([#7](https://github.com/apollosproject/cli/issues/7)) ([5abbc46](https://github.com/apollosproject/cli/commit/5abbc4651572d871105646c5c93485ea8b1c70dd)) | ||
* adds config set command ([76eb81f](https://github.com/apollosproject/cli/commit/76eb81fb06872bcc2aa603aad73b36e379a448d3)) | ||
* adds onesignal notification icons to logo ([38d38c0](https://github.com/apollosproject/cli/commit/38d38c08dfbfc2822b4a726c3feffac64eefb13b)) | ||
## [0.1.4](https://github.com/apollosproject/cli/compare/v0.1.3...v0.1.4) (2022-06-09) | ||
@@ -7,0 +18,0 @@ |
@@ -9,5 +9,7 @@ #!/usr/bin/env node | ||
import version from './utils/get-version.cjs'; | ||
import scriptsDir from './utils/get-scripts-dir.cjs'; | ||
import makeMobileCommand from './commands/mobile/index.js'; | ||
import './src/utils/load-env.cjs'; | ||
import version from './src/utils/get-version.cjs'; | ||
import scriptsDir from './src/utils/get-scripts-dir.cjs'; | ||
import makeMobileCommand from './src/commands/mobile/index.js'; | ||
import makeConfigCommand from './src/commands/config.js'; | ||
@@ -30,2 +32,3 @@ const exec = util.promisify(baseExec); | ||
program.addCommand(makeMobileCommand()); | ||
program.addCommand(makeConfigCommand()); | ||
@@ -32,0 +35,0 @@ program |
{ | ||
"name": "@apollosproject/cli", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"repository": "github:apollosproject/cli", | ||
@@ -26,3 +26,3 @@ "description": "", | ||
"scripts": { | ||
"postbump": "yarn test -t version -u && git add __tests__/__snapshots__/index.tests.js.snap", | ||
"postbump": "yarn test -t version -u && git add src/__tests__/__snapshots__/index.tests.js.snap && git commit -m version_snap", | ||
"postchangelog": "sed -i \"\" \"s/### \\[/## \\[/g\" CHANGELOG.md", | ||
@@ -36,2 +36,3 @@ "posttag": "git push --follow-tags origin master && yarn publish . && gh-release --yes" | ||
"consola": "^2.15.3", | ||
"dotenv": "^16.0.1", | ||
"execa": "^6.0.0", | ||
@@ -38,0 +39,0 @@ "ora": "^6.1.0", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
42982
31
663
1
20
9
5
3
+ Addeddotenv@^16.0.1
+ Addeddotenv@16.4.5(transitive)