mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-24 06:35:49 +03:00
Added syncing and theme exposure of custom theme settings (#13354)
refs https://github.com/TryGhost/Team/issues/1070 - added `@tryghost/custom-theme-settings-service` as a dependency - `core/server/services/custom-theme-settings` creates an instance of the new service passing in the model used for storing the setting keys/values and a cache instance - requiring `core/shared/services/custom-theme-settings-cache` creates a cache instance, it has no dependencies so can be required anywhere and the first require will initialize the shared instance - updated the theme activation bridge to trigger the theme settings service to sync the newly activated theme settings and populate the cache - updated theme validation to pass `labs` through as an option so that we get custom theme settings back as part of the checked theme as that's what is passed to the custom theme settings service
This commit is contained in:
parent
cecec3d253
commit
04dd409243
@ -5,6 +5,7 @@ const {api} = require('../proxy');
|
|||||||
const errors = require('@tryghost/errors');
|
const errors = require('@tryghost/errors');
|
||||||
const tpl = require('@tryghost/tpl');
|
const tpl = require('@tryghost/tpl');
|
||||||
const settingsCache = require('../../../shared/settings-cache');
|
const settingsCache = require('../../../shared/settings-cache');
|
||||||
|
const customThemeSettingsCache = require('../../../shared/custom-theme-settings-cache');
|
||||||
const labs = require('../../../shared/labs');
|
const labs = require('../../../shared/labs');
|
||||||
const activeTheme = require('./active');
|
const activeTheme = require('./active');
|
||||||
const preview = require('./preview');
|
const preview = require('./preview');
|
||||||
@ -114,6 +115,7 @@ async function updateGlobalTemplateOptions(req, res, next) {
|
|||||||
posts_per_page: activeTheme.get().config('posts_per_page'),
|
posts_per_page: activeTheme.get().config('posts_per_page'),
|
||||||
image_sizes: activeTheme.get().config('image_sizes')
|
image_sizes: activeTheme.get().config('image_sizes')
|
||||||
};
|
};
|
||||||
|
const themeSettingsData = customThemeSettingsCache.getAll();
|
||||||
const productData = await getProductAndPricesData();
|
const productData = await getProductAndPricesData();
|
||||||
const priceData = calculateLegacyPriceData(productData);
|
const priceData = calculateLegacyPriceData(productData);
|
||||||
|
|
||||||
@ -136,7 +138,8 @@ async function updateGlobalTemplateOptions(req, res, next) {
|
|||||||
config: themeData,
|
config: themeData,
|
||||||
price: priceData,
|
price: priceData,
|
||||||
product,
|
product,
|
||||||
products
|
products,
|
||||||
|
custom: themeSettingsData
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
8
core/server/services/custom-theme-settings.js
Normal file
8
core/server/services/custom-theme-settings.js
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
const {Service: CustomThemeSettingsService} = require('@tryghost/custom-theme-settings-service');
|
||||||
|
const customThemeSettingsCache = require('../../shared/custom-theme-settings-cache');
|
||||||
|
const models = require('../models');
|
||||||
|
|
||||||
|
module.exports = new CustomThemeSettingsService({
|
||||||
|
model: models.CustomThemeSetting,
|
||||||
|
cache: customThemeSettingsCache
|
||||||
|
});
|
@ -1,5 +1,7 @@
|
|||||||
const debug = require('@tryghost/debug')('themes');
|
const debug = require('@tryghost/debug')('themes');
|
||||||
const bridge = require('../../../bridge');
|
const bridge = require('../../../bridge');
|
||||||
|
const labs = require('../../../shared/labs');
|
||||||
|
const customThemeSettings = require('../custom-theme-settings');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* These helper methods mean that the bridge is only required in one place
|
* These helper methods mean that the bridge is only required in one place
|
||||||
@ -8,14 +10,26 @@ const bridge = require('../../../bridge');
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
activateFromBoot: (themeName, theme, checkedTheme) => {
|
activateFromBoot: (themeName, theme, checkedTheme) => {
|
||||||
debug('Activating theme (method A on boot)', themeName);
|
debug('Activating theme (method A on boot)', themeName);
|
||||||
|
// TODO: probably a better place for this to happen - after successful activation / when reloading site?
|
||||||
|
if (labs.isSet('customThemeSettings')) {
|
||||||
|
customThemeSettings.activateTheme(checkedTheme);
|
||||||
|
}
|
||||||
bridge.activateTheme(theme, checkedTheme);
|
bridge.activateTheme(theme, checkedTheme);
|
||||||
},
|
},
|
||||||
activateFromAPI: (themeName, theme, checkedTheme) => {
|
activateFromAPI: (themeName, theme, checkedTheme) => {
|
||||||
debug('Activating theme (method B on API "activate")', themeName);
|
debug('Activating theme (method B on API "activate")', themeName);
|
||||||
|
// TODO: probably a better place for this to happen - after successful activation / when reloading site?
|
||||||
|
if (labs.isSet('customThemeSettings')) {
|
||||||
|
customThemeSettings.activateTheme(checkedTheme);
|
||||||
|
}
|
||||||
bridge.activateTheme(theme, checkedTheme);
|
bridge.activateTheme(theme, checkedTheme);
|
||||||
},
|
},
|
||||||
activateFromAPIOverride: (themeName, theme, checkedTheme) => {
|
activateFromAPIOverride: (themeName, theme, checkedTheme) => {
|
||||||
debug('Activating theme (method C on API "override")', themeName);
|
debug('Activating theme (method C on API "override")', themeName);
|
||||||
|
// TODO: probably a better place for this to happen - after successful activation / when reloading site?
|
||||||
|
if (labs.isSet('customThemeSettings')) {
|
||||||
|
customThemeSettings.activateTheme(checkedTheme);
|
||||||
|
}
|
||||||
bridge.activateTheme(theme, checkedTheme);
|
bridge.activateTheme(theme, checkedTheme);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -2,6 +2,7 @@ const debug = require('@tryghost/debug')('themes');
|
|||||||
const _ = require('lodash');
|
const _ = require('lodash');
|
||||||
const fs = require('fs-extra');
|
const fs = require('fs-extra');
|
||||||
const config = require('../../../shared/config');
|
const config = require('../../../shared/config');
|
||||||
|
const labs = require('../../../shared/labs');
|
||||||
const tpl = require('@tryghost/tpl');
|
const tpl = require('@tryghost/tpl');
|
||||||
const errors = require('@tryghost/errors');
|
const errors = require('@tryghost/errors');
|
||||||
|
|
||||||
@ -27,12 +28,14 @@ const check = async function check(theme, isZip) {
|
|||||||
debug('zip mode');
|
debug('zip mode');
|
||||||
checkedTheme = await gscan.checkZip(theme, {
|
checkedTheme = await gscan.checkZip(theme, {
|
||||||
keepExtractedDir: true,
|
keepExtractedDir: true,
|
||||||
checkVersion: 'canary'
|
checkVersion: 'canary',
|
||||||
|
labs: labs.getAll()
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
debug('non-zip mode');
|
debug('non-zip mode');
|
||||||
checkedTheme = await gscan.check(theme.path, {
|
checkedTheme = await gscan.check(theme.path, {
|
||||||
checkVersion: 'canary'
|
checkVersion: 'canary',
|
||||||
|
labs: labs.getAll()
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
3
core/shared/custom-theme-settings-cache.js
Normal file
3
core/shared/custom-theme-settings-cache.js
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
const {Cache: CustomThemeSettingsCache} = require('@tryghost/custom-theme-settings-service');
|
||||||
|
|
||||||
|
module.exports = new CustomThemeSettingsCache();
|
@ -59,6 +59,7 @@
|
|||||||
"@tryghost/color-utils": "0.1.2",
|
"@tryghost/color-utils": "0.1.2",
|
||||||
"@tryghost/config-url-helpers": "0.1.1",
|
"@tryghost/config-url-helpers": "0.1.1",
|
||||||
"@tryghost/constants": "0.1.9",
|
"@tryghost/constants": "0.1.9",
|
||||||
|
"@tryghost/custom-theme-settings-service": "0.0.2",
|
||||||
"@tryghost/debug": "0.1.5",
|
"@tryghost/debug": "0.1.5",
|
||||||
"@tryghost/email-analytics-provider-mailgun": "1.0.1",
|
"@tryghost/email-analytics-provider-mailgun": "1.0.1",
|
||||||
"@tryghost/email-analytics-service": "1.0.1",
|
"@tryghost/email-analytics-service": "1.0.1",
|
||||||
@ -120,7 +121,7 @@
|
|||||||
"ghost-storage-base": "0.0.6",
|
"ghost-storage-base": "0.0.6",
|
||||||
"glob": "7.2.0",
|
"glob": "7.2.0",
|
||||||
"got": "9.6.0",
|
"got": "9.6.0",
|
||||||
"gscan": "4.2.1",
|
"gscan": "4.3.1",
|
||||||
"html-to-text": "5.1.1",
|
"html-to-text": "5.1.1",
|
||||||
"image-size": "1.0.0",
|
"image-size": "1.0.0",
|
||||||
"intl": "1.2.5",
|
"intl": "1.2.5",
|
||||||
|
144
yarn.lock
144
yarn.lock
@ -975,17 +975,6 @@
|
|||||||
component-type "^1.2.1"
|
component-type "^1.2.1"
|
||||||
join-component "^1.1.0"
|
join-component "^1.1.0"
|
||||||
|
|
||||||
"@sentry/core@6.10.0":
|
|
||||||
version "6.10.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@sentry/core/-/core-6.10.0.tgz#70af9dc72bb6a5b59062a31b7de023f7f1878357"
|
|
||||||
integrity sha512-5KlxHJlbD7AMo+b9pMGkjxUOfMILtsqCtGgI7DMvZNfEkdohO8QgUY+hPqr540kmwArFS91ipQYWhqzGaOhM3Q==
|
|
||||||
dependencies:
|
|
||||||
"@sentry/hub" "6.10.0"
|
|
||||||
"@sentry/minimal" "6.10.0"
|
|
||||||
"@sentry/types" "6.10.0"
|
|
||||||
"@sentry/utils" "6.10.0"
|
|
||||||
tslib "^1.9.3"
|
|
||||||
|
|
||||||
"@sentry/core@6.13.2":
|
"@sentry/core@6.13.2":
|
||||||
version "6.13.2"
|
version "6.13.2"
|
||||||
resolved "https://registry.yarnpkg.com/@sentry/core/-/core-6.13.2.tgz#2ce164f81667aa89cd116f807d772b4718434583"
|
resolved "https://registry.yarnpkg.com/@sentry/core/-/core-6.13.2.tgz#2ce164f81667aa89cd116f807d772b4718434583"
|
||||||
@ -997,15 +986,6 @@
|
|||||||
"@sentry/utils" "6.13.2"
|
"@sentry/utils" "6.13.2"
|
||||||
tslib "^1.9.3"
|
tslib "^1.9.3"
|
||||||
|
|
||||||
"@sentry/hub@6.10.0":
|
|
||||||
version "6.10.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-6.10.0.tgz#d59be18016426fd3a5e8d38712c2080466aafe3c"
|
|
||||||
integrity sha512-MV8wjhWiFAXZAhmj7Ef5QdBr2IF93u8xXiIo2J+dRZ7eVa4/ZszoUiDbhUcl/TPxczaw4oW2a6tINBNFLzXiig==
|
|
||||||
dependencies:
|
|
||||||
"@sentry/types" "6.10.0"
|
|
||||||
"@sentry/utils" "6.10.0"
|
|
||||||
tslib "^1.9.3"
|
|
||||||
|
|
||||||
"@sentry/hub@6.13.2":
|
"@sentry/hub@6.13.2":
|
||||||
version "6.13.2"
|
version "6.13.2"
|
||||||
resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-6.13.2.tgz#ebc66fd55c96c7686a53ffd3521b6a63f883bb79"
|
resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-6.13.2.tgz#ebc66fd55c96c7686a53ffd3521b6a63f883bb79"
|
||||||
@ -1015,15 +995,6 @@
|
|||||||
"@sentry/utils" "6.13.2"
|
"@sentry/utils" "6.13.2"
|
||||||
tslib "^1.9.3"
|
tslib "^1.9.3"
|
||||||
|
|
||||||
"@sentry/minimal@6.10.0":
|
|
||||||
version "6.10.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-6.10.0.tgz#9404b93fae649b6c48e1da8f0991b87cf9999561"
|
|
||||||
integrity sha512-yarm046UgUFIBoxqnBan2+BEgaO9KZCrLzsIsmALiQvpfW92K1lHurSawl5W6SR7wCYBnNn7CPvPE/BHFdy4YA==
|
|
||||||
dependencies:
|
|
||||||
"@sentry/hub" "6.10.0"
|
|
||||||
"@sentry/types" "6.10.0"
|
|
||||||
tslib "^1.9.3"
|
|
||||||
|
|
||||||
"@sentry/minimal@6.13.2":
|
"@sentry/minimal@6.13.2":
|
||||||
version "6.13.2"
|
version "6.13.2"
|
||||||
resolved "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-6.13.2.tgz#de3ecc62b9463bf56ccdbcf4c75f7ea1aeeebc11"
|
resolved "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-6.13.2.tgz#de3ecc62b9463bf56ccdbcf4c75f7ea1aeeebc11"
|
||||||
@ -1033,21 +1004,6 @@
|
|||||||
"@sentry/types" "6.13.2"
|
"@sentry/types" "6.13.2"
|
||||||
tslib "^1.9.3"
|
tslib "^1.9.3"
|
||||||
|
|
||||||
"@sentry/node@6.10.0":
|
|
||||||
version "6.10.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@sentry/node/-/node-6.10.0.tgz#d91a6877f3447d7349a7f343a1fcadc319002c09"
|
|
||||||
integrity sha512-buGmOjsTnxebHSfa3r/rhpjDk8xmrILG4xslTgV1C2JpbUtf96QnYNNydfsfAGcZrLWO0gid/wigxsx1fdXT8A==
|
|
||||||
dependencies:
|
|
||||||
"@sentry/core" "6.10.0"
|
|
||||||
"@sentry/hub" "6.10.0"
|
|
||||||
"@sentry/tracing" "6.10.0"
|
|
||||||
"@sentry/types" "6.10.0"
|
|
||||||
"@sentry/utils" "6.10.0"
|
|
||||||
cookie "^0.4.1"
|
|
||||||
https-proxy-agent "^5.0.0"
|
|
||||||
lru_map "^0.3.3"
|
|
||||||
tslib "^1.9.3"
|
|
||||||
|
|
||||||
"@sentry/node@6.13.2":
|
"@sentry/node@6.13.2":
|
||||||
version "6.13.2"
|
version "6.13.2"
|
||||||
resolved "https://registry.yarnpkg.com/@sentry/node/-/node-6.13.2.tgz#6f5ee51eacad19b59e6ffb70b2d0e14396fd6233"
|
resolved "https://registry.yarnpkg.com/@sentry/node/-/node-6.13.2.tgz#6f5ee51eacad19b59e6ffb70b2d0e14396fd6233"
|
||||||
@ -1063,17 +1019,6 @@
|
|||||||
lru_map "^0.3.3"
|
lru_map "^0.3.3"
|
||||||
tslib "^1.9.3"
|
tslib "^1.9.3"
|
||||||
|
|
||||||
"@sentry/tracing@6.10.0":
|
|
||||||
version "6.10.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@sentry/tracing/-/tracing-6.10.0.tgz#8dcdc28cccfad976540a3c801acb6914b9c0802e"
|
|
||||||
integrity sha512-jZj6Aaf8kU5wgyNXbAJHosHn8OOFdK14lgwYPb/AIDsY35g9a9ncTOqIOBp8X3KkmSR8lcBzAEyiUzCxAis2jA==
|
|
||||||
dependencies:
|
|
||||||
"@sentry/hub" "6.10.0"
|
|
||||||
"@sentry/minimal" "6.10.0"
|
|
||||||
"@sentry/types" "6.10.0"
|
|
||||||
"@sentry/utils" "6.10.0"
|
|
||||||
tslib "^1.9.3"
|
|
||||||
|
|
||||||
"@sentry/tracing@6.13.2":
|
"@sentry/tracing@6.13.2":
|
||||||
version "6.13.2"
|
version "6.13.2"
|
||||||
resolved "https://registry.yarnpkg.com/@sentry/tracing/-/tracing-6.13.2.tgz#512389ba459f48ae75e14f1528ab062dc46e4956"
|
resolved "https://registry.yarnpkg.com/@sentry/tracing/-/tracing-6.13.2.tgz#512389ba459f48ae75e14f1528ab062dc46e4956"
|
||||||
@ -1085,24 +1030,11 @@
|
|||||||
"@sentry/utils" "6.13.2"
|
"@sentry/utils" "6.13.2"
|
||||||
tslib "^1.9.3"
|
tslib "^1.9.3"
|
||||||
|
|
||||||
"@sentry/types@6.10.0":
|
|
||||||
version "6.10.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-6.10.0.tgz#6b1f44e5ed4dbc2710bead24d1b32fb08daf04e1"
|
|
||||||
integrity sha512-M7s0JFgG7/6/yNVYoPUbxzaXDhnzyIQYRRJJKRaTD77YO4MHvi4Ke8alBWqD5fer0cPIfcSkBqa9BLdqRqcMWw==
|
|
||||||
|
|
||||||
"@sentry/types@6.13.2":
|
"@sentry/types@6.13.2":
|
||||||
version "6.13.2"
|
version "6.13.2"
|
||||||
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-6.13.2.tgz#8388d5b92ea8608936e7aae842801dc90e0184e6"
|
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-6.13.2.tgz#8388d5b92ea8608936e7aae842801dc90e0184e6"
|
||||||
integrity sha512-6WjGj/VjjN8LZDtqJH5ikeB1o39rO1gYS6anBxiS3d0sXNBb3Ux0pNNDFoBxQpOhmdDHXYS57MEptX9EV82gmg==
|
integrity sha512-6WjGj/VjjN8LZDtqJH5ikeB1o39rO1gYS6anBxiS3d0sXNBb3Ux0pNNDFoBxQpOhmdDHXYS57MEptX9EV82gmg==
|
||||||
|
|
||||||
"@sentry/utils@6.10.0":
|
|
||||||
version "6.10.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-6.10.0.tgz#839a099fa0a1f0ca0893c7ce8c55ba0608c1d80f"
|
|
||||||
integrity sha512-F9OczOcZMFtazYVZ6LfRIe65/eOfQbiAedIKS0li4npuMz0jKYRbxrjd/U7oLiNQkPAp4/BujU4m1ZIwq6a+tg==
|
|
||||||
dependencies:
|
|
||||||
"@sentry/types" "6.10.0"
|
|
||||||
tslib "^1.9.3"
|
|
||||||
|
|
||||||
"@sentry/utils@6.13.2":
|
"@sentry/utils@6.13.2":
|
||||||
version "6.13.2"
|
version "6.13.2"
|
||||||
resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-6.13.2.tgz#fb8010e7b67cc8c084d8067d64ef25289269cda5"
|
resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-6.13.2.tgz#fb8010e7b67cc8c084d8067d64ef25289269cda5"
|
||||||
@ -1333,6 +1265,14 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@tryghost/constants/-/constants-0.1.9.tgz#1c3ecb42feffdff4cb2ad684938a209ac69ebeaf"
|
resolved "https://registry.yarnpkg.com/@tryghost/constants/-/constants-0.1.9.tgz#1c3ecb42feffdff4cb2ad684938a209ac69ebeaf"
|
||||||
integrity sha512-tCRFl+d5tYUyAHKGXt+eEm7f7Vpb0a8VXGenpo1q20PEPY7lVsHkFJ+8mwebQWUmELrXKfYkDgjuQDZizQxArA==
|
integrity sha512-tCRFl+d5tYUyAHKGXt+eEm7f7Vpb0a8VXGenpo1q20PEPY7lVsHkFJ+8mwebQWUmELrXKfYkDgjuQDZizQxArA==
|
||||||
|
|
||||||
|
"@tryghost/custom-theme-settings-service@0.0.2":
|
||||||
|
version "0.0.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@tryghost/custom-theme-settings-service/-/custom-theme-settings-service-0.0.2.tgz#a017fe7ca5bc0a3b9c603e5177b4f6ac5692f49c"
|
||||||
|
integrity sha512-TOwUeN7H/h+lr3tU3RwEUy21gAImQ/MQsk147DNs8mXm4efw32VOHp/NskM0ZQoDU9wi9gyK9fA/CZ5rgNRPDA==
|
||||||
|
dependencies:
|
||||||
|
"@tryghost/debug" "^0.1.5"
|
||||||
|
"@tryghost/errors" "^0.2.14"
|
||||||
|
|
||||||
"@tryghost/debug@0.1.5", "@tryghost/debug@^0.1.2", "@tryghost/debug@^0.1.4", "@tryghost/debug@^0.1.5":
|
"@tryghost/debug@0.1.5", "@tryghost/debug@^0.1.2", "@tryghost/debug@^0.1.4", "@tryghost/debug@^0.1.5":
|
||||||
version "0.1.5"
|
version "0.1.5"
|
||||||
resolved "https://registry.yarnpkg.com/@tryghost/debug/-/debug-0.1.5.tgz#dc001fa7c39ccce71aeb4dc9b5b0efc92bde05dc"
|
resolved "https://registry.yarnpkg.com/@tryghost/debug/-/debug-0.1.5.tgz#dc001fa7c39ccce71aeb4dc9b5b0efc92bde05dc"
|
||||||
@ -1647,10 +1587,10 @@
|
|||||||
fs-extra "^10.0.0"
|
fs-extra "^10.0.0"
|
||||||
lodash "^4.17.21"
|
lodash "^4.17.21"
|
||||||
|
|
||||||
"@tryghost/pretty-cli@1.2.18":
|
"@tryghost/pretty-cli@1.2.19":
|
||||||
version "1.2.18"
|
version "1.2.19"
|
||||||
resolved "https://registry.yarnpkg.com/@tryghost/pretty-cli/-/pretty-cli-1.2.18.tgz#16a2b00750cc6a0ae040832e5d5cadcabdef1acf"
|
resolved "https://registry.yarnpkg.com/@tryghost/pretty-cli/-/pretty-cli-1.2.19.tgz#26daa51651f87a4c39d3d3013a1ba87622f4f13e"
|
||||||
integrity sha512-m/FPKXJx9ttxFzQUXv0ft3YVTxj7R8wi7kcQReiw56tGA0Lo5NHFv8Bu/KRn6cYkcM8lea00fao64R/npdBeFA==
|
integrity sha512-99aXM1O9FD2U7ZgJNEyJ8kktuHRGt4FDihgfdbqvJjGL2mmPg9VsbJJwRa6mTNUhH1EYOyBZ4yH654Mg9hYTrg==
|
||||||
dependencies:
|
dependencies:
|
||||||
chalk "^4.1.0"
|
chalk "^4.1.0"
|
||||||
sywac "^1.3.0"
|
sywac "^1.3.0"
|
||||||
@ -1781,16 +1721,6 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@tryghost/vhost-middleware/-/vhost-middleware-1.0.16.tgz#f8f5af252b28afd080e7a22985534abdc242b944"
|
resolved "https://registry.yarnpkg.com/@tryghost/vhost-middleware/-/vhost-middleware-1.0.16.tgz#f8f5af252b28afd080e7a22985534abdc242b944"
|
||||||
integrity sha512-2lbKizmyuXNHK6usNXtyzjF/oR+G+sTtihJkKAoFSTUVlwl1QKU8uVuLDvuC5Wb2USFNQecQqhxLyrJJHTjENA==
|
integrity sha512-2lbKizmyuXNHK6usNXtyzjF/oR+G+sTtihJkKAoFSTUVlwl1QKU8uVuLDvuC5Wb2USFNQecQqhxLyrJJHTjENA==
|
||||||
|
|
||||||
"@tryghost/zip@1.1.14":
|
|
||||||
version "1.1.14"
|
|
||||||
resolved "https://registry.yarnpkg.com/@tryghost/zip/-/zip-1.1.14.tgz#44a0fce4b06a03a73e33197572d3e4d88a1217a3"
|
|
||||||
integrity sha512-FUIaBJbtYVNtNLXgzlaZWqsEMHPiJliJWbVlJE6ZCkodyydzrtEsFM52mcu2a1KmDm0qzFHupPDN6hWWcUDodA==
|
|
||||||
dependencies:
|
|
||||||
archiver "^4.0.2"
|
|
||||||
bluebird "^3.7.2"
|
|
||||||
extract-zip "2.0.1"
|
|
||||||
fs-extra "^9.1.0"
|
|
||||||
|
|
||||||
"@tryghost/zip@1.1.15":
|
"@tryghost/zip@1.1.15":
|
||||||
version "1.1.15"
|
version "1.1.15"
|
||||||
resolved "https://registry.yarnpkg.com/@tryghost/zip/-/zip-1.1.15.tgz#8f908b69f8835b9bf2e96222e0448796ef17de3f"
|
resolved "https://registry.yarnpkg.com/@tryghost/zip/-/zip-1.1.15.tgz#8f908b69f8835b9bf2e96222e0448796ef17de3f"
|
||||||
@ -2799,10 +2729,10 @@ ccount@^1.0.0:
|
|||||||
resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.1.0.tgz#246687debb6014735131be8abab2d93898f8d043"
|
resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.1.0.tgz#246687debb6014735131be8abab2d93898f8d043"
|
||||||
integrity sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==
|
integrity sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==
|
||||||
|
|
||||||
chalk@4.1.1:
|
chalk@4.1.2, chalk@^4.0.0, chalk@^4.1.0, chalk@~4.1.0:
|
||||||
version "4.1.1"
|
version "4.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad"
|
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
|
||||||
integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==
|
integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
|
||||||
dependencies:
|
dependencies:
|
||||||
ansi-styles "^4.1.0"
|
ansi-styles "^4.1.0"
|
||||||
supports-color "^7.1.0"
|
supports-color "^7.1.0"
|
||||||
@ -2827,14 +2757,6 @@ chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.1:
|
|||||||
escape-string-regexp "^1.0.5"
|
escape-string-regexp "^1.0.5"
|
||||||
supports-color "^5.3.0"
|
supports-color "^5.3.0"
|
||||||
|
|
||||||
chalk@^4.0.0, chalk@^4.1.0, chalk@~4.1.0:
|
|
||||||
version "4.1.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
|
|
||||||
integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
|
|
||||||
dependencies:
|
|
||||||
ansi-styles "^4.1.0"
|
|
||||||
supports-color "^7.1.0"
|
|
||||||
|
|
||||||
character-entities-html4@^1.0.0:
|
character-entities-html4@^1.0.0:
|
||||||
version "1.1.4"
|
version "1.1.4"
|
||||||
resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-1.1.4.tgz#0e64b0a3753ddbf1fdc044c5fd01d0199a02e125"
|
resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-1.1.4.tgz#0e64b0a3753ddbf1fdc044c5fd01d0199a02e125"
|
||||||
@ -5418,24 +5340,24 @@ grunt@1.4.1:
|
|||||||
nopt "~3.0.6"
|
nopt "~3.0.6"
|
||||||
rimraf "~3.0.2"
|
rimraf "~3.0.2"
|
||||||
|
|
||||||
gscan@4.2.1:
|
gscan@4.3.1:
|
||||||
version "4.2.1"
|
version "4.3.1"
|
||||||
resolved "https://registry.yarnpkg.com/gscan/-/gscan-4.2.1.tgz#665044709501b051430f832fac43f6378081b69f"
|
resolved "https://registry.yarnpkg.com/gscan/-/gscan-4.3.1.tgz#c99edb27719ab931708e081bc6e2fe4868f64068"
|
||||||
integrity sha512-U5BqkySohXVc6u64ueNn173V7YpITy11tRrO9YgQiUXe/BTJhrUFP5FtdF2Rlubv34njtya5BE6G7HfRVSXGOw==
|
integrity sha512-Bgmrfkt2w++ojhp/NSPItHTRphpbiSFZD0STw/JoU3NT0QRX6dXJ+Z5B0LxIyW6XtDy1DKBC6clD2FJBKwC2oQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@sentry/node" "6.10.0"
|
"@sentry/node" "6.13.2"
|
||||||
"@tryghost/pretty-cli" "1.2.18"
|
"@tryghost/pretty-cli" "1.2.19"
|
||||||
"@tryghost/zip" "1.1.14"
|
"@tryghost/zip" "1.1.15"
|
||||||
bluebird "3.7.2"
|
bluebird "3.7.2"
|
||||||
chalk "4.1.1"
|
chalk "4.1.2"
|
||||||
common-tags "1.8.0"
|
common-tags "1.8.0"
|
||||||
express "4.17.1"
|
express "4.17.1"
|
||||||
express-hbs "2.4.0"
|
express-hbs "2.4.0"
|
||||||
fs-extra "9.1.0"
|
fs-extra "9.1.0"
|
||||||
ghost-ignition "4.6.3"
|
ghost-ignition "4.6.3"
|
||||||
glob "7.1.7"
|
glob "7.2.0"
|
||||||
lodash "4.17.21"
|
lodash "4.17.21"
|
||||||
multer "1.4.2"
|
multer "1.4.3"
|
||||||
pluralize "8.0.0"
|
pluralize "8.0.0"
|
||||||
require-dir "1.2.0"
|
require-dir "1.2.0"
|
||||||
semver "7.3.5"
|
semver "7.3.5"
|
||||||
@ -7660,20 +7582,6 @@ ms@2.1.3, ms@^2.0.0, ms@^2.1.1, ms@^2.1.2, ms@^2.1.3:
|
|||||||
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
|
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
|
||||||
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
|
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
|
||||||
|
|
||||||
multer@1.4.2:
|
|
||||||
version "1.4.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/multer/-/multer-1.4.2.tgz#2f1f4d12dbaeeba74cb37e623f234bf4d3d2057a"
|
|
||||||
integrity sha512-xY8pX7V+ybyUpbYMxtjM9KAiD9ixtg5/JkeKUTD6xilfDv0vzzOFcCp4Ljb1UU3tSOM3VTZtKo63OmzOrGi3Cg==
|
|
||||||
dependencies:
|
|
||||||
append-field "^1.0.0"
|
|
||||||
busboy "^0.2.11"
|
|
||||||
concat-stream "^1.5.2"
|
|
||||||
mkdirp "^0.5.1"
|
|
||||||
object-assign "^4.1.1"
|
|
||||||
on-finished "^2.3.0"
|
|
||||||
type-is "^1.6.4"
|
|
||||||
xtend "^4.0.0"
|
|
||||||
|
|
||||||
multer@1.4.3:
|
multer@1.4.3:
|
||||||
version "1.4.3"
|
version "1.4.3"
|
||||||
resolved "https://registry.yarnpkg.com/multer/-/multer-1.4.3.tgz#4db352d6992e028ac0eacf7be45c6efd0264297b"
|
resolved "https://registry.yarnpkg.com/multer/-/multer-1.4.3.tgz#4db352d6992e028ac0eacf7be45c6efd0264297b"
|
||||||
|
Loading…
Reference in New Issue
Block a user