mirror of
https://github.com/strapi/strapi.git
synced 2025-09-26 08:52:26 +00:00
Merge branch 'releases/4.15.5' into fix/ts-generation
This commit is contained in:
commit
b185fd1777
2
.github/actions/check-pr-status/package.json
vendored
2
.github/actions/check-pr-status/package.json
vendored
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "check-pr-status",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"private": true,
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
|
@ -44,6 +44,10 @@ interface BuildContext {
|
||||
* this path so all asset paths will be rewritten accordingly
|
||||
*/
|
||||
basePath: string;
|
||||
/**
|
||||
* The customisations defined by the user in their app.js file
|
||||
*/
|
||||
customisations?: AppFile;
|
||||
/**
|
||||
* The current working directory
|
||||
*/
|
||||
@ -64,9 +68,9 @@ interface BuildContext {
|
||||
* The environment variables to be included in the JS bundle
|
||||
*/
|
||||
env: Record<string, string>;
|
||||
logger: Logger;
|
||||
logger: CLIContext['logger'];
|
||||
/**
|
||||
* The build or develop options
|
||||
* The build options
|
||||
*/
|
||||
options: Pick<BuildOptions, 'minify' | 'sourcemaps' | 'stats'> & Pick<DevelopOptions, 'open'>;
|
||||
/**
|
||||
@ -90,7 +94,7 @@ interface BuildContext {
|
||||
* The browserslist target either loaded from the user's workspace or falling back to the default
|
||||
*/
|
||||
target: string[];
|
||||
tsconfig?: TSConfig;
|
||||
tsconfig?: CLIContext['tsconfig'];
|
||||
}
|
||||
```
|
||||
|
||||
|
@ -24,7 +24,7 @@ Start your Strapi application in development mode
|
||||
Options:
|
||||
--polling Watch for file changes (default: false) – Whether to use fs.watchFile (backed by polling), or fs.watch, this is passed directly to chokidar
|
||||
--no-build [deprecated]: there is middleware for the server, it is no longer a separate process
|
||||
--watch-admin [deprecated]: there is now middleware for watching, it is no longer a separate process
|
||||
--watch-admin Watch the admin for changes (default: false)
|
||||
--browser <name> [deprecated]: use open instead
|
||||
--open Open the admin in your browser (default: true)
|
||||
-h, --help Display help for command
|
||||
@ -66,6 +66,10 @@ interface DevelopOptions extends CLIContext {
|
||||
* The tsconfig to use for the build. If undefined, this is not a TS project.
|
||||
*/
|
||||
tsconfig?: TsConfig;
|
||||
/**
|
||||
* Watch the admin for changes
|
||||
*/
|
||||
watchAdmin?: boolean;
|
||||
}
|
||||
|
||||
interface Logger {
|
||||
|
@ -1,5 +1,6 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"jsx": "react",
|
||||
"moduleResolution": "nodenext",
|
||||
"target": "ES2021",
|
||||
"checkJs": true,
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "getstarted",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"private": true,
|
||||
"description": "A Strapi application.",
|
||||
"license": "SEE LICENSE IN LICENSE",
|
||||
@ -14,16 +14,16 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/icons": "1.11.0",
|
||||
"@strapi/plugin-color-picker": "4.15.4",
|
||||
"@strapi/plugin-documentation": "4.15.4",
|
||||
"@strapi/plugin-graphql": "4.15.4",
|
||||
"@strapi/plugin-i18n": "4.15.4",
|
||||
"@strapi/plugin-sentry": "4.15.4",
|
||||
"@strapi/plugin-users-permissions": "4.15.4",
|
||||
"@strapi/provider-email-mailgun": "4.15.4",
|
||||
"@strapi/provider-upload-aws-s3": "4.15.4",
|
||||
"@strapi/provider-upload-cloudinary": "4.15.4",
|
||||
"@strapi/strapi": "4.15.4",
|
||||
"@strapi/plugin-color-picker": "4.15.5-alpha.1",
|
||||
"@strapi/plugin-documentation": "4.15.5-alpha.1",
|
||||
"@strapi/plugin-graphql": "4.15.5-alpha.1",
|
||||
"@strapi/plugin-i18n": "4.15.5-alpha.1",
|
||||
"@strapi/plugin-sentry": "4.15.5-alpha.1",
|
||||
"@strapi/plugin-users-permissions": "4.15.5-alpha.1",
|
||||
"@strapi/provider-email-mailgun": "4.15.5-alpha.1",
|
||||
"@strapi/provider-upload-aws-s3": "4.15.5-alpha.1",
|
||||
"@strapi/provider-upload-cloudinary": "4.15.5-alpha.1",
|
||||
"@strapi/strapi": "4.15.5-alpha.1",
|
||||
"better-sqlite3": "8.6.0",
|
||||
"lodash": "4.17.21",
|
||||
"mysql": "2.18.1",
|
||||
|
@ -1,9 +0,0 @@
|
||||
const config = {
|
||||
locales: ['fr'],
|
||||
};
|
||||
const bootstrap = () => {};
|
||||
|
||||
export default {
|
||||
config,
|
||||
bootstrap,
|
||||
};
|
21
examples/getstarted/src/admin/app.js
Normal file
21
examples/getstarted/src/admin/app.js
Normal file
@ -0,0 +1,21 @@
|
||||
import React from 'react';
|
||||
import { Button } from '@strapi/design-system';
|
||||
|
||||
const config = {
|
||||
locales: ['it', 'es', 'en'],
|
||||
};
|
||||
const bootstrap = (app) => {
|
||||
console.log('I AM BOOTSTRAPPED');
|
||||
|
||||
app.injectContentManagerComponent('editView', 'right-links', {
|
||||
name: 'PreviewButton',
|
||||
Component: () => (
|
||||
<Button onClick={() => window.alert('Not here, The preview is.')}>Preview</Button>
|
||||
),
|
||||
});
|
||||
};
|
||||
|
||||
export default {
|
||||
config,
|
||||
bootstrap,
|
||||
};
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "kitchensink-ts",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"private": true,
|
||||
"description": "A Strapi application",
|
||||
"license": "MIT",
|
||||
@ -14,9 +14,9 @@
|
||||
"strapi": "strapi"
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/plugin-i18n": "4.15.4",
|
||||
"@strapi/plugin-users-permissions": "4.15.4",
|
||||
"@strapi/strapi": "4.15.4",
|
||||
"@strapi/plugin-i18n": "4.15.5-alpha.1",
|
||||
"@strapi/plugin-users-permissions": "4.15.5-alpha.1",
|
||||
"@strapi/strapi": "4.15.5-alpha.1",
|
||||
"better-sqlite3": "8.6.0",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "kitchensink",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"private": true,
|
||||
"description": "A Strapi application.",
|
||||
"license": "SEE LICENSE IN LICENSE",
|
||||
@ -13,10 +13,10 @@
|
||||
"strapi": "strapi"
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/provider-email-mailgun": "4.15.4",
|
||||
"@strapi/provider-upload-aws-s3": "4.15.4",
|
||||
"@strapi/provider-upload-cloudinary": "4.15.4",
|
||||
"@strapi/strapi": "4.15.4",
|
||||
"@strapi/provider-email-mailgun": "4.15.5-alpha.1",
|
||||
"@strapi/provider-upload-aws-s3": "4.15.5-alpha.1",
|
||||
"@strapi/provider-upload-cloudinary": "4.15.5-alpha.1",
|
||||
"@strapi/strapi": "4.15.5-alpha.1",
|
||||
"lodash": "4.17.21",
|
||||
"mysql": "2.18.1",
|
||||
"mysql2": "3.6.0",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"packages": ["packages/*", "examples/*"],
|
||||
"npmClient": "yarn",
|
||||
"useWorkspaces": true,
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/admin-test-utils",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"private": true,
|
||||
"description": "Test utilities for the Strapi administration panel",
|
||||
"license": "MIT",
|
||||
@ -75,8 +75,8 @@
|
||||
"@reduxjs/toolkit": "1.9.7",
|
||||
"@strapi/pack-up": "workspace:*",
|
||||
"@testing-library/jest-dom": "5.16.5",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"tsconfig": "4.15.4"
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"tsconfig": "4.15.5-alpha.1"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@reduxjs/toolkit": "^1.9.7",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "create-strapi-app",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Generate a new Strapi application.",
|
||||
"keywords": [
|
||||
"create-strapi-app",
|
||||
@ -44,14 +44,14 @@
|
||||
"watch": "pack-up watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/generate-new": "4.15.4",
|
||||
"@strapi/generate-new": "4.15.5-alpha.1",
|
||||
"commander": "8.3.0",
|
||||
"inquirer": "8.2.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"tsconfig": "4.15.4"
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"tsconfig": "4.15.5-alpha.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0 <=20.x.x",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "create-strapi-starter",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Generate a new Strapi application.",
|
||||
"keywords": [
|
||||
"create-strapi-starter",
|
||||
@ -44,7 +44,7 @@
|
||||
"watch": "pack-up watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/generate-new": "4.15.4",
|
||||
"@strapi/generate-new": "4.15.5-alpha.1",
|
||||
"chalk": "4.1.2",
|
||||
"ci-info": "3.8.0",
|
||||
"commander": "8.3.0",
|
||||
@ -54,9 +54,9 @@
|
||||
"ora": "5.4.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"tsconfig": "4.15.4"
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"tsconfig": "4.15.5-alpha.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0 <=20.x.x",
|
||||
|
@ -0,0 +1,30 @@
|
||||
import path from 'node:path';
|
||||
import fs from 'node:fs';
|
||||
|
||||
const ADMIN_APP_FILES = ['app.js', 'app.mjs', 'app.ts', 'app.jsx', 'app.tsx'];
|
||||
|
||||
interface AdminCustomisations {
|
||||
config?: {
|
||||
locales?: string[];
|
||||
};
|
||||
bootstrap?: Function;
|
||||
}
|
||||
|
||||
interface AppFile {
|
||||
path: string;
|
||||
}
|
||||
|
||||
const loadUserAppFile = async (appDir: string): Promise<AppFile | undefined> => {
|
||||
for (const file of ADMIN_APP_FILES) {
|
||||
const filePath = path.join(appDir, 'src', 'admin', file);
|
||||
|
||||
if (fs.existsSync(filePath)) {
|
||||
return { path: filePath };
|
||||
}
|
||||
}
|
||||
|
||||
return undefined;
|
||||
};
|
||||
|
||||
export { loadUserAppFile };
|
||||
export type { AdminCustomisations, AppFile };
|
@ -18,7 +18,9 @@ const pathExists = async (path: string) => {
|
||||
*/
|
||||
const loadFile = async (path: string): Promise<undefined | any> => {
|
||||
if (await pathExists(path)) {
|
||||
const esbuildOptions = { extensions: ['.js', '.mjs', '.ts'] };
|
||||
const esbuildOptions: Parameters<typeof register>[0] = {
|
||||
extensions: ['.js', '.mjs', '.ts'],
|
||||
};
|
||||
|
||||
const { unregister } = register(esbuildOptions);
|
||||
|
||||
|
@ -1,9 +1,12 @@
|
||||
import os from 'node:os';
|
||||
import path from 'node:path';
|
||||
import fs from 'node:fs';
|
||||
import camelCase from 'lodash/camelCase';
|
||||
import { env } from '@strapi/utils';
|
||||
import { getModule, PackageJson } from './dependencies';
|
||||
import { loadFile } from './files';
|
||||
import { BuildContext, CreateBuildContextArgs } from '../createBuildContext';
|
||||
import { BuildContext } from '../createBuildContext';
|
||||
import { isError } from './errors';
|
||||
|
||||
interface PluginMeta {
|
||||
name: string;
|
||||
@ -32,11 +35,11 @@ const validatePackageHasStrapi = (
|
||||
const validatePackageIsPlugin = (pkg: PackageJson): pkg is StrapiPlugin =>
|
||||
validatePackageHasStrapi(pkg) && pkg.strapi.kind === 'plugin';
|
||||
|
||||
export const getEnabledPlugins = async ({
|
||||
const getEnabledPlugins = async ({
|
||||
strapi,
|
||||
cwd,
|
||||
logger,
|
||||
}: Pick<BuildContext, 'cwd' | 'logger' | 'strapi'>) => {
|
||||
}: Pick<BuildContext, 'cwd' | 'logger' | 'strapi'>): Promise<Record<string, PluginMeta>> => {
|
||||
const plugins: Record<string, PluginMeta> = {};
|
||||
|
||||
/**
|
||||
@ -110,3 +113,73 @@ const loadUserPluginsFile = async (root: string): Promise<UserPluginConfigFile>
|
||||
|
||||
return {};
|
||||
};
|
||||
|
||||
const getMapOfPluginsWithAdmin = (
|
||||
plugins: Record<string, PluginMeta>,
|
||||
{ runtimeDir }: { runtimeDir: string }
|
||||
) =>
|
||||
Object.values(plugins)
|
||||
.filter((plugin) => {
|
||||
if (!plugin) {
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* There are two ways a plugin should be imported, either it's local to the strapi app,
|
||||
* or it's an actual npm module that's installed and resolved via node_modules.
|
||||
*
|
||||
* We first check if the plugin is local to the strapi app, using a regular `resolve` because
|
||||
* the pathToPlugin will be relative i.e. `/Users/my-name/strapi-app/src/plugins/my-plugin`.
|
||||
*
|
||||
* If the file doesn't exist well then it's probably a node_module, so instead we use `require.resolve`
|
||||
* which will resolve the path to the module in node_modules. If it fails with the specific code `MODULE_NOT_FOUND`
|
||||
* then it doesn't have an admin part to the package.
|
||||
*/
|
||||
try {
|
||||
const isLocalPluginWithLegacyAdminFile = fs.existsSync(
|
||||
//@ts-ignore
|
||||
path.resolve(`${plugin.pathToPlugin}/strapi-admin.js`)
|
||||
);
|
||||
|
||||
if (!isLocalPluginWithLegacyAdminFile) {
|
||||
//@ts-ignore
|
||||
let pathToPlugin = plugin.pathToPlugin;
|
||||
|
||||
if (process.platform === 'win32') {
|
||||
pathToPlugin = pathToPlugin.split(path.sep).join(path.posix.sep);
|
||||
}
|
||||
|
||||
const isModuleWithFE = require.resolve(`${pathToPlugin}/strapi-admin`);
|
||||
|
||||
return isModuleWithFE;
|
||||
}
|
||||
|
||||
return isLocalPluginWithLegacyAdminFile;
|
||||
} catch (err) {
|
||||
if (isError(err) && 'code' in err && err.code === 'MODULE_NOT_FOUND') {
|
||||
/**
|
||||
* the plugin does not contain FE code, so we
|
||||
* don't want to import it anyway
|
||||
*/
|
||||
return false;
|
||||
}
|
||||
|
||||
throw err;
|
||||
}
|
||||
})
|
||||
.map((plugin) => {
|
||||
const systemPath = plugin.isLocal
|
||||
? path.relative(runtimeDir, plugin.pathToPlugin.split('/').join(path.sep))
|
||||
: undefined;
|
||||
const modulePath = systemPath ? systemPath.split(path.sep).join('/') : undefined;
|
||||
|
||||
return {
|
||||
path: !plugin.isLocal
|
||||
? `${plugin.pathToPlugin}/strapi-admin`
|
||||
: `${modulePath}/strapi-admin`,
|
||||
name: plugin.name,
|
||||
importName: camelCase(plugin.name),
|
||||
};
|
||||
});
|
||||
|
||||
export { getEnabledPlugins, getMapOfPluginsWithAdmin };
|
||||
|
@ -1,19 +1,17 @@
|
||||
import os from 'node:os';
|
||||
import path from 'node:path';
|
||||
import fs from 'node:fs/promises';
|
||||
import syncFs from 'node:fs';
|
||||
import camelCase from 'lodash/camelCase';
|
||||
import browserslist from 'browserslist';
|
||||
import strapiFactory, { CLIContext } from '@strapi/strapi';
|
||||
import { getConfigUrls } from '@strapi/utils';
|
||||
|
||||
import { getStrapiAdminEnvVars, loadEnv } from './core/env';
|
||||
import { isError } from './core/errors';
|
||||
|
||||
import type { BuildOptions } from './build';
|
||||
import { DevelopOptions } from './develop';
|
||||
import { getEnabledPlugins } from './core/plugins';
|
||||
import { getEnabledPlugins, getMapOfPluginsWithAdmin } from './core/plugins';
|
||||
import { Strapi } from '@strapi/types';
|
||||
import { AppFile, loadUserAppFile } from './core/admin-customisations';
|
||||
|
||||
interface BuildContext {
|
||||
/**
|
||||
@ -25,6 +23,10 @@ interface BuildContext {
|
||||
* this path so all asset paths will be rewritten accordingly
|
||||
*/
|
||||
basePath: string;
|
||||
/**
|
||||
* The customisations defined by the user in their app.js file
|
||||
*/
|
||||
customisations?: AppFile;
|
||||
/**
|
||||
* The current working directory
|
||||
*/
|
||||
@ -152,23 +154,18 @@ const createBuildContext = async ({
|
||||
|
||||
logger.debug('Enabled plugins', os.EOL, plugins);
|
||||
|
||||
const pluginsWithFront = Object.values(plugins)
|
||||
.filter(filterPluginsByAdminEntry)
|
||||
.map((plugin) => ({
|
||||
path: !plugin.isLocal
|
||||
? `${plugin.pathToPlugin}/strapi-admin`
|
||||
: `${path.relative(runtimeDir, plugin.pathToPlugin)}/strapi-admin`,
|
||||
name: plugin.name,
|
||||
importName: camelCase(plugin.name),
|
||||
}));
|
||||
const pluginsWithFront = getMapOfPluginsWithAdmin(plugins, { runtimeDir });
|
||||
|
||||
logger.debug('Enabled plugins with FE', os.EOL, plugins);
|
||||
|
||||
const target = browserslist.loadConfig({ path: cwd }) ?? DEFAULT_BROWSERSLIST;
|
||||
|
||||
const customisations = await loadUserAppFile(strapiInstance.dirs.app.root);
|
||||
|
||||
const buildContext = {
|
||||
appDir: strapiInstance.dirs.app.root,
|
||||
basePath: `${adminPath}/`,
|
||||
customisations,
|
||||
cwd,
|
||||
distDir,
|
||||
distPath,
|
||||
@ -186,58 +183,5 @@ const createBuildContext = async ({
|
||||
return buildContext;
|
||||
};
|
||||
|
||||
interface Plugin extends Required<{}> {
|
||||
name: string;
|
||||
}
|
||||
|
||||
const filterPluginsByAdminEntry = (plugin: Plugin) => {
|
||||
if (!plugin) {
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* There are two ways a plugin should be imported, either it's local to the strapi app,
|
||||
* or it's an actual npm module that's installed and resolved via node_modules.
|
||||
*
|
||||
* We first check if the plugin is local to the strapi app, using a regular `resolve` because
|
||||
* the pathToPlugin will be relative i.e. `/Users/my-name/strapi-app/src/plugins/my-plugin`.
|
||||
*
|
||||
* If the file doesn't exist well then it's probably a node_module, so instead we use `require.resolve`
|
||||
* which will resolve the path to the module in node_modules. If it fails with the specific code `MODULE_NOT_FOUND`
|
||||
* then it doesn't have an admin part to the package.
|
||||
*/
|
||||
try {
|
||||
const isLocalPluginWithLegacyAdminFile = syncFs.existsSync(
|
||||
//@ts-ignore
|
||||
path.resolve(`${plugin.pathToPlugin}/strapi-admin.js`)
|
||||
);
|
||||
|
||||
if (!isLocalPluginWithLegacyAdminFile) {
|
||||
//@ts-ignore
|
||||
let pathToPlugin = plugin.pathToPlugin;
|
||||
|
||||
if (process.platform === 'win32') {
|
||||
pathToPlugin = pathToPlugin.split(path.sep).join(path.posix.sep);
|
||||
}
|
||||
|
||||
const isModuleWithFE = require.resolve(`${pathToPlugin}/strapi-admin`);
|
||||
|
||||
return isModuleWithFE;
|
||||
}
|
||||
|
||||
return isLocalPluginWithLegacyAdminFile;
|
||||
} catch (err) {
|
||||
if (isError(err) && 'code' in err && err.code === 'MODULE_NOT_FOUND') {
|
||||
/**
|
||||
* the plugin does not contain FE code, so we
|
||||
* don't want to import it anyway
|
||||
*/
|
||||
return false;
|
||||
}
|
||||
|
||||
throw err;
|
||||
}
|
||||
};
|
||||
|
||||
export { createBuildContext };
|
||||
export type { BuildContext, CreateBuildContextArgs };
|
||||
|
@ -8,16 +8,12 @@ import { DefaultDocument as Document } from '../../admin/src/components/DefaultD
|
||||
|
||||
import type { BuildContext } from './createBuildContext';
|
||||
|
||||
interface EntryModuleArgs {
|
||||
plugins: BuildContext['plugins'];
|
||||
}
|
||||
|
||||
const getEntryModule = ({ plugins }: EntryModuleArgs): string => {
|
||||
const pluginsObject = plugins
|
||||
const getEntryModule = (ctx: BuildContext): string => {
|
||||
const pluginsObject = ctx.plugins
|
||||
.map(({ name, importName }) => `'${name}': ${importName}`)
|
||||
.join(',\n');
|
||||
|
||||
const pluginsImport = plugins
|
||||
const pluginsImport = ctx.plugins
|
||||
.map(({ importName, path }) => `import ${importName} from '${path}';`)
|
||||
.join('\n');
|
||||
|
||||
@ -28,10 +24,20 @@ const getEntryModule = ({ plugins }: EntryModuleArgs): string => {
|
||||
*/
|
||||
${pluginsImport}
|
||||
import { renderAdmin } from "@strapi/strapi/admin"
|
||||
|
||||
|
||||
${
|
||||
ctx.customisations?.path
|
||||
? `import customisations from '${path.relative(
|
||||
ctx.runtimeDir,
|
||||
ctx.customisations.path
|
||||
)}'`
|
||||
: ''
|
||||
}
|
||||
|
||||
renderAdmin(
|
||||
document.getElementById("strapi"),
|
||||
{
|
||||
${ctx.customisations?.path ? 'customisations,' : ''}
|
||||
plugins: {
|
||||
${pluginsObject}
|
||||
}
|
||||
@ -88,7 +94,7 @@ const writeStaticClientFiles = async (ctx: BuildContext) => {
|
||||
ctx.logger.debug('Wrote the index.html file');
|
||||
await fs.writeFile(
|
||||
path.join(ctx.runtimeDir, 'app.js'),
|
||||
format(getEntryModule({ plugins: ctx.plugins }), {
|
||||
format(getEntryModule(ctx), {
|
||||
parser: 'babel',
|
||||
})
|
||||
);
|
||||
|
@ -218,8 +218,19 @@ const mergeConfigWithUserConfig = async (config: Configuration, ctx: BuildContex
|
||||
const userConfig = await getUserConfig(ctx);
|
||||
|
||||
if (userConfig) {
|
||||
const webpack = await import('webpack');
|
||||
return userConfig(config, webpack);
|
||||
if (typeof userConfig === 'function') {
|
||||
const webpack = await import('webpack');
|
||||
return userConfig(config, webpack);
|
||||
} else {
|
||||
ctx.logger.warn(
|
||||
`You've exported something other than a function from ${path.join(
|
||||
ctx.appDir,
|
||||
'src',
|
||||
'admin',
|
||||
'webpack.config'
|
||||
)}, this will ignored.`
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
return config;
|
||||
|
@ -5,10 +5,14 @@ import { createRoot } from 'react-dom/client';
|
||||
import { StrapiApp, StrapiAppConstructorArgs } from './StrapiApp';
|
||||
|
||||
interface RenderAdminArgs {
|
||||
customisations: StrapiAppConstructorArgs['adminConfig'];
|
||||
plugins: StrapiAppConstructorArgs['appPlugins'];
|
||||
}
|
||||
|
||||
const renderAdmin = async (mountNode: HTMLElement | null, { plugins }: RenderAdminArgs) => {
|
||||
const renderAdmin = async (
|
||||
mountNode: HTMLElement | null,
|
||||
{ plugins, customisations }: RenderAdminArgs
|
||||
) => {
|
||||
if (!mountNode) {
|
||||
throw new Error('[@strapi/admin]: Could not find the root element to mount the admin app');
|
||||
}
|
||||
@ -73,7 +77,7 @@ const renderAdmin = async (mountNode: HTMLElement | null, { plugins }: RenderAdm
|
||||
}
|
||||
|
||||
const app = new StrapiApp({
|
||||
adminConfig: {},
|
||||
adminConfig: customisations,
|
||||
appPlugins: plugins,
|
||||
});
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/admin",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Strapi Admin",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -75,16 +75,16 @@
|
||||
"@radix-ui/react-context": "1.0.1",
|
||||
"@radix-ui/react-toolbar": "1.0.4",
|
||||
"@reduxjs/toolkit": "1.9.7",
|
||||
"@strapi/data-transfer": "4.15.4",
|
||||
"@strapi/data-transfer": "4.15.5-alpha.1",
|
||||
"@strapi/design-system": "1.13.0",
|
||||
"@strapi/helper-plugin": "4.15.4",
|
||||
"@strapi/helper-plugin": "4.15.5-alpha.1",
|
||||
"@strapi/icons": "1.13.0",
|
||||
"@strapi/permissions": "4.15.4",
|
||||
"@strapi/provider-audit-logs-local": "4.15.4",
|
||||
"@strapi/types": "4.15.4",
|
||||
"@strapi/typescript-utils": "4.15.4",
|
||||
"@strapi/utils": "4.15.4",
|
||||
"axios": "1.5.0",
|
||||
"@strapi/permissions": "4.15.5-alpha.1",
|
||||
"@strapi/provider-audit-logs-local": "4.15.5-alpha.1",
|
||||
"@strapi/types": "4.15.5-alpha.1",
|
||||
"@strapi/typescript-utils": "4.15.5-alpha.1",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"axios": "1.6.0",
|
||||
"bcryptjs": "2.4.3",
|
||||
"boxen": "5.1.2",
|
||||
"browserslist": "^4.22.1",
|
||||
@ -172,9 +172,9 @@
|
||||
"yup": "0.32.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/admin-test-utils": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/strapi": "4.15.4",
|
||||
"@strapi/admin-test-utils": "4.15.5-alpha.1",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@strapi/strapi": "4.15.5-alpha.1",
|
||||
"@testing-library/dom": "9.2.0",
|
||||
"@testing-library/react": "14.0.0",
|
||||
"@testing-library/user-event": "14.4.3",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/plugin-content-manager",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "A powerful UI to easily manage your data.",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -26,7 +26,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@sindresorhus/slugify": "1.1.0",
|
||||
"@strapi/utils": "4.15.4",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"lodash": "4.17.21",
|
||||
"qs": "6.11.1"
|
||||
},
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/plugin-content-type-builder",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Strapi plugin to create content type",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -49,10 +49,10 @@
|
||||
"dependencies": {
|
||||
"@sindresorhus/slugify": "1.1.0",
|
||||
"@strapi/design-system": "1.13.0",
|
||||
"@strapi/generators": "4.15.4",
|
||||
"@strapi/helper-plugin": "4.15.4",
|
||||
"@strapi/generators": "4.15.5-alpha.1",
|
||||
"@strapi/helper-plugin": "4.15.5-alpha.1",
|
||||
"@strapi/icons": "1.13.0",
|
||||
"@strapi/utils": "4.15.4",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"fs-extra": "10.0.0",
|
||||
"immer": "9.0.19",
|
||||
"lodash": "4.17.21",
|
||||
@ -65,8 +65,8 @@
|
||||
"yup": "0.32.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/strapi": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@strapi/strapi": "4.15.5-alpha.1",
|
||||
"@testing-library/react": "14.0.0",
|
||||
"history": "^4.9.0",
|
||||
"react": "^18.2.0",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/data-transfer",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Data transfer capabilities for Strapi",
|
||||
"keywords": [
|
||||
"strapi",
|
||||
@ -41,10 +41,10 @@
|
||||
"watch": "pack-up watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/logger": "4.15.4",
|
||||
"@strapi/strapi": "4.15.4",
|
||||
"@strapi/types": "4.15.4",
|
||||
"@strapi/utils": "4.15.4",
|
||||
"@strapi/logger": "4.15.5-alpha.1",
|
||||
"@strapi/strapi": "4.15.5-alpha.1",
|
||||
"@strapi/types": "4.15.5-alpha.1",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"chalk": "4.1.2",
|
||||
"cli-table3": "0.6.2",
|
||||
"commander": "8.3.0",
|
||||
@ -61,7 +61,7 @@
|
||||
"ws": "8.13.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@strapi/strapi": "4.15.2",
|
||||
"@types/fs-extra": "9.0.13",
|
||||
"@types/jest": "29.5.2",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/database",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Strapi's database layer",
|
||||
"homepage": "https://strapi.io",
|
||||
"bugs": {
|
||||
@ -40,7 +40,7 @@
|
||||
"watch": "pack-up watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/utils": "4.15.4",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"date-fns": "2.30.0",
|
||||
"debug": "4.3.4",
|
||||
"fs-extra": "10.0.0",
|
||||
@ -50,9 +50,9 @@
|
||||
"umzug": "3.2.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"tsconfig": "4.15.4"
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"tsconfig": "4.15.5-alpha.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0 <=20.x.x",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/plugin-email",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Easily configure your Strapi application to send emails.",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -54,10 +54,10 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/design-system": "1.13.0",
|
||||
"@strapi/helper-plugin": "4.15.4",
|
||||
"@strapi/helper-plugin": "4.15.5-alpha.1",
|
||||
"@strapi/icons": "1.13.0",
|
||||
"@strapi/provider-email-sendmail": "4.15.4",
|
||||
"@strapi/utils": "4.15.4",
|
||||
"@strapi/provider-email-sendmail": "4.15.5-alpha.1",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"lodash": "4.17.21",
|
||||
"prop-types": "^15.8.1",
|
||||
"react-intl": "6.4.1",
|
||||
@ -65,8 +65,8 @@
|
||||
"yup": "0.32.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/types": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@strapi/types": "4.15.5-alpha.1",
|
||||
"@testing-library/react": "14.0.0",
|
||||
"@types/koa": "2.13.4",
|
||||
"@types/lodash": "^4.14.191",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/helper-plugin",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Helper for Strapi plugins development",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -51,7 +51,7 @@
|
||||
"watch": "pack-up watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "1.5.0",
|
||||
"axios": "1.6.0",
|
||||
"date-fns": "2.30.0",
|
||||
"formik": "2.4.0",
|
||||
"immer": "9.0.19",
|
||||
@ -69,11 +69,11 @@
|
||||
"@storybook/addon-mdx-gfm": "7.4.0",
|
||||
"@storybook/builder-vite": "7.4.0",
|
||||
"@storybook/react-vite": "7.4.0",
|
||||
"@strapi/admin-test-utils": "4.15.4",
|
||||
"@strapi/admin-test-utils": "4.15.5-alpha.1",
|
||||
"@strapi/design-system": "1.13.0",
|
||||
"@strapi/icons": "1.13.0",
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/types": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@strapi/types": "4.15.5-alpha.1",
|
||||
"@testing-library/react": "14.0.0",
|
||||
"@testing-library/user-event": "14.4.3",
|
||||
"@types/react": "18.2.7",
|
||||
@ -82,7 +82,7 @@
|
||||
"@types/react-router-dom": "5.3.3",
|
||||
"@types/styled-components": "5.1.26",
|
||||
"cross-env": "^7.0.3",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"eslint-plugin-storybook": "0.6.14",
|
||||
"msw": "1.3.0",
|
||||
"react": "^18.2.0",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/permissions",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Strapi's permission layer.",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -38,15 +38,15 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@casl/ability": "6.5.0",
|
||||
"@strapi/utils": "4.15.4",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"lodash": "4.17.21",
|
||||
"qs": "6.11.1",
|
||||
"sift": "16.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"tsconfig": "4.15.4"
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"tsconfig": "4.15.5-alpha.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0 <=20.x.x",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/strapi",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MySQL, MariaDB, PostgreSQL, SQLite",
|
||||
"keywords": [
|
||||
"strapi",
|
||||
@ -114,21 +114,21 @@
|
||||
"dependencies": {
|
||||
"@koa/cors": "3.4.3",
|
||||
"@koa/router": "10.1.1",
|
||||
"@strapi/admin": "4.15.4",
|
||||
"@strapi/data-transfer": "4.15.4",
|
||||
"@strapi/database": "4.15.4",
|
||||
"@strapi/generate-new": "4.15.4",
|
||||
"@strapi/generators": "4.15.4",
|
||||
"@strapi/logger": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/permissions": "4.15.4",
|
||||
"@strapi/plugin-content-manager": "4.15.4",
|
||||
"@strapi/plugin-content-type-builder": "4.15.4",
|
||||
"@strapi/plugin-email": "4.15.4",
|
||||
"@strapi/plugin-upload": "4.15.4",
|
||||
"@strapi/types": "4.15.4",
|
||||
"@strapi/typescript-utils": "4.15.4",
|
||||
"@strapi/utils": "4.15.4",
|
||||
"@strapi/admin": "4.15.5-alpha.1",
|
||||
"@strapi/data-transfer": "4.15.5-alpha.1",
|
||||
"@strapi/database": "4.15.5-alpha.1",
|
||||
"@strapi/generate-new": "4.15.5-alpha.1",
|
||||
"@strapi/generators": "4.15.5-alpha.1",
|
||||
"@strapi/logger": "4.15.5-alpha.1",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@strapi/permissions": "4.15.5-alpha.1",
|
||||
"@strapi/plugin-content-manager": "4.15.5-alpha.1",
|
||||
"@strapi/plugin-content-type-builder": "4.15.5-alpha.1",
|
||||
"@strapi/plugin-email": "4.15.5-alpha.1",
|
||||
"@strapi/plugin-upload": "4.15.5-alpha.1",
|
||||
"@strapi/types": "4.15.5-alpha.1",
|
||||
"@strapi/typescript-utils": "4.15.5-alpha.1",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"bcryptjs": "2.4.3",
|
||||
"boxen": "5.1.2",
|
||||
"chalk": "4.1.2",
|
||||
@ -188,9 +188,9 @@
|
||||
"@types/node": "18.18.4",
|
||||
"@types/node-schedule": "2.1.0",
|
||||
"@types/statuses": "2.0.1",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"supertest": "6.3.3",
|
||||
"tsconfig": "4.15.4"
|
||||
"tsconfig": "4.15.5-alpha.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0 <=20.x.x",
|
||||
|
@ -5,8 +5,9 @@ import email from '@strapi/plugin-email/strapi-admin';
|
||||
// @ts-expect-error – No types, yet.
|
||||
import upload from '@strapi/plugin-upload/strapi-admin';
|
||||
|
||||
const render = (mountNode: HTMLElement | null, { plugins }: RenderAdminArgs) => {
|
||||
const render = (mountNode: HTMLElement | null, { plugins, ...restArgs }: RenderAdminArgs) => {
|
||||
return renderAdmin(mountNode, {
|
||||
...restArgs,
|
||||
plugins: {
|
||||
'content-type-builder': contentTypeBuilder,
|
||||
// @ts-expect-error – TODO: fix this
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/types",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Shared typescript types for Strapi internal use",
|
||||
"keywords": [
|
||||
"strapi"
|
||||
@ -46,10 +46,10 @@
|
||||
"dependencies": {
|
||||
"@koa/cors": "3.4.3",
|
||||
"@koa/router": "10.1.1",
|
||||
"@strapi/database": "4.15.4",
|
||||
"@strapi/logger": "4.15.4",
|
||||
"@strapi/permissions": "4.15.4",
|
||||
"@strapi/utils": "4.15.4",
|
||||
"@strapi/database": "4.15.5-alpha.1",
|
||||
"@strapi/logger": "4.15.5-alpha.1",
|
||||
"@strapi/permissions": "4.15.5-alpha.1",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"commander": "8.3.0",
|
||||
"https-proxy-agent": "5.0.1",
|
||||
"koa": "2.13.4",
|
||||
@ -57,14 +57,14 @@
|
||||
"node-schedule": "2.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@strapi/ts-zen": "^0.2.0",
|
||||
"@types/jest": "29.5.2",
|
||||
"@types/koa": "2.13.4",
|
||||
"@types/koa__router": "12.0.0",
|
||||
"@types/node-schedule": "2.1.0",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"tsconfig": "4.15.4",
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"tsconfig": "4.15.5-alpha.1",
|
||||
"typescript": "5.2.2"
|
||||
},
|
||||
"engines": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/plugin-upload",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Makes it easy to upload images and files to your Strapi Application.",
|
||||
"license": "SEE LICENSE IN LICENSE",
|
||||
"author": {
|
||||
@ -44,11 +44,11 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/design-system": "1.13.0",
|
||||
"@strapi/helper-plugin": "4.15.4",
|
||||
"@strapi/helper-plugin": "4.15.5-alpha.1",
|
||||
"@strapi/icons": "1.13.0",
|
||||
"@strapi/provider-upload-local": "4.15.4",
|
||||
"@strapi/utils": "4.15.4",
|
||||
"axios": "1.5.0",
|
||||
"@strapi/provider-upload-local": "4.15.5-alpha.1",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"axios": "1.6.0",
|
||||
"byte-size": "7.0.1",
|
||||
"cropperjs": "1.6.0",
|
||||
"date-fns": "2.30.0",
|
||||
@ -71,8 +71,8 @@
|
||||
"yup": "0.32.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/strapi": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@strapi/strapi": "4.15.5-alpha.1",
|
||||
"@testing-library/dom": "9.2.0",
|
||||
"@testing-library/react": "14.0.0",
|
||||
"@testing-library/user-event": "14.4.3",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/utils",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Shared utilities for the Strapi packages",
|
||||
"keywords": [
|
||||
"strapi",
|
||||
@ -53,13 +53,13 @@
|
||||
"yup": "0.32.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@types/koa": "2.13.4",
|
||||
"@types/node": "18.18.4",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"koa": "2.13.4",
|
||||
"koa-body": "4.2.0",
|
||||
"tsconfig": "4.15.4"
|
||||
"tsconfig": "4.15.5-alpha.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0 <=20.x.x",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/generate-new",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Generate a new Strapi application.",
|
||||
"keywords": [
|
||||
"generate",
|
||||
@ -58,7 +58,7 @@
|
||||
"tar": "6.1.13"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"copyfiles": "2.4.1"
|
||||
},
|
||||
"engines": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/generators",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Interactive API generator.",
|
||||
"keywords": [
|
||||
"strapi",
|
||||
@ -47,8 +47,8 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@sindresorhus/slugify": "1.1.0",
|
||||
"@strapi/typescript-utils": "4.15.4",
|
||||
"@strapi/utils": "4.15.4",
|
||||
"@strapi/typescript-utils": "4.15.5-alpha.1",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"chalk": "4.1.2",
|
||||
"copyfiles": "2.4.1",
|
||||
"fs-extra": "10.0.0",
|
||||
@ -57,9 +57,9 @@
|
||||
"pluralize": "8.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"tsconfig": "4.15.4"
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"tsconfig": "4.15.5-alpha.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0 <=20.x.x",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/plugin-cloud",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Instructions to deploy your local project to Strapi Cloud",
|
||||
"license": "MIT",
|
||||
"author": {
|
||||
@ -38,22 +38,22 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/design-system": "1.13.0",
|
||||
"@strapi/helper-plugin": "4.15.4",
|
||||
"@strapi/helper-plugin": "4.15.5-alpha.1",
|
||||
"@strapi/icons": "1.13.0",
|
||||
"react-intl": "6.4.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/strapi": "4.15.4",
|
||||
"@strapi/strapi": "4.15.5-alpha.1",
|
||||
"@types/react": "18.2.7",
|
||||
"@types/react-dom": "18.2.12",
|
||||
"@types/react-router-dom": "^5.3.3",
|
||||
"@types/styled-components": "5.1.26",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0",
|
||||
"react-router-dom": "5.3.4",
|
||||
"styled-components": "5.3.3",
|
||||
"tsconfig": "4.15.4",
|
||||
"tsconfig": "4.15.5-alpha.1",
|
||||
"typescript": "5.2.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/plugin-color-picker",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Strapi maintained Custom Fields",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -55,14 +55,14 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/design-system": "1.13.0",
|
||||
"@strapi/helper-plugin": "4.15.4",
|
||||
"@strapi/helper-plugin": "4.15.5-alpha.1",
|
||||
"@strapi/icons": "1.13.0",
|
||||
"prop-types": "^15.8.1",
|
||||
"react-colorful": "5.6.1",
|
||||
"react-intl": "6.4.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/strapi": "4.15.4",
|
||||
"@strapi/strapi": "4.15.5-alpha.1",
|
||||
"@testing-library/react": "14.0.0",
|
||||
"@testing-library/user-event": "14.4.3",
|
||||
"@types/styled-components": "5.1.26",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/plugin-documentation",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Create an OpenAPI Document and visualize your API with SWAGGER UI.",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -47,9 +47,9 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/design-system": "1.13.0",
|
||||
"@strapi/helper-plugin": "4.15.4",
|
||||
"@strapi/helper-plugin": "4.15.5-alpha.1",
|
||||
"@strapi/icons": "1.13.0",
|
||||
"@strapi/utils": "4.15.4",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"bcryptjs": "2.4.3",
|
||||
"cheerio": "^1.0.0-rc.12",
|
||||
"formik": "2.4.0",
|
||||
@ -67,8 +67,8 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@apidevtools/swagger-parser": "^10.1.0",
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/strapi": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@strapi/strapi": "4.15.5-alpha.1",
|
||||
"@testing-library/react": "14.0.0",
|
||||
"@testing-library/user-event": "14.4.3",
|
||||
"msw": "1.3.0",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/plugin-graphql",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Adds GraphQL endpoint with default API methods.",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -45,9 +45,9 @@
|
||||
"@graphql-tools/schema": "8.5.1",
|
||||
"@graphql-tools/utils": "^8.13.1",
|
||||
"@strapi/design-system": "1.13.0",
|
||||
"@strapi/helper-plugin": "4.15.4",
|
||||
"@strapi/helper-plugin": "4.15.5-alpha.1",
|
||||
"@strapi/icons": "1.13.0",
|
||||
"@strapi/utils": "4.15.4",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"apollo-server-core": "3.12.1",
|
||||
"apollo-server-koa": "3.10.0",
|
||||
"graphql": "^15.5.1",
|
||||
@ -61,8 +61,8 @@
|
||||
"pluralize": "8.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/strapi": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@strapi/strapi": "4.15.5-alpha.1",
|
||||
"cross-env": "^7.0.3",
|
||||
"koa": "2.13.4",
|
||||
"react": "^18.2.0",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/plugin-i18n",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "This plugin enables to create, to read and to update content in different languages, both from the Admin Panel and from the API",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -50,9 +50,9 @@
|
||||
"dependencies": {
|
||||
"@reduxjs/toolkit": "1.9.7",
|
||||
"@strapi/design-system": "1.13.0",
|
||||
"@strapi/helper-plugin": "4.15.4",
|
||||
"@strapi/helper-plugin": "4.15.5-alpha.1",
|
||||
"@strapi/icons": "1.13.0",
|
||||
"@strapi/utils": "4.15.4",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"formik": "2.4.0",
|
||||
"immer": "9.0.19",
|
||||
"lodash": "4.17.21",
|
||||
@ -64,8 +64,8 @@
|
||||
"yup": "0.32.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/strapi": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@strapi/strapi": "4.15.5-alpha.1",
|
||||
"@testing-library/react": "14.0.0",
|
||||
"msw": "1.3.0",
|
||||
"react": "^18.2.0",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/plugin-sentry",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Send Strapi error events to Sentry",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -46,12 +46,12 @@
|
||||
"dependencies": {
|
||||
"@sentry/node": "6.19.7",
|
||||
"@strapi/design-system": "1.13.0",
|
||||
"@strapi/helper-plugin": "4.15.4",
|
||||
"@strapi/helper-plugin": "4.15.5-alpha.1",
|
||||
"@strapi/icons": "1.13.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/strapi": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@strapi/strapi": "4.15.5-alpha.1",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-router-dom": "5.3.4",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/plugin-users-permissions",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Protect your API with a full-authentication process based on JWT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -48,9 +48,9 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/design-system": "1.13.0",
|
||||
"@strapi/helper-plugin": "4.15.4",
|
||||
"@strapi/helper-plugin": "4.15.5-alpha.1",
|
||||
"@strapi/icons": "1.13.0",
|
||||
"@strapi/utils": "4.15.4",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"bcryptjs": "2.4.3",
|
||||
"formik": "2.4.0",
|
||||
"grant-koa": "5.4.8",
|
||||
@ -69,8 +69,8 @@
|
||||
"yup": "0.32.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/strapi": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@strapi/strapi": "4.15.5-alpha.1",
|
||||
"@testing-library/dom": "9.2.0",
|
||||
"@testing-library/react": "14.0.0",
|
||||
"@testing-library/user-event": "14.4.3",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/provider-audit-logs-local",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Local provider for strapi audit logs",
|
||||
"keywords": [
|
||||
"audit-logs",
|
||||
@ -42,10 +42,10 @@
|
||||
"watch": "pack-up watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/types": "4.15.4",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"tsconfig": "4.15.4"
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@strapi/types": "4.15.5-alpha.1",
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"tsconfig": "4.15.5-alpha.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0 <=20.x.x",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/provider-email-amazon-ses",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Amazon SES provider for strapi email",
|
||||
"keywords": [
|
||||
"email",
|
||||
@ -43,13 +43,13 @@
|
||||
"watch": "pack-up watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/utils": "4.15.4",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"node-ses": "^3.0.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"tsconfig": "4.15.4"
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"tsconfig": "4.15.5-alpha.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0 <=20.x.x",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/provider-email-mailgun",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Mailgun provider for strapi email plugin",
|
||||
"keywords": [
|
||||
"email",
|
||||
@ -45,14 +45,14 @@
|
||||
"watch": "pack-up watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/utils": "4.15.4",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"form-data": "^4.0.0",
|
||||
"mailgun.js": "8.2.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"tsconfig": "4.15.4"
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"tsconfig": "4.15.5-alpha.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0 <=20.x.x",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/provider-email-nodemailer",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Nodemailer provider for Strapi 3",
|
||||
"keywords": [
|
||||
"strapi",
|
||||
@ -60,10 +60,10 @@
|
||||
"nodemailer": "6.9.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@types/nodemailer": "6.4.7",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"tsconfig": "4.15.4"
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"tsconfig": "4.15.5-alpha.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0 <=20.x.x",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/provider-email-sendgrid",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Sendgrid provider for strapi email",
|
||||
"keywords": [
|
||||
"email",
|
||||
@ -44,12 +44,12 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@sendgrid/mail": "7.7.0",
|
||||
"@strapi/utils": "4.15.4"
|
||||
"@strapi/utils": "4.15.5-alpha.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"tsconfig": "4.15.4"
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"tsconfig": "4.15.5-alpha.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0 <=20.x.x",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/provider-email-sendmail",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Sendmail provider for strapi email",
|
||||
"keywords": [
|
||||
"email",
|
||||
@ -42,14 +42,14 @@
|
||||
"watch": "pack-up watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/utils": "4.15.4",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"sendmail": "^1.6.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@types/sendmail": "1.4.4",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"tsconfig": "4.15.4"
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"tsconfig": "4.15.5-alpha.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0 <=20.x.x",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/provider-upload-aws-s3",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "AWS S3 provider for strapi upload",
|
||||
"keywords": [
|
||||
"upload",
|
||||
@ -53,10 +53,10 @@
|
||||
"lodash": "4.17.21"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@types/jest": "29.5.2",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"tsconfig": "4.15.4"
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"tsconfig": "4.15.5-alpha.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0 <=20.x.x",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/provider-upload-cloudinary",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Cloudinary provider for strapi upload",
|
||||
"keywords": [
|
||||
"upload",
|
||||
@ -43,14 +43,14 @@
|
||||
"watch": "pack-up watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/utils": "4.15.4",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"cloudinary": "^1.41.0",
|
||||
"into-stream": "^5.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"tsconfig": "4.15.4"
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"tsconfig": "4.15.5-alpha.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0 <=20.x.x",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/provider-upload-local",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Local provider for strapi upload",
|
||||
"keywords": [
|
||||
"upload",
|
||||
@ -44,14 +44,14 @@
|
||||
"watch": "pack-up watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/utils": "4.15.4",
|
||||
"@strapi/utils": "4.15.5-alpha.1",
|
||||
"fs-extra": "10.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@types/jest": "29.5.2",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"tsconfig": "4.15.4"
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"tsconfig": "4.15.5-alpha.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0 <=20.x.x",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "api-tests",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"dotenv": "14.2.0",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "eslint-config-custom",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"private": true,
|
||||
"main": "index.js"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/logger",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Strapi's logger",
|
||||
"homepage": "https://strapi.io",
|
||||
"bugs": {
|
||||
@ -43,9 +43,9 @@
|
||||
"winston": "3.10.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"tsconfig": "4.15.4"
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"tsconfig": "4.15.5-alpha.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0 <=20.x.x",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/pack-up",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Simple tools for creating interoperable CJS & ESM packages.",
|
||||
"keywords": [
|
||||
"strapi",
|
||||
@ -84,11 +84,11 @@
|
||||
"yup": "0.32.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/pack-up": "4.15.4",
|
||||
"@strapi/pack-up": "4.15.5-alpha.1",
|
||||
"@types/git-url-parse": "9.0.1",
|
||||
"@types/ini": "1.3.31",
|
||||
"@types/prompts": "2.4.4",
|
||||
"eslint-config-custom": "4.15.4",
|
||||
"eslint-config-custom": "4.15.5-alpha.1",
|
||||
"rimraf": "3.0.2"
|
||||
},
|
||||
"engines": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tsconfig",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"private": true,
|
||||
"devDependencies": {
|
||||
"@tsconfig/node18": "18.2.2"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@strapi/typescript-utils",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"description": "Typescript support for Strapi",
|
||||
"keywords": [
|
||||
"strapi",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "scripts-front",
|
||||
"version": "4.15.4",
|
||||
"version": "4.15.5-alpha.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"test:front": "jest --config jest.config.front.js"
|
||||
|
411
yarn.lock
411
yarn.lock
@ -8613,7 +8613,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/admin-test-utils@npm:4.15.4, @strapi/admin-test-utils@workspace:*, @strapi/admin-test-utils@workspace:packages/admin-test-utils":
|
||||
"@strapi/admin-test-utils@npm:4.15.5-alpha.1, @strapi/admin-test-utils@workspace:*, @strapi/admin-test-utils@workspace:packages/admin-test-utils":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/admin-test-utils@workspace:packages/admin-test-utils"
|
||||
dependencies:
|
||||
@ -8621,9 +8621,9 @@ __metadata:
|
||||
"@reduxjs/toolkit": "npm:1.9.7"
|
||||
"@strapi/pack-up": "workspace:*"
|
||||
"@testing-library/jest-dom": "npm:5.16.5"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
jest-styled-components: "npm:7.1.1"
|
||||
tsconfig: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
whatwg-fetch: "npm:3.6.2"
|
||||
peerDependencies:
|
||||
"@reduxjs/toolkit": ^1.9.7
|
||||
@ -8746,7 +8746,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/admin@npm:4.15.4, @strapi/admin@workspace:packages/core/admin":
|
||||
"@strapi/admin@npm:4.15.5-alpha.1, @strapi/admin@workspace:packages/core/admin":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/admin@workspace:packages/core/admin"
|
||||
dependencies:
|
||||
@ -8755,18 +8755,18 @@ __metadata:
|
||||
"@radix-ui/react-context": "npm:1.0.1"
|
||||
"@radix-ui/react-toolbar": "npm:1.0.4"
|
||||
"@reduxjs/toolkit": "npm:1.9.7"
|
||||
"@strapi/admin-test-utils": "npm:4.15.4"
|
||||
"@strapi/data-transfer": "npm:4.15.4"
|
||||
"@strapi/admin-test-utils": "npm:4.15.5-alpha.1"
|
||||
"@strapi/data-transfer": "npm:4.15.5-alpha.1"
|
||||
"@strapi/design-system": "npm:1.13.0"
|
||||
"@strapi/helper-plugin": "npm:4.15.4"
|
||||
"@strapi/helper-plugin": "npm:4.15.5-alpha.1"
|
||||
"@strapi/icons": "npm:1.13.0"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/permissions": "npm:4.15.4"
|
||||
"@strapi/provider-audit-logs-local": "npm:4.15.4"
|
||||
"@strapi/strapi": "npm:4.15.4"
|
||||
"@strapi/types": "npm:4.15.4"
|
||||
"@strapi/typescript-utils": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/permissions": "npm:4.15.5-alpha.1"
|
||||
"@strapi/provider-audit-logs-local": "npm:4.15.5-alpha.1"
|
||||
"@strapi/strapi": "npm:4.15.5-alpha.1"
|
||||
"@strapi/types": "npm:4.15.5-alpha.1"
|
||||
"@strapi/typescript-utils": "npm:4.15.5-alpha.1"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
"@testing-library/dom": "npm:9.2.0"
|
||||
"@testing-library/react": "npm:14.0.0"
|
||||
"@testing-library/user-event": "npm:14.4.3"
|
||||
@ -8776,7 +8776,7 @@ __metadata:
|
||||
"@types/pluralize": "npm:0.0.32"
|
||||
"@types/webpack-bundle-analyzer": "npm:4.6.2"
|
||||
"@types/webpack-hot-middleware": "npm:2.25.8"
|
||||
axios: "npm:1.5.0"
|
||||
axios: "npm:1.6.0"
|
||||
bcryptjs: "npm:2.4.3"
|
||||
boxen: "npm:5.1.2"
|
||||
browserslist: "npm:^4.22.1"
|
||||
@ -8902,15 +8902,15 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/data-transfer@npm:4.15.4, @strapi/data-transfer@workspace:packages/core/data-transfer":
|
||||
"@strapi/data-transfer@npm:4.15.5-alpha.1, @strapi/data-transfer@workspace:packages/core/data-transfer":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/data-transfer@workspace:packages/core/data-transfer"
|
||||
dependencies:
|
||||
"@strapi/logger": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/logger": "npm:4.15.5-alpha.1"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/strapi": "npm:4.15.2"
|
||||
"@strapi/types": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
"@strapi/types": "npm:4.15.5-alpha.1"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
"@types/fs-extra": "npm:9.0.13"
|
||||
"@types/jest": "npm:29.5.2"
|
||||
"@types/koa": "npm:2.13.4"
|
||||
@ -8961,20 +8961,20 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/database@npm:4.15.4, @strapi/database@workspace:packages/core/database":
|
||||
"@strapi/database@npm:4.15.5-alpha.1, @strapi/database@workspace:packages/core/database":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/database@workspace:packages/core/database"
|
||||
dependencies:
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
date-fns: "npm:2.30.0"
|
||||
debug: "npm:4.3.4"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
fs-extra: "npm:10.0.0"
|
||||
knex: "npm:2.5.0"
|
||||
lodash: "npm:4.17.21"
|
||||
semver: "npm:7.5.4"
|
||||
tsconfig: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
umzug: "npm:3.2.1"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
@ -9056,12 +9056,12 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/generate-new@npm:4.15.4, @strapi/generate-new@workspace:packages/generators/app":
|
||||
"@strapi/generate-new@npm:4.15.5-alpha.1, @strapi/generate-new@workspace:packages/generators/app":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/generate-new@workspace:packages/generators/app"
|
||||
dependencies:
|
||||
"@sentry/node": "npm:6.19.7"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
chalk: "npm:^4.1.2"
|
||||
copyfiles: "npm:2.4.1"
|
||||
execa: "npm:5.1.1"
|
||||
@ -9093,22 +9093,22 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/generators@npm:4.15.4, @strapi/generators@workspace:packages/generators/generators":
|
||||
"@strapi/generators@npm:4.15.5-alpha.1, @strapi/generators@workspace:packages/generators/generators":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/generators@workspace:packages/generators/generators"
|
||||
dependencies:
|
||||
"@sindresorhus/slugify": "npm:1.1.0"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/typescript-utils": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/typescript-utils": "npm:4.15.5-alpha.1"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
chalk: "npm:4.1.2"
|
||||
copyfiles: "npm:2.4.1"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
fs-extra: "npm:10.0.0"
|
||||
node-plop: "npm:0.26.3"
|
||||
plop: "npm:2.7.6"
|
||||
pluralize: "npm:8.0.0"
|
||||
tsconfig: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@ -9137,7 +9137,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/helper-plugin@npm:4.15.4, @strapi/helper-plugin@workspace:packages/core/helper-plugin":
|
||||
"@strapi/helper-plugin@npm:4.15.5-alpha.1, @strapi/helper-plugin@workspace:packages/core/helper-plugin":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/helper-plugin@workspace:packages/core/helper-plugin"
|
||||
dependencies:
|
||||
@ -9147,11 +9147,11 @@ __metadata:
|
||||
"@storybook/addon-mdx-gfm": "npm:7.4.0"
|
||||
"@storybook/builder-vite": "npm:7.4.0"
|
||||
"@storybook/react-vite": "npm:7.4.0"
|
||||
"@strapi/admin-test-utils": "npm:4.15.4"
|
||||
"@strapi/admin-test-utils": "npm:4.15.5-alpha.1"
|
||||
"@strapi/design-system": "npm:1.13.0"
|
||||
"@strapi/icons": "npm:1.13.0"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/types": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/types": "npm:4.15.5-alpha.1"
|
||||
"@testing-library/react": "npm:14.0.0"
|
||||
"@testing-library/user-event": "npm:14.4.3"
|
||||
"@types/react": "npm:18.2.7"
|
||||
@ -9159,10 +9159,10 @@ __metadata:
|
||||
"@types/react-helmet": "npm:6.1.6"
|
||||
"@types/react-router-dom": "npm:5.3.3"
|
||||
"@types/styled-components": "npm:5.1.26"
|
||||
axios: "npm:1.5.0"
|
||||
axios: "npm:1.6.0"
|
||||
cross-env: "npm:^7.0.3"
|
||||
date-fns: "npm:2.30.0"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
eslint-plugin-storybook: "npm:0.6.14"
|
||||
formik: "npm:2.4.0"
|
||||
immer: "npm:9.0.19"
|
||||
@ -9222,14 +9222,14 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/logger@npm:4.15.4, @strapi/logger@workspace:packages/utils/logger":
|
||||
"@strapi/logger@npm:4.15.5-alpha.1, @strapi/logger@workspace:packages/utils/logger":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/logger@workspace:packages/utils/logger"
|
||||
dependencies:
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
lodash: "npm:4.17.21"
|
||||
tsconfig: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
winston: "npm:3.10.0"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
@ -9265,11 +9265,11 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/pack-up@npm:4.15.4, @strapi/pack-up@workspace:*, @strapi/pack-up@workspace:packages/utils/pack-up":
|
||||
"@strapi/pack-up@npm:4.15.5-alpha.1, @strapi/pack-up@workspace:*, @strapi/pack-up@workspace:packages/utils/pack-up":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/pack-up@workspace:packages/utils/pack-up"
|
||||
dependencies:
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@types/git-url-parse": "npm:9.0.1"
|
||||
"@types/ini": "npm:1.3.31"
|
||||
"@types/prompts": "npm:2.4.4"
|
||||
@ -9281,7 +9281,7 @@ __metadata:
|
||||
commander: "npm:8.3.0"
|
||||
esbuild: "npm:0.19.2"
|
||||
esbuild-register: "npm:3.5.0"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
get-latest-version: "npm:5.1.0"
|
||||
git-url-parse: "npm:13.1.0"
|
||||
ini: "npm:4.1.1"
|
||||
@ -9314,18 +9314,18 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/permissions@npm:4.15.4, @strapi/permissions@workspace:packages/core/permissions":
|
||||
"@strapi/permissions@npm:4.15.5-alpha.1, @strapi/permissions@workspace:packages/core/permissions":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/permissions@workspace:packages/core/permissions"
|
||||
dependencies:
|
||||
"@casl/ability": "npm:6.5.0"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
lodash: "npm:4.17.21"
|
||||
qs: "npm:6.11.1"
|
||||
sift: "npm:16.0.1"
|
||||
tsconfig: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@ -9334,20 +9334,20 @@ __metadata:
|
||||
resolution: "@strapi/plugin-cloud@workspace:packages/plugins/cloud"
|
||||
dependencies:
|
||||
"@strapi/design-system": "npm:1.13.0"
|
||||
"@strapi/helper-plugin": "npm:4.15.4"
|
||||
"@strapi/helper-plugin": "npm:4.15.5-alpha.1"
|
||||
"@strapi/icons": "npm:1.13.0"
|
||||
"@strapi/strapi": "npm:4.15.4"
|
||||
"@strapi/strapi": "npm:4.15.5-alpha.1"
|
||||
"@types/react": "npm:18.2.7"
|
||||
"@types/react-dom": "npm:18.2.12"
|
||||
"@types/react-router-dom": "npm:^5.3.3"
|
||||
"@types/styled-components": "npm:5.1.26"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
react: "npm:18.2.0"
|
||||
react-dom: "npm:18.2.0"
|
||||
react-intl: "npm:6.4.1"
|
||||
react-router-dom: "npm:5.3.4"
|
||||
styled-components: "npm:5.3.3"
|
||||
tsconfig: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
typescript: "npm:5.2.2"
|
||||
peerDependencies:
|
||||
"@strapi/strapi": ^4.4.0
|
||||
@ -9358,14 +9358,14 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@strapi/plugin-color-picker@npm:4.15.4, @strapi/plugin-color-picker@workspace:packages/plugins/color-picker":
|
||||
"@strapi/plugin-color-picker@npm:4.15.5-alpha.1, @strapi/plugin-color-picker@workspace:packages/plugins/color-picker":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/plugin-color-picker@workspace:packages/plugins/color-picker"
|
||||
dependencies:
|
||||
"@strapi/design-system": "npm:1.13.0"
|
||||
"@strapi/helper-plugin": "npm:4.15.4"
|
||||
"@strapi/helper-plugin": "npm:4.15.5-alpha.1"
|
||||
"@strapi/icons": "npm:1.13.0"
|
||||
"@strapi/strapi": "npm:4.15.4"
|
||||
"@strapi/strapi": "npm:4.15.5-alpha.1"
|
||||
"@testing-library/react": "npm:14.0.0"
|
||||
"@testing-library/user-event": "npm:14.4.3"
|
||||
"@types/styled-components": "npm:5.1.26"
|
||||
@ -9398,12 +9398,12 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/plugin-content-manager@npm:4.15.4, @strapi/plugin-content-manager@workspace:packages/core/content-manager":
|
||||
"@strapi/plugin-content-manager@npm:4.15.5-alpha.1, @strapi/plugin-content-manager@workspace:packages/core/content-manager":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/plugin-content-manager@workspace:packages/core/content-manager"
|
||||
dependencies:
|
||||
"@sindresorhus/slugify": "npm:1.1.0"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
lodash: "npm:4.17.21"
|
||||
qs: "npm:6.11.1"
|
||||
languageName: unknown
|
||||
@ -9439,18 +9439,18 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/plugin-content-type-builder@npm:4.15.4, @strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder":
|
||||
"@strapi/plugin-content-type-builder@npm:4.15.5-alpha.1, @strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder"
|
||||
dependencies:
|
||||
"@sindresorhus/slugify": "npm:1.1.0"
|
||||
"@strapi/design-system": "npm:1.13.0"
|
||||
"@strapi/generators": "npm:4.15.4"
|
||||
"@strapi/helper-plugin": "npm:4.15.4"
|
||||
"@strapi/generators": "npm:4.15.5-alpha.1"
|
||||
"@strapi/helper-plugin": "npm:4.15.5-alpha.1"
|
||||
"@strapi/icons": "npm:1.13.0"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/strapi": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/strapi": "npm:4.15.5-alpha.1"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
"@testing-library/react": "npm:14.0.0"
|
||||
fs-extra: "npm:10.0.0"
|
||||
history: "npm:^4.9.0"
|
||||
@ -9476,17 +9476,17 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@strapi/plugin-documentation@npm:4.15.4, @strapi/plugin-documentation@workspace:packages/plugins/documentation":
|
||||
"@strapi/plugin-documentation@npm:4.15.5-alpha.1, @strapi/plugin-documentation@workspace:packages/plugins/documentation":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/plugin-documentation@workspace:packages/plugins/documentation"
|
||||
dependencies:
|
||||
"@apidevtools/swagger-parser": "npm:^10.1.0"
|
||||
"@strapi/design-system": "npm:1.13.0"
|
||||
"@strapi/helper-plugin": "npm:4.15.4"
|
||||
"@strapi/helper-plugin": "npm:4.15.5-alpha.1"
|
||||
"@strapi/icons": "npm:1.13.0"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/strapi": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/strapi": "npm:4.15.5-alpha.1"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
"@testing-library/react": "npm:14.0.0"
|
||||
"@testing-library/user-event": "npm:14.4.3"
|
||||
bcryptjs: "npm:2.4.3"
|
||||
@ -9541,17 +9541,17 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/plugin-email@npm:4.15.4, @strapi/plugin-email@workspace:packages/core/email":
|
||||
"@strapi/plugin-email@npm:4.15.5-alpha.1, @strapi/plugin-email@workspace:packages/core/email":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/plugin-email@workspace:packages/core/email"
|
||||
dependencies:
|
||||
"@strapi/design-system": "npm:1.13.0"
|
||||
"@strapi/helper-plugin": "npm:4.15.4"
|
||||
"@strapi/helper-plugin": "npm:4.15.5-alpha.1"
|
||||
"@strapi/icons": "npm:1.13.0"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/provider-email-sendmail": "npm:4.15.4"
|
||||
"@strapi/types": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/provider-email-sendmail": "npm:4.15.5-alpha.1"
|
||||
"@strapi/types": "npm:4.15.5-alpha.1"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
"@testing-library/react": "npm:14.0.0"
|
||||
"@types/koa": "npm:2.13.4"
|
||||
"@types/lodash": "npm:^4.14.191"
|
||||
@ -9575,18 +9575,18 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@strapi/plugin-graphql@npm:4.15.4, @strapi/plugin-graphql@workspace:packages/plugins/graphql":
|
||||
"@strapi/plugin-graphql@npm:4.15.5-alpha.1, @strapi/plugin-graphql@workspace:packages/plugins/graphql":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/plugin-graphql@workspace:packages/plugins/graphql"
|
||||
dependencies:
|
||||
"@graphql-tools/schema": "npm:8.5.1"
|
||||
"@graphql-tools/utils": "npm:^8.13.1"
|
||||
"@strapi/design-system": "npm:1.13.0"
|
||||
"@strapi/helper-plugin": "npm:4.15.4"
|
||||
"@strapi/helper-plugin": "npm:4.15.5-alpha.1"
|
||||
"@strapi/icons": "npm:1.13.0"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/strapi": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/strapi": "npm:4.15.5-alpha.1"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
apollo-server-core: "npm:3.12.1"
|
||||
apollo-server-koa: "npm:3.10.0"
|
||||
cross-env: "npm:^7.0.3"
|
||||
@ -9613,17 +9613,17 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@strapi/plugin-i18n@npm:4.15.4, @strapi/plugin-i18n@workspace:packages/plugins/i18n":
|
||||
"@strapi/plugin-i18n@npm:4.15.5-alpha.1, @strapi/plugin-i18n@workspace:packages/plugins/i18n":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/plugin-i18n@workspace:packages/plugins/i18n"
|
||||
dependencies:
|
||||
"@reduxjs/toolkit": "npm:1.9.7"
|
||||
"@strapi/design-system": "npm:1.13.0"
|
||||
"@strapi/helper-plugin": "npm:4.15.4"
|
||||
"@strapi/helper-plugin": "npm:4.15.5-alpha.1"
|
||||
"@strapi/icons": "npm:1.13.0"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/strapi": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/strapi": "npm:4.15.5-alpha.1"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
"@testing-library/react": "npm:14.0.0"
|
||||
formik: "npm:2.4.0"
|
||||
immer: "npm:9.0.19"
|
||||
@ -9648,16 +9648,16 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@strapi/plugin-sentry@npm:4.15.4, @strapi/plugin-sentry@workspace:packages/plugins/sentry":
|
||||
"@strapi/plugin-sentry@npm:4.15.5-alpha.1, @strapi/plugin-sentry@workspace:packages/plugins/sentry":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/plugin-sentry@workspace:packages/plugins/sentry"
|
||||
dependencies:
|
||||
"@sentry/node": "npm:6.19.7"
|
||||
"@strapi/design-system": "npm:1.13.0"
|
||||
"@strapi/helper-plugin": "npm:4.15.4"
|
||||
"@strapi/helper-plugin": "npm:4.15.5-alpha.1"
|
||||
"@strapi/icons": "npm:1.13.0"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/strapi": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/strapi": "npm:4.15.5-alpha.1"
|
||||
react: "npm:^18.2.0"
|
||||
react-dom: "npm:^18.2.0"
|
||||
react-router-dom: "npm:5.3.4"
|
||||
@ -9711,21 +9711,21 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/plugin-upload@npm:4.15.4, @strapi/plugin-upload@workspace:packages/core/upload":
|
||||
"@strapi/plugin-upload@npm:4.15.5-alpha.1, @strapi/plugin-upload@workspace:packages/core/upload":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/plugin-upload@workspace:packages/core/upload"
|
||||
dependencies:
|
||||
"@strapi/design-system": "npm:1.13.0"
|
||||
"@strapi/helper-plugin": "npm:4.15.4"
|
||||
"@strapi/helper-plugin": "npm:4.15.5-alpha.1"
|
||||
"@strapi/icons": "npm:1.13.0"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/provider-upload-local": "npm:4.15.4"
|
||||
"@strapi/strapi": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/provider-upload-local": "npm:4.15.5-alpha.1"
|
||||
"@strapi/strapi": "npm:4.15.5-alpha.1"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
"@testing-library/dom": "npm:9.2.0"
|
||||
"@testing-library/react": "npm:14.0.0"
|
||||
"@testing-library/user-event": "npm:14.4.3"
|
||||
axios: "npm:1.5.0"
|
||||
axios: "npm:1.6.0"
|
||||
byte-size: "npm:7.0.1"
|
||||
cropperjs: "npm:1.6.0"
|
||||
date-fns: "npm:2.30.0"
|
||||
@ -9760,16 +9760,16 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@strapi/plugin-users-permissions@npm:4.15.4, @strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions":
|
||||
"@strapi/plugin-users-permissions@npm:4.15.5-alpha.1, @strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions"
|
||||
dependencies:
|
||||
"@strapi/design-system": "npm:1.13.0"
|
||||
"@strapi/helper-plugin": "npm:4.15.4"
|
||||
"@strapi/helper-plugin": "npm:4.15.5-alpha.1"
|
||||
"@strapi/icons": "npm:1.13.0"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/strapi": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/strapi": "npm:4.15.5-alpha.1"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
"@testing-library/dom": "npm:9.2.0"
|
||||
"@testing-library/react": "npm:14.0.0"
|
||||
"@testing-library/user-event": "npm:14.4.3"
|
||||
@ -9810,14 +9810,14 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/provider-audit-logs-local@npm:4.15.4, @strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local":
|
||||
"@strapi/provider-audit-logs-local@npm:4.15.5-alpha.1, @strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local"
|
||||
dependencies:
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/types": "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/types": "npm:4.15.5-alpha.1"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@ -9825,24 +9825,24 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/provider-email-amazon-ses@workspace:packages/providers/email-amazon-ses"
|
||||
dependencies:
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
node-ses: "npm:^3.0.3"
|
||||
tsconfig: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@strapi/provider-email-mailgun@npm:4.15.4, @strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun":
|
||||
"@strapi/provider-email-mailgun@npm:4.15.5-alpha.1, @strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun"
|
||||
dependencies:
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
form-data: "npm:^4.0.0"
|
||||
mailgun.js: "npm:8.2.1"
|
||||
tsconfig: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@ -9850,12 +9850,12 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/provider-email-nodemailer@workspace:packages/providers/email-nodemailer"
|
||||
dependencies:
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@types/nodemailer": "npm:6.4.7"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
lodash: "npm:4.17.21"
|
||||
nodemailer: "npm:6.9.1"
|
||||
tsconfig: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@ -9864,10 +9864,10 @@ __metadata:
|
||||
resolution: "@strapi/provider-email-sendgrid@workspace:packages/providers/email-sendgrid"
|
||||
dependencies:
|
||||
"@sendgrid/mail": "npm:7.7.0"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@ -9881,20 +9881,20 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/provider-email-sendmail@npm:4.15.4, @strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail":
|
||||
"@strapi/provider-email-sendmail@npm:4.15.5-alpha.1, @strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail"
|
||||
dependencies:
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
"@types/sendmail": "npm:1.4.4"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
sendmail: "npm:^1.6.1"
|
||||
tsconfig: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@strapi/provider-upload-aws-s3@npm:4.15.4, @strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3":
|
||||
"@strapi/provider-upload-aws-s3@npm:4.15.5-alpha.1, @strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3"
|
||||
dependencies:
|
||||
@ -9902,24 +9902,24 @@ __metadata:
|
||||
"@aws-sdk/lib-storage": "npm:3.433.0"
|
||||
"@aws-sdk/s3-request-presigner": "npm:3.433.0"
|
||||
"@aws-sdk/types": "npm:3.433.0"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@types/jest": "npm:29.5.2"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
lodash: "npm:4.17.21"
|
||||
tsconfig: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@strapi/provider-upload-cloudinary@npm:4.15.4, @strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary":
|
||||
"@strapi/provider-upload-cloudinary@npm:4.15.5-alpha.1, @strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary"
|
||||
dependencies:
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
cloudinary: "npm:^1.41.0"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
into-stream: "npm:^5.1.0"
|
||||
tsconfig: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@ -9933,16 +9933,16 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/provider-upload-local@npm:4.15.4, @strapi/provider-upload-local@workspace:packages/providers/upload-local":
|
||||
"@strapi/provider-upload-local@npm:4.15.5-alpha.1, @strapi/provider-upload-local@workspace:packages/providers/upload-local":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/provider-upload-local@workspace:packages/providers/upload-local"
|
||||
dependencies:
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
"@types/jest": "npm:29.5.2"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
fs-extra: "npm:10.0.0"
|
||||
tsconfig: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@ -10014,28 +10014,28 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/strapi@npm:4.15.4, @strapi/strapi@workspace:packages/core/strapi":
|
||||
"@strapi/strapi@npm:4.15.5-alpha.1, @strapi/strapi@workspace:packages/core/strapi":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/strapi@workspace:packages/core/strapi"
|
||||
dependencies:
|
||||
"@koa/cors": "npm:3.4.3"
|
||||
"@koa/router": "npm:10.1.1"
|
||||
"@strapi/admin": "npm:4.15.4"
|
||||
"@strapi/data-transfer": "npm:4.15.4"
|
||||
"@strapi/database": "npm:4.15.4"
|
||||
"@strapi/generate-new": "npm:4.15.4"
|
||||
"@strapi/generators": "npm:4.15.4"
|
||||
"@strapi/logger": "npm:4.15.4"
|
||||
"@strapi/admin": "npm:4.15.5-alpha.1"
|
||||
"@strapi/data-transfer": "npm:4.15.5-alpha.1"
|
||||
"@strapi/database": "npm:4.15.5-alpha.1"
|
||||
"@strapi/generate-new": "npm:4.15.5-alpha.1"
|
||||
"@strapi/generators": "npm:4.15.5-alpha.1"
|
||||
"@strapi/logger": "npm:4.15.5-alpha.1"
|
||||
"@strapi/pack-up": "workspace:*"
|
||||
"@strapi/permissions": "npm:4.15.4"
|
||||
"@strapi/plugin-content-manager": "npm:4.15.4"
|
||||
"@strapi/plugin-content-type-builder": "npm:4.15.4"
|
||||
"@strapi/plugin-email": "npm:4.15.4"
|
||||
"@strapi/plugin-upload": "npm:4.15.4"
|
||||
"@strapi/permissions": "npm:4.15.5-alpha.1"
|
||||
"@strapi/plugin-content-manager": "npm:4.15.5-alpha.1"
|
||||
"@strapi/plugin-content-type-builder": "npm:4.15.5-alpha.1"
|
||||
"@strapi/plugin-email": "npm:4.15.5-alpha.1"
|
||||
"@strapi/plugin-upload": "npm:4.15.5-alpha.1"
|
||||
"@strapi/ts-zen": "npm:^0.2.0"
|
||||
"@strapi/types": "npm:4.15.4"
|
||||
"@strapi/typescript-utils": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
"@strapi/types": "npm:4.15.5-alpha.1"
|
||||
"@strapi/typescript-utils": "npm:4.15.5-alpha.1"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
"@types/bcryptjs": "npm:2.4.3"
|
||||
"@types/configstore": "npm:5.0.1"
|
||||
"@types/delegates": "npm:1.0.0"
|
||||
@ -10061,7 +10061,7 @@ __metadata:
|
||||
debug: "npm:4.3.4"
|
||||
delegates: "npm:1.0.0"
|
||||
dotenv: "npm:14.2.0"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
execa: "npm:5.1.1"
|
||||
fs-extra: "npm:10.0.0"
|
||||
glob: "npm:7.2.3"
|
||||
@ -10091,7 +10091,7 @@ __metadata:
|
||||
semver: "npm:7.5.4"
|
||||
statuses: "npm:2.0.1"
|
||||
supertest: "npm:6.3.3"
|
||||
tsconfig: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
typescript: "npm:5.2.2"
|
||||
yup: "npm:0.32.9"
|
||||
bin:
|
||||
@ -10128,29 +10128,29 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/types@npm:4.15.4, @strapi/types@workspace:packages/core/types":
|
||||
"@strapi/types@npm:4.15.5-alpha.1, @strapi/types@workspace:packages/core/types":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/types@workspace:packages/core/types"
|
||||
dependencies:
|
||||
"@koa/cors": "npm:3.4.3"
|
||||
"@koa/router": "npm:10.1.1"
|
||||
"@strapi/database": "npm:4.15.4"
|
||||
"@strapi/logger": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/permissions": "npm:4.15.4"
|
||||
"@strapi/database": "npm:4.15.5-alpha.1"
|
||||
"@strapi/logger": "npm:4.15.5-alpha.1"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@strapi/permissions": "npm:4.15.5-alpha.1"
|
||||
"@strapi/ts-zen": "npm:^0.2.0"
|
||||
"@strapi/utils": "npm:4.15.4"
|
||||
"@strapi/utils": "npm:4.15.5-alpha.1"
|
||||
"@types/jest": "npm:29.5.2"
|
||||
"@types/koa": "npm:2.13.4"
|
||||
"@types/koa__router": "npm:12.0.0"
|
||||
"@types/node-schedule": "npm:2.1.0"
|
||||
commander: "npm:8.3.0"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
https-proxy-agent: "npm:5.0.1"
|
||||
koa: "npm:2.13.4"
|
||||
node-fetch: "npm:2.7.0"
|
||||
node-schedule: "npm:2.1.0"
|
||||
tsconfig: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
typescript: "npm:5.2.2"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
@ -10169,7 +10169,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/typescript-utils@npm:4.15.4, @strapi/typescript-utils@workspace:packages/utils/typescript":
|
||||
"@strapi/typescript-utils@npm:4.15.5-alpha.1, @strapi/typescript-utils@workspace:packages/utils/typescript":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/typescript-utils@workspace:packages/utils/typescript"
|
||||
dependencies:
|
||||
@ -10228,22 +10228,22 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@strapi/utils@npm:4.15.4, @strapi/utils@workspace:packages/core/utils":
|
||||
"@strapi/utils@npm:4.15.5-alpha.1, @strapi/utils@workspace:packages/core/utils":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/utils@workspace:packages/core/utils"
|
||||
dependencies:
|
||||
"@sindresorhus/slugify": "npm:1.1.0"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
"@types/koa": "npm:2.13.4"
|
||||
"@types/node": "npm:18.18.4"
|
||||
date-fns: "npm:2.30.0"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
http-errors: "npm:1.8.1"
|
||||
koa: "npm:2.13.4"
|
||||
koa-body: "npm:4.2.0"
|
||||
lodash: "npm:4.17.21"
|
||||
p-map: "npm:4.0.0"
|
||||
tsconfig: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
yup: "npm:0.32.9"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
@ -13468,6 +13468,17 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"axios@npm:1.6.0":
|
||||
version: 1.6.0
|
||||
resolution: "axios@npm:1.6.0"
|
||||
dependencies:
|
||||
follow-redirects: "npm:^1.15.0"
|
||||
form-data: "npm:^4.0.0"
|
||||
proxy-from-env: "npm:^1.1.0"
|
||||
checksum: f069d938a05d2293e27c7cd6f0c08a1cb764f7cc43a1e637572f8d5928837ecd735890ad67a867d696094ee4b8b4dfdb3727a57aae600845e4c295581cb32f9a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"axios@npm:^0.26.0":
|
||||
version: 0.26.1
|
||||
resolution: "axios@npm:0.26.1"
|
||||
@ -15631,12 +15642,12 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "create-strapi-app@workspace:packages/cli/create-strapi-app"
|
||||
dependencies:
|
||||
"@strapi/generate-new": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/generate-new": "npm:4.15.5-alpha.1"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
commander: "npm:8.3.0"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
inquirer: "npm:8.2.5"
|
||||
tsconfig: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
bin:
|
||||
create-strapi-app: ./bin/index.js
|
||||
languageName: unknown
|
||||
@ -15646,17 +15657,17 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "create-strapi-starter@workspace:packages/cli/create-strapi-starter"
|
||||
dependencies:
|
||||
"@strapi/generate-new": "npm:4.15.4"
|
||||
"@strapi/pack-up": "npm:4.15.4"
|
||||
"@strapi/generate-new": "npm:4.15.5-alpha.1"
|
||||
"@strapi/pack-up": "npm:4.15.5-alpha.1"
|
||||
chalk: "npm:4.1.2"
|
||||
ci-info: "npm:3.8.0"
|
||||
commander: "npm:8.3.0"
|
||||
eslint-config-custom: "npm:4.15.4"
|
||||
eslint-config-custom: "npm:4.15.5-alpha.1"
|
||||
execa: "npm:5.1.1"
|
||||
fs-extra: "npm:10.0.0"
|
||||
inquirer: "npm:8.2.5"
|
||||
ora: "npm:5.4.1"
|
||||
tsconfig: "npm:4.15.4"
|
||||
tsconfig: "npm:4.15.5-alpha.1"
|
||||
bin:
|
||||
create-strapi-starter: ./bin/index.js
|
||||
languageName: unknown
|
||||
@ -17559,7 +17570,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"eslint-config-custom@npm:4.15.4, eslint-config-custom@workspace:packages/utils/eslint-config-custom":
|
||||
"eslint-config-custom@npm:4.15.5-alpha.1, eslint-config-custom@workspace:packages/utils/eslint-config-custom":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "eslint-config-custom@workspace:packages/utils/eslint-config-custom"
|
||||
languageName: unknown
|
||||
@ -19487,16 +19498,16 @@ __metadata:
|
||||
resolution: "getstarted@workspace:examples/getstarted"
|
||||
dependencies:
|
||||
"@strapi/icons": "npm:1.11.0"
|
||||
"@strapi/plugin-color-picker": "npm:4.15.4"
|
||||
"@strapi/plugin-documentation": "npm:4.15.4"
|
||||
"@strapi/plugin-graphql": "npm:4.15.4"
|
||||
"@strapi/plugin-i18n": "npm:4.15.4"
|
||||
"@strapi/plugin-sentry": "npm:4.15.4"
|
||||
"@strapi/plugin-users-permissions": "npm:4.15.4"
|
||||
"@strapi/provider-email-mailgun": "npm:4.15.4"
|
||||
"@strapi/provider-upload-aws-s3": "npm:4.15.4"
|
||||
"@strapi/provider-upload-cloudinary": "npm:4.15.4"
|
||||
"@strapi/strapi": "npm:4.15.4"
|
||||
"@strapi/plugin-color-picker": "npm:4.15.5-alpha.1"
|
||||
"@strapi/plugin-documentation": "npm:4.15.5-alpha.1"
|
||||
"@strapi/plugin-graphql": "npm:4.15.5-alpha.1"
|
||||
"@strapi/plugin-i18n": "npm:4.15.5-alpha.1"
|
||||
"@strapi/plugin-sentry": "npm:4.15.5-alpha.1"
|
||||
"@strapi/plugin-users-permissions": "npm:4.15.5-alpha.1"
|
||||
"@strapi/provider-email-mailgun": "npm:4.15.5-alpha.1"
|
||||
"@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.1"
|
||||
"@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.1"
|
||||
"@strapi/strapi": "npm:4.15.5-alpha.1"
|
||||
better-sqlite3: "npm:8.6.0"
|
||||
lodash: "npm:4.17.21"
|
||||
mysql: "npm:2.18.1"
|
||||
@ -23014,9 +23025,9 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "kitchensink-ts@workspace:examples/kitchensink-ts"
|
||||
dependencies:
|
||||
"@strapi/plugin-i18n": "npm:4.15.4"
|
||||
"@strapi/plugin-users-permissions": "npm:4.15.4"
|
||||
"@strapi/strapi": "npm:4.15.4"
|
||||
"@strapi/plugin-i18n": "npm:4.15.5-alpha.1"
|
||||
"@strapi/plugin-users-permissions": "npm:4.15.5-alpha.1"
|
||||
"@strapi/strapi": "npm:4.15.5-alpha.1"
|
||||
better-sqlite3: "npm:8.6.0"
|
||||
react: "npm:^18.2.0"
|
||||
react-dom: "npm:^18.2.0"
|
||||
@ -23029,10 +23040,10 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "kitchensink@workspace:examples/kitchensink"
|
||||
dependencies:
|
||||
"@strapi/provider-email-mailgun": "npm:4.15.4"
|
||||
"@strapi/provider-upload-aws-s3": "npm:4.15.4"
|
||||
"@strapi/provider-upload-cloudinary": "npm:4.15.4"
|
||||
"@strapi/strapi": "npm:4.15.4"
|
||||
"@strapi/provider-email-mailgun": "npm:4.15.5-alpha.1"
|
||||
"@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.1"
|
||||
"@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.1"
|
||||
"@strapi/strapi": "npm:4.15.5-alpha.1"
|
||||
lodash: "npm:4.17.21"
|
||||
mysql: "npm:2.18.1"
|
||||
mysql2: "npm:3.6.0"
|
||||
@ -31974,7 +31985,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"tsconfig@npm:4.15.4, tsconfig@workspace:packages/utils/tsconfig":
|
||||
"tsconfig@npm:4.15.5-alpha.1, tsconfig@workspace:packages/utils/tsconfig":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "tsconfig@workspace:packages/utils/tsconfig"
|
||||
dependencies:
|
||||
|
Loading…
x
Reference in New Issue
Block a user