mirror of
https://github.com/strapi/strapi.git
synced 2025-11-01 10:23:34 +00:00
Merge branch 'main' into feature/collection-names-and-ids-uniqueness
This commit is contained in:
commit
9e1f86d7cb
@ -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",
|
||||
|
||||
@ -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"
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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",
|
||||
|
||||
1
packages/core/strapi/.gitignore
vendored
1
packages/core/strapi/.gitignore
vendored
@ -90,7 +90,6 @@ pids
|
||||
logs
|
||||
results
|
||||
build
|
||||
!**/lib/commands/actions/build
|
||||
node_modules
|
||||
.node_history
|
||||
package-lock.json
|
||||
|
||||
@ -98,5 +98,3 @@ __tests__
|
||||
jest.config.js
|
||||
testApp
|
||||
coverage
|
||||
|
||||
!**/lib/commands/actions/build
|
||||
|
||||
@ -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
|
||||
};
|
||||
@ -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'),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user