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:
parent
5be275bd46
commit
f371ccd9e5
3 changed files with 7 additions and 7 deletions
|
@ -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';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"ghost-api": "v0.1"
|
||||
"ghost-api": "v3"
|
||||
}
|
||||
|
|
|
@ -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'
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue