Skip to content

Commit

Permalink
Merge pull request #1930 from alphagov/release-13.2.2
Browse files Browse the repository at this point in the history
Release 13.2.2
  • Loading branch information
nataliecarey authored Jan 24, 2023
2 parents 762bf17 + eb10e98 commit fc89421
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

## 13.2.2

### Fixes

- [#1929: Fixing create message](https://github.com/alphagov/govuk-prototype-kit/pull/1929)

## 13.2.1

### Fixes
Expand Down
16 changes: 9 additions & 7 deletions bin/cli
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,15 @@ const verboseLogger = !argv.options.verbose
}

const progressLogger = function () {
const versionOfInstaller = argv.options['created-from-version']
if (!versionOfInstaller) {
return
}
const version = splitSemverVersion(versionOfInstaller)
if (version.major === 13 && version.minor < 2) {
return
if (argv.command === 'init') {
const versionOfInstaller = argv.options['created-from-version']
if (!versionOfInstaller) {
return
}
const version = splitSemverVersion(versionOfInstaller)
if (version.major === 13 && version.minor < 2) {
return
}
}

console.log(' - ', ...arguments)
Expand Down
4 changes: 2 additions & 2 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "govuk-prototype-kit",
"description": "Rapidly create HTML prototypes of GOV.UK services",
"version": "13.2.1",
"version": "13.2.2",
"engines": {
"node": "^16.x || >= 18.x"
},
Expand Down

0 comments on commit fc89421

Please sign in to comment.