mirror of https://github.com/alibaba/ice.git
Compare commits
6 Commits
96944217b3
...
a5eaf7435d
| Author | SHA1 | Date |
|---|---|---|
|
|
a5eaf7435d | |
|
|
22b10c0d1c | |
|
|
cc0792b0fd | |
|
|
34659a428e | |
|
|
5a15fac778 | |
|
|
2837d34b55 |
|
|
@ -1,5 +1,13 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 3.6.3
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- cc0792b0: fix: minify server bundle when build in prod
|
||||||
|
- Updated dependencies [cc0792b0]
|
||||||
|
- @ice/runtime@1.5.3
|
||||||
|
|
||||||
## 3.6.2
|
## 3.6.2
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@ice/app",
|
"name": "@ice/app",
|
||||||
"version": "3.6.2",
|
"version": "3.6.3",
|
||||||
"description": "provide scripts and configuration used by web framework ice",
|
"description": "provide scripts and configuration used by web framework ice",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./esm/index.js",
|
"main": "./esm/index.js",
|
||||||
|
|
|
||||||
|
|
@ -184,6 +184,7 @@ export function createServerCompiler(options: Options) {
|
||||||
// while it is not recommended
|
// while it is not recommended
|
||||||
loader: { '.js': 'jsx' },
|
loader: { '.js': 'jsx' },
|
||||||
jsx: 'automatic',
|
jsx: 'automatic',
|
||||||
|
minify: !dev,
|
||||||
sourcemap: typeof sourceMap === 'boolean'
|
sourcemap: typeof sourceMap === 'boolean'
|
||||||
// Transform sourceMap for esbuild.
|
// Transform sourceMap for esbuild.
|
||||||
? sourceMap : (sourceMap.includes('inline') ? 'inline' : !!sourceMap),
|
? sourceMap : (sourceMap.includes('inline') ? 'inline' : !!sourceMap),
|
||||||
|
|
|
||||||
|
|
@ -59,6 +59,7 @@ interface RenderOptions {
|
||||||
publicPath?: string;
|
publicPath?: string;
|
||||||
serverData?: any;
|
serverData?: any;
|
||||||
streamOptions?: RenderToPipeableStreamOptions;
|
streamOptions?: RenderToPipeableStreamOptions;
|
||||||
|
documentProps?: Record<string, unknown>;
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function renderToHTML(requestContext, options: RenderOptions = {}) {
|
export async function renderToHTML(requestContext, options: RenderOptions = {}) {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,11 @@
|
||||||
# @ice/miniapp-react-dom
|
# @ice/miniapp-react-dom
|
||||||
|
|
||||||
|
## 1.1.4
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- @ice/miniapp-runtime@1.2.4
|
||||||
|
|
||||||
## 1.1.3
|
## 1.1.3
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@ice/miniapp-react-dom",
|
"name": "@ice/miniapp-react-dom",
|
||||||
"version": "1.1.3",
|
"version": "1.1.4",
|
||||||
"description": "like react-dom, but for miniapps.",
|
"description": "like react-dom, but for miniapps.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"types": "./esm/index.d.ts",
|
"types": "./esm/index.d.ts",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,12 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.2.4
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [cc0792b0]
|
||||||
|
- @ice/runtime@1.5.3
|
||||||
|
|
||||||
## 1.2.3
|
## 1.2.3
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@ice/miniapp-runtime",
|
"name": "@ice/miniapp-runtime",
|
||||||
"version": "1.2.3",
|
"version": "1.2.4",
|
||||||
"description": "ice runtime for miniapps.",
|
"description": "ice runtime for miniapps.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"types": "./esm/index.d.ts",
|
"types": "./esm/index.d.ts",
|
||||||
|
|
|
||||||
|
|
@ -56,8 +56,8 @@
|
||||||
"webpack-dev-server": "4.15.0"
|
"webpack-dev-server": "4.15.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@ice/app": "^3.6.2",
|
"@ice/app": "^3.6.3",
|
||||||
"@ice/runtime": "^1.5.2"
|
"@ice/runtime": "^1.5.3"
|
||||||
},
|
},
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,12 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.2.5
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- @ice/miniapp-runtime@1.2.4
|
||||||
|
- @ice/miniapp-react-dom@1.1.4
|
||||||
|
|
||||||
## 1.2.4
|
## 1.2.4
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@ice/plugin-miniapp",
|
"name": "@ice/plugin-miniapp",
|
||||||
"version": "1.2.4",
|
"version": "1.2.5",
|
||||||
"description": "ice.js plugin for miniapp.",
|
"description": "ice.js plugin for miniapp.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|
@ -50,8 +50,8 @@
|
||||||
"sax": "^1.2.4"
|
"sax": "^1.2.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@ice/app": "^3.6.2",
|
"@ice/app": "^3.6.3",
|
||||||
"@ice/runtime": "^1.5.2",
|
"@ice/runtime": "^1.5.3",
|
||||||
"webpack": "^5.88.0"
|
"webpack": "^5.88.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
# @ice/plugin-react-query
|
||||||
|
|
||||||
|
## 1.0.0
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"name": "@ice/plugin-react-query",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "React Query plugin for ice.",
|
||||||
|
"license": "MIT",
|
||||||
|
"type": "module",
|
||||||
|
"main": "./esm/index.js",
|
||||||
|
"types": "./esm/index.d.ts",
|
||||||
|
"files": [
|
||||||
|
"esm",
|
||||||
|
"!esm/**/*.map",
|
||||||
|
"*.d.ts"
|
||||||
|
],
|
||||||
|
"dependencies": {
|
||||||
|
"@tanstack/react-query": "^5.50.1",
|
||||||
|
"@tanstack/react-query-devtools": "^5.50.1"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@ice/app": "^3.4.9",
|
||||||
|
"@ice/runtime": "^1.4.8",
|
||||||
|
"@types/react": "^18.0.0",
|
||||||
|
"@types/react-dom": "^18.0.0",
|
||||||
|
"@tanstack/query-devtools": "^5.50.1"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "http",
|
||||||
|
"url": "https://github.com/alibaba/ice/tree/master/packages/plugin-request"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"watch": "tsc -w --sourceMap",
|
||||||
|
"build": "tsc"
|
||||||
|
},
|
||||||
|
"publishConfig": {
|
||||||
|
"access": "public"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,47 @@
|
||||||
|
import { createRequire } from 'module';
|
||||||
|
import type { Plugin } from '@ice/app/types';
|
||||||
|
|
||||||
|
const require = createRequire(import.meta.url);
|
||||||
|
const PLUGIN_NAME = '@ice/plugin-react-query';
|
||||||
|
|
||||||
|
const plugin: Plugin<void> = () => {
|
||||||
|
return {
|
||||||
|
name: PLUGIN_NAME,
|
||||||
|
setup: ({ generator, onGetConfig }) => {
|
||||||
|
generator.addExport({
|
||||||
|
specifier: [
|
||||||
|
// Core API export from @tanstack/react-query
|
||||||
|
'useQuery',
|
||||||
|
'useMutation',
|
||||||
|
'useQueryClient',
|
||||||
|
'useMutationState',
|
||||||
|
'useSuspenseQuery',
|
||||||
|
'useSuspenseInfiniteQuery',
|
||||||
|
'useSuspenseQueries',
|
||||||
|
'queryOptions',
|
||||||
|
'infiniteQueryOptions',
|
||||||
|
'QueryClientProvider',
|
||||||
|
'useQueryClient',
|
||||||
|
'QueryErrorResetBoundary',
|
||||||
|
'useQueryErrorResetBoundary',
|
||||||
|
'useIsRestoring',
|
||||||
|
'IsRestoringProvider',
|
||||||
|
],
|
||||||
|
source: '@tanstack/react-query',
|
||||||
|
type: false,
|
||||||
|
});
|
||||||
|
onGetConfig((config) => {
|
||||||
|
// Add alias for react-query and react-query-devtools to avoid mismatching versions.
|
||||||
|
config.alias = {
|
||||||
|
...config.alias,
|
||||||
|
'@tanstack/react-query': require.resolve('@tanstack/react-query'),
|
||||||
|
'@tanstack/react-query-devtools': require.resolve('@tanstack/react-query-devtools'),
|
||||||
|
};
|
||||||
|
});
|
||||||
|
},
|
||||||
|
runtime: `${PLUGIN_NAME}/runtime`,
|
||||||
|
staticRuntime: true,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
export default plugin;
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
import * as React from 'react';
|
||||||
|
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
||||||
|
import { ReactQueryDevtools } from '@tanstack/react-query-devtools';
|
||||||
|
import type { RuntimePlugin } from '@ice/runtime/types';
|
||||||
|
import type { ReactQueryConfig } from './types';
|
||||||
|
|
||||||
|
const EXPORT_CONFIG_NAME = 'reactQueryConfig';
|
||||||
|
|
||||||
|
const runtime: RuntimePlugin = ({ addProvider, appContext }) => {
|
||||||
|
const { appExport } = appContext;
|
||||||
|
const reactQueryConfig = appExport[EXPORT_CONFIG_NAME] as ReactQueryConfig;
|
||||||
|
const queryClient = new QueryClient({
|
||||||
|
...(reactQueryConfig?.queryClientConfig || {}),
|
||||||
|
defaultOptions: {
|
||||||
|
queries: {
|
||||||
|
refetchOnWindowFocus: false,
|
||||||
|
retry: false,
|
||||||
|
...(reactQueryConfig?.queryClientConfig.defaultOptions?.queries || {}),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const ProviderWrapper = ({ children }) => {
|
||||||
|
return (
|
||||||
|
<QueryClientProvider client={queryClient}>
|
||||||
|
{children}
|
||||||
|
{ reactQueryConfig?.devTools &&
|
||||||
|
<ReactQueryDevtools
|
||||||
|
{...(reactQueryConfig.devTools || {})}
|
||||||
|
/> }
|
||||||
|
</QueryClientProvider>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
addProvider(ProviderWrapper);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default runtime;
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
import type { QueryClientConfig, QueryClient } from '@tanstack/react-query';
|
||||||
|
import type { DevtoolsButtonPosition, DevtoolsPosition, DevToolsErrorType } from '@tanstack/query-devtools';
|
||||||
|
|
||||||
|
interface DevtoolsOptions {
|
||||||
|
initialIsOpen?: boolean;
|
||||||
|
buttonPosition?: DevtoolsButtonPosition;
|
||||||
|
position?: DevtoolsPosition;
|
||||||
|
client?: QueryClient;
|
||||||
|
errorTypes?: Array<DevToolsErrorType>;
|
||||||
|
styleNonce?: string;
|
||||||
|
shadowDOMTarget?: ShadowRoot;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ReactQueryConfig {
|
||||||
|
devTools?: DevtoolsOptions;
|
||||||
|
queryClientConfig?: QueryClientConfig;
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"extends": "../../tsconfig.base.json",
|
||||||
|
"compilerOptions": {
|
||||||
|
"baseUrl": "./",
|
||||||
|
"rootDir": "src",
|
||||||
|
"outDir": "esm",
|
||||||
|
"jsx": "react"
|
||||||
|
},
|
||||||
|
"include": ["src"]
|
||||||
|
}
|
||||||
|
|
@ -1,5 +1,11 @@
|
||||||
# @ice/runtime
|
# @ice/runtime
|
||||||
|
|
||||||
|
## 1.5.3
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- cc0792b0: feat: support custom props when render document
|
||||||
|
|
||||||
## 1.5.2
|
## 1.5.2
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@ice/runtime",
|
"name": "@ice/runtime",
|
||||||
"version": "1.5.2",
|
"version": "1.5.3",
|
||||||
"description": "Runtime module for ice.js",
|
"description": "Runtime module for ice.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"types": "./esm/index.d.ts",
|
"types": "./esm/index.d.ts",
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,7 @@ export function renderDocument(options: RenderDocumentOptions): Response {
|
||||||
basename,
|
basename,
|
||||||
routesConfig = {},
|
routesConfig = {},
|
||||||
serverData,
|
serverData,
|
||||||
|
documentProps,
|
||||||
} = renderOptions;
|
} = renderOptions;
|
||||||
|
|
||||||
const appData = null;
|
const appData = null;
|
||||||
|
|
@ -84,7 +85,7 @@ export function renderDocument(options: RenderDocumentOptions): Response {
|
||||||
<AppContextProvider value={appContext}>
|
<AppContextProvider value={appContext}>
|
||||||
<DocumentContextProvider value={documentContext}>
|
<DocumentContextProvider value={documentContext}>
|
||||||
{
|
{
|
||||||
Document && <Document pagePath={routePath} />
|
Document && <Document pagePath={routePath} {...documentProps} />
|
||||||
}
|
}
|
||||||
</DocumentContextProvider>
|
</DocumentContextProvider>
|
||||||
</AppContextProvider>,
|
</AppContextProvider>,
|
||||||
|
|
|
||||||
|
|
@ -283,7 +283,7 @@ async function renderServerEntry(
|
||||||
renderOptions,
|
renderOptions,
|
||||||
}: RenderServerEntry,
|
}: RenderServerEntry,
|
||||||
): Promise<Response> {
|
): Promise<Response> {
|
||||||
const { Document } = renderOptions;
|
const { Document, documentProps } = renderOptions;
|
||||||
const appContext = runtime.getAppContext();
|
const appContext = runtime.getAppContext();
|
||||||
const { routes, routePath, loaderData, basename } = appContext;
|
const { routes, routePath, loaderData, basename } = appContext;
|
||||||
const AppRuntimeProvider = runtime.composeAppProvider() || React.Fragment;
|
const AppRuntimeProvider = runtime.composeAppProvider() || React.Fragment;
|
||||||
|
|
@ -307,7 +307,7 @@ async function renderServerEntry(
|
||||||
<AppRuntimeProvider>
|
<AppRuntimeProvider>
|
||||||
<DocumentContextProvider value={documentContext}>
|
<DocumentContextProvider value={documentContext}>
|
||||||
{
|
{
|
||||||
Document && <Document pagePath={routePath} />
|
Document && <Document pagePath={routePath} {...documentProps} />
|
||||||
}
|
}
|
||||||
</DocumentContextProvider>
|
</DocumentContextProvider>
|
||||||
</AppRuntimeProvider>
|
</AppRuntimeProvider>
|
||||||
|
|
|
||||||
|
|
@ -338,6 +338,7 @@ export interface RenderOptions {
|
||||||
runtimeOptions?: Record<string, any>;
|
runtimeOptions?: Record<string, any>;
|
||||||
serverData?: any;
|
serverData?: any;
|
||||||
streamOptions?: RenderToPipeableStreamOptions;
|
streamOptions?: RenderToPipeableStreamOptions;
|
||||||
|
documentProps?: Record<string, unknown>;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
|
|
|
||||||
|
|
@ -2157,10 +2157,10 @@ importers:
|
||||||
version: 1.2.4
|
version: 1.2.4
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@ice/app':
|
'@ice/app':
|
||||||
specifier: ^3.6.2
|
specifier: ^3.6.3
|
||||||
version: link:../ice
|
version: link:../ice
|
||||||
'@ice/runtime':
|
'@ice/runtime':
|
||||||
specifier: ^1.5.2
|
specifier: ^1.5.3
|
||||||
version: link:../runtime
|
version: link:../runtime
|
||||||
webpack:
|
webpack:
|
||||||
specifier: ^5.88.0
|
specifier: ^5.88.0
|
||||||
|
|
@ -2252,6 +2252,31 @@ importers:
|
||||||
specifier: ^5.88.0
|
specifier: ^5.88.0
|
||||||
version: 5.88.2
|
version: 5.88.2
|
||||||
|
|
||||||
|
packages/plugin-react-query:
|
||||||
|
dependencies:
|
||||||
|
'@tanstack/react-query':
|
||||||
|
specifier: ^5.50.1
|
||||||
|
version: 5.50.1(react@18.2.0)
|
||||||
|
'@tanstack/react-query-devtools':
|
||||||
|
specifier: ^5.50.1
|
||||||
|
version: 5.50.1(@tanstack/react-query@5.50.1)(react@18.2.0)
|
||||||
|
devDependencies:
|
||||||
|
'@ice/app':
|
||||||
|
specifier: ^3.4.9
|
||||||
|
version: link:../ice
|
||||||
|
'@ice/runtime':
|
||||||
|
specifier: ^1.4.8
|
||||||
|
version: link:../runtime
|
||||||
|
'@tanstack/query-devtools':
|
||||||
|
specifier: ^5.50.1
|
||||||
|
version: 5.50.1
|
||||||
|
'@types/react':
|
||||||
|
specifier: ^18.0.0
|
||||||
|
version: 18.0.34
|
||||||
|
'@types/react-dom':
|
||||||
|
specifier: ^18.0.0
|
||||||
|
version: 18.0.11
|
||||||
|
|
||||||
packages/plugin-request:
|
packages/plugin-request:
|
||||||
dependencies:
|
dependencies:
|
||||||
ahooks:
|
ahooks:
|
||||||
|
|
@ -8568,6 +8593,33 @@ packages:
|
||||||
dependencies:
|
dependencies:
|
||||||
defer-to-connect: 1.1.3
|
defer-to-connect: 1.1.3
|
||||||
|
|
||||||
|
/@tanstack/query-core@5.50.1:
|
||||||
|
resolution: {integrity: sha512-lpfhKPrJlyV2DSVcQb/HuozH3Av3kws4ge22agx+lNGpFkS4vLZ7St0l3GLwlAD+bqB+qXGex3JdRKUNtMviEQ==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@tanstack/query-devtools@5.50.1:
|
||||||
|
resolution: {integrity: sha512-MQ5JK3yRwBP1SRuwoJVPGZP4cMLXCQ0t+6blDbcAVGEoqrEuvbgTdwlN729AKBR0hidOWPFR9n5YpI2Y8bBZOQ==}
|
||||||
|
|
||||||
|
/@tanstack/react-query-devtools@5.50.1(@tanstack/react-query@5.50.1)(react@18.2.0):
|
||||||
|
resolution: {integrity: sha512-zgPmEFv9GhLAx6eaf9r0ACbcxit1ZSuv/uPpOXBTTSPLijlWcfpQTOdZx0jYQ14t2cUfWjrAW41cUmcCvT4X/g==}
|
||||||
|
peerDependencies:
|
||||||
|
'@tanstack/react-query': ^5.50.1
|
||||||
|
react: ^18 || ^19
|
||||||
|
dependencies:
|
||||||
|
'@tanstack/query-devtools': 5.50.1
|
||||||
|
'@tanstack/react-query': 5.50.1(react@18.2.0)
|
||||||
|
react: 18.2.0
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@tanstack/react-query@5.50.1(react@18.2.0):
|
||||||
|
resolution: {integrity: sha512-s0DW3rVBDPReDDovUjVqItVa3R2nPfUANK9nqGvarO2DwTiY9U4EBTsqizMxItRCoGgK5apeM7D3mxlHrSKpdQ==}
|
||||||
|
peerDependencies:
|
||||||
|
react: ^18.0.0
|
||||||
|
dependencies:
|
||||||
|
'@tanstack/query-core': 5.50.1
|
||||||
|
react: 18.2.0
|
||||||
|
dev: false
|
||||||
|
|
||||||
/@testing-library/dom@8.20.0:
|
/@testing-library/dom@8.20.0:
|
||||||
resolution: {integrity: sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA==}
|
resolution: {integrity: sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA==}
|
||||||
engines: {node: '>=12'}
|
engines: {node: '>=12'}
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ describe(`build ${example}`, () => {
|
||||||
sizeFallback = fs.statSync(fallbackPath).size;
|
sizeFallback = fs.statSync(fallbackPath).size;
|
||||||
|
|
||||||
expect(sizeFallback).toBeLessThan(sizeServer);
|
expect(sizeFallback).toBeLessThan(sizeServer);
|
||||||
// The Stat size of fallback entry will reduce more than 50kb.
|
// The Stat size of fallback entry will reduce more than 50kb, minify size is 20kb.
|
||||||
expect(sizeServer - sizeFallback).toBeGreaterThan(50 * 1024);
|
expect(sizeServer - sizeFallback).toBeGreaterThan(20 * 1024);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue