@gasket/cli
Advanced tools
Comparing version 5.1.0 to 5.1.3
# `@gasket/cli` | ||
### 5.1.3 | ||
- Fix output of version blame if overridden ([#147]) | ||
### 5.1.0 | ||
@@ -273,1 +277,2 @@ | ||
[#143]: https://github.com/godaddy/gasket/pull/143 | ||
[#147]: https://github.com/godaddy/gasket/pull/147 |
@@ -1,1 +0,1 @@ | ||
{"version":"5.1.0","commands":{"create":{"id":"create","description":"Create a new gasket application","pluginName":"@gasket/cli","pluginType":"core","aliases":[],"flags":{"presets":{"name":"presets","type":"option","char":"p","description":"Initial gasket preset(s) to use.\nCan be set as short name with version (e.g. --presets nextjs@^1.0.0)\nOr other (multiple) custom presets (e.g. --presets my-gasket-preset@1.0.0.beta-1,nextjs@^1.0.0)"},"plugins":{"name":"plugins","type":"option","description":"Additional plugin(s) to install. Can be set as\nmultiple flags (e.g. --plugins jest --plugins zkconfig@^1.0.0)\ncomma-separated values: --plugins=jest,zkconfig^1.0.0\n "},"package-manager":{"name":"package-manager","type":"option","description":"Selects which package manager you would like to use during\n installation. (e.g. --package-manager yarn)"},"bootstrap":{"name":"bootstrap","type":"boolean","description":"(INTERNAL) If provided, skip the bootstrap phase of gasket create","hidden":true,"allowNo":true},"generate":{"name":"generate","type":"boolean","description":"(INTERNAL) If provided, skip the generate phase of gasket create","hidden":true,"allowNo":true},"npm-link":{"name":"npm-link","type":"option","description":"(INTERNAL) Local packages to be linked. Can be set as\nmultiple flags (e.g. --npm-link @gasket/plugin-jest --npm-link some-test-preset)\ncomma-separated values: --npm-link=@gasket/plugin-jest,some-test-preset","hidden":true},"preset-path":{"name":"preset-path","type":"option","description":"(INTERNAL) Paths the a local preset packages. Can be absolute\nor relative to the current working directory.\ncomma-separated values: --preset-path=path1,path2","hidden":true},"npmconfig":{"name":"npmconfig","type":"option","description":"(DEPRECATED) .npmrc to be used for npm actions in @gasket/cli'.\nInstead, prefer environment variables to configure package managers\n","hidden":true}},"args":[{"name":"appname","description":"Name of the gasket application to create","required":true}]}}} | ||
{"version":"5.1.3","commands":{"create":{"id":"create","description":"Create a new gasket application","pluginName":"@gasket/cli","pluginType":"core","aliases":[],"flags":{"presets":{"name":"presets","type":"option","char":"p","description":"Initial gasket preset(s) to use.\nCan be set as short name with version (e.g. --presets nextjs@^1.0.0)\nOr other (multiple) custom presets (e.g. --presets my-gasket-preset@1.0.0.beta-1,nextjs@^1.0.0)"},"plugins":{"name":"plugins","type":"option","description":"Additional plugin(s) to install. Can be set as\nmultiple flags (e.g. --plugins jest --plugins zkconfig@^1.0.0)\ncomma-separated values: --plugins=jest,zkconfig^1.0.0\n "},"package-manager":{"name":"package-manager","type":"option","description":"Selects which package manager you would like to use during\n installation. (e.g. --package-manager yarn)"},"bootstrap":{"name":"bootstrap","type":"boolean","description":"(INTERNAL) If provided, skip the bootstrap phase of gasket create","hidden":true,"allowNo":true},"generate":{"name":"generate","type":"boolean","description":"(INTERNAL) If provided, skip the generate phase of gasket create","hidden":true,"allowNo":true},"npm-link":{"name":"npm-link","type":"option","description":"(INTERNAL) Local packages to be linked. Can be set as\nmultiple flags (e.g. --npm-link @gasket/plugin-jest --npm-link some-test-preset)\ncomma-separated values: --npm-link=@gasket/plugin-jest,some-test-preset","hidden":true},"preset-path":{"name":"preset-path","type":"option","description":"(INTERNAL) Paths the a local preset packages. Can be absolute\nor relative to the current working directory.\ncomma-separated values: --preset-path=path1,path2","hidden":true},"npmconfig":{"name":"npmconfig","type":"option","description":"(DEPRECATED) .npmrc to be used for npm actions in @gasket/cli'.\nInstead, prefer environment variables to configure package managers\n","hidden":true}},"args":[{"name":"appname","description":"Name of the gasket application to create","required":true}]}}} |
{ | ||
"name": "@gasket/cli", | ||
"version": "5.1.0", | ||
"version": "5.1.3", | ||
"description": "CLI for rapid application development with gasket", | ||
@@ -46,2 +46,6 @@ "main": "src/index.js", | ||
"author": "GoDaddy Operating Company, LLC", | ||
"maintainers": [ | ||
"Andrew Gerard <agerard@godaddy.com>", | ||
"Charlie Robbins <charlie.robbins@gmail.com>" | ||
], | ||
"license": "MIT", | ||
@@ -53,10 +57,10 @@ "bugs": { | ||
"dependencies": { | ||
"@gasket/engine": "^5.1.0", | ||
"@gasket/plugin-command": "^5.1.0", | ||
"@gasket/plugin-git": "^5.1.0", | ||
"@gasket/plugin-lifecycle": "^5.1.0", | ||
"@gasket/plugin-metadata": "^5.1.0", | ||
"@gasket/plugin-start": "^5.0.2", | ||
"@gasket/engine": "^5.1.3", | ||
"@gasket/plugin-command": "^5.1.3", | ||
"@gasket/plugin-git": "^5.1.3", | ||
"@gasket/plugin-lifecycle": "^5.1.3", | ||
"@gasket/plugin-metadata": "^5.1.3", | ||
"@gasket/plugin-start": "^5.1.3", | ||
"@gasket/resolve": "^5.1.0", | ||
"@gasket/utils": "^5.1.0", | ||
"@gasket/utils": "^5.1.1", | ||
"@oclif/command": "^1.5.14", | ||
@@ -203,3 +207,3 @@ "@oclif/config": "^1.13.0", | ||
}, | ||
"gitHead": "e302b2a69664f911592012d280be280278db236f" | ||
"gitHead": "4431277d79fa7b2bc19880df1bb4a5de1091a488" | ||
} |
@@ -293,5 +293,6 @@ /* eslint-disable complexity, max-statements */ | ||
const prevName = this.blame.get(blameId).join(', '); | ||
const newer = this.tryGetNewerRange(prev, ver); | ||
const overriden = newer === ver; | ||
if (overriden) { | ||
const overridden = newer === ver; | ||
if (overridden) { | ||
existing[dep] = ver; | ||
@@ -304,3 +305,3 @@ this.blame.set(blameId, [name]); | ||
Conflicting versions for ${dep} in "${key}": | ||
- ${prev} provided by ${this.blame.get(blameId).join(', ')} | ||
- ${prev} provided by ${prevName} | ||
- ${ver} provided by ${name} | ||
@@ -307,0 +308,0 @@ Using ${existing[dep]}, but this may cause unexpected behavior.`); |
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
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
116837
1996
Updated@gasket/engine@^5.1.3
Updated@gasket/plugin-git@^5.1.3
Updated@gasket/plugin-start@^5.1.3
Updated@gasket/utils@^5.1.1