0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Bumped default engines.ghost-api to v3

This commit is contained in:
Nazar Gargol 2019-09-16 23:05:12 +02:00
parent 5be275bd46
commit f371ccd9e5
3 changed files with 7 additions and 7 deletions

View file

@ -16,7 +16,7 @@ const allowedKeys = ['ghost-api'];
* v2
* v0.1
* canary
*
*
* Goal: Extract major version from input.
*
* @param packageJson
@ -43,7 +43,7 @@ module.exports = (packageJson) => {
if (availableApiVersions[apiVersionMajor]) {
packageJson.engines['ghost-api'] = availableApiVersions[apiVersionMajor];
} else {
packageJson.engines['ghost-api'] = 'v0.1';
packageJson.engines['ghost-api'] = 'v3';
}
}

View file

@ -1,3 +1,3 @@
{
"ghost-api": "v0.1"
"ghost-api": "v3"
}

View file

@ -10,7 +10,7 @@ describe('Themes: engines', function () {
it('no engines', function () {
const engines = themeEngines.create();
engines.should.eql({
'ghost-api': 'v0.1'
'ghost-api': 'v3'
});
});
@ -35,7 +35,7 @@ describe('Themes: engines', function () {
});
engines.should.eql({
'ghost-api': 'v0.1'
'ghost-api': 'v3'
});
});
@ -47,7 +47,7 @@ describe('Themes: engines', function () {
});
engines.should.eql({
'ghost-api': 'v0.1'
'ghost-api': 'v3'
});
});
@ -131,7 +131,7 @@ describe('Themes: engines', function () {
});
engines.should.eql({
'ghost-api': 'v0.1'
'ghost-api': 'v3'
});
});
});