feat: 当build-in版本变化时,缓存失效

This commit is contained in:
wanchun 2022-01-05 11:12:09 +08:00
parent c8bc785a49
commit 1bfb4b1c1a
5 changed files with 63 additions and 8 deletions

View File

@ -82,6 +82,7 @@ export default async function getConfig({
// --------------- cache -----------
webpackConfig.cache({
type: 'filesystem',
version: require('../../../../package.json').version,
cacheDirectory: join(cwd, '.cache/webpack')
});

View File

@ -15,7 +15,7 @@ export default {
access: {
roles: {
admin: ['*'],
menuTest: ['/','/menuTest']
menuTest: ['/', '/menuTest']
}
},
request: {
@ -53,17 +53,20 @@ export default {
icon: 'UserOutlined',
path: 'https://www.baidu.com'
},
{
name: 'mock'
},
{
title: '菜单权限测试',
children: [
{
title: '子菜单',
path: '/menuTest',
path: '/menuTest'
},
{
title: '子菜单a',
path: '/menuTest/a'
},
}
]
},
{

View File

@ -3,5 +3,6 @@ export default {
home: 'home',
store: 'store',
editor: 'editor',
externalLink: 'externalLink'
externalLink: 'externalLink',
mock: 'mock'
};

View File

@ -3,5 +3,6 @@ export default {
home: '首页',
store: '状态管理',
editor: '编辑器',
externalLink: '外部链接'
externalLink: '外部链接',
mock: '代理'
};

View File

@ -0,0 +1,49 @@
<template>
<div>
mock and proxy
</div>
</template>
<config>
{
"name": "mock",
"title": "$mock"
}
</config>
<script setup>
import { request } from '@fesjs/fes';
console.log('测试 mock!!');
request('/v2/file')
.then((data) => {
console.log(data);
})
.catch((err) => {
console.log(err);
});
request('/v2/movie/in_theaters_mock', { a: 1 }, 'get')
.then((data) => {
console.log(data);
})
.catch((err) => {
console.log(err);
});
console.log('测试 proxy!!');
request(
'/v2/movie/in_theaters_proxy',
{ a: 1 },
{
method: 'get',
headers: { Accept: '*/*' }
}
)
.then((resp) => {
console.log(resp);
})
.catch((err) => {
console.log(err);
});
</script>