Merge branch 'main' into feature/collection-names-and-ids-uniqueness

This commit is contained in:
Ben Irvin 2023-04-28 08:50:54 +02:00 committed by GitHub
commit 9e1f86d7cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 788 additions and 40 deletions

View File

@ -24,7 +24,7 @@
"@strapi/provider-upload-cloudinary": "4.10.1",
"@strapi/strapi": "4.10.1",
"@vscode/sqlite3": "5.1.2",
"better-sqlite3": "8.0.1",
"better-sqlite3": "8.3.0",
"lodash": "4.17.21",
"mysql": "2.18.1",
"mysql2": "3.2.0",

View File

@ -13,7 +13,7 @@
"@strapi/plugin-i18n": "4.10.1",
"@strapi/plugin-users-permissions": "4.10.1",
"@strapi/strapi": "4.10.1",
"better-sqlite3": "8.0.1"
"better-sqlite3": "8.3.0"
},
"author": {
"name": "A Strapi developer"

View File

@ -98,7 +98,7 @@
"inquirer": "8.2.5",
"jest": "29.0.3",
"jest-circus": "29.0.3",
"jest-cli": "29.0.3",
"jest-cli": "29.5.0",
"jest-environment-jsdom": "29.0.3",
"jest-watch-typeahead": "2.2.2",
"lerna": "6.5.1",

View File

@ -477,7 +477,7 @@
"content-manager.components.DraggableCard.edit.field": "Modifier {item}",
"content-manager.components.DraggableCard.move.field": "Déplacer {item}",
"content-manager.components.DynamicTable.row-line": "ligne {number}",
"content-manager.components.DynamicZone.ComponentPicker-label": "Choisir un compoosant",
"content-manager.components.DynamicZone.ComponentPicker-label": "Choisir un composant",
"content-manager.components.DynamicZone.add-component": "Ajouter un composant à {componentName}",
"content-manager.components.DynamicZone.delete-label": "Supprimer {name}",
"content-manager.components.DynamicZone.error-message": "Le composant contient une ou des erreurs",

View File

@ -51,7 +51,7 @@
"tar": "6.1.13",
"tar-stream": "2.2.0",
"uuid": "9.0.0",
"ws": "8.11.0"
"ws": "8.13.0"
},
"devDependencies": {
"@tsconfig/node16": "1.0.3",

View File

@ -90,7 +90,6 @@ pids
logs
results
build
!**/lib/commands/actions/build
node_modules
.node_history
package-lock.json

View File

@ -98,5 +98,3 @@ __tests__
jest.config.js
testApp
coverage
!**/lib/commands/actions/build

View File

@ -11,5 +11,5 @@ module.exports = ({ command }) => {
.command('build')
.option('--no-optimization', 'Build the admin app without optimizing assets')
.description('Build the strapi admin app')
.action(getLocalScript('build'));
.action(getLocalScript('build-command')); // build-command dir to avoid problems with 'build' being commonly ignored
};

View File

@ -5,7 +5,7 @@ const { Command } = require('commander');
const strapiCommands = {
'admin/create-user': require('./actions/admin/create-user/command'),
'admin/reset-user-password': require('./actions/admin/reset-user-password/command'),
build: require('./actions/build/command'),
build: require('./actions/build-command/command'), // in 'build-command' to avoid problems with 'build' being commonly ignored
'configuration/dump': require('./actions/configuration/dump/command'),
'configuration/restore': require('./actions/configuration/restore/command'),
console: require('./actions/console/command'),

811
yarn.lock

File diff suppressed because it is too large Load Diff