From fc135e1b94f7753c57f276f15bce7b47a86c541f Mon Sep 17 00:00:00 2001 From: Ivo Murrell Date: Thu, 21 Nov 2024 16:33:26 +0000 Subject: [PATCH] backstage: update create-plugin script with latest package.json values --- scripts/create-plugin.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/create-plugin.js b/scripts/create-plugin.js index f33e804ed..237d8c15b 100755 --- a/scripts/create-plugin.js +++ b/scripts/create-plugin.js @@ -36,10 +36,10 @@ pkg.author = 'FT.com Platforms Team ' pkg.files = ['/lib', '.toolkitrc.yml'] pkg.engines = { node: '18.x || 20.x', - npm: '7.x || 8.x || 9.x' + npm: '7.x || 8.x || 9.x || 10.x' } pkg.peerDependencies = { - 'dotcom-tool-kit': '3.x' + 'dotcom-tool-kit': '4.x' } fs.writeFileSync('package.json', JSON.stringify(pkg, null, 2))