fix: update message

This commit is contained in:
maggieyyy
2024-10-28 13:39:47 +08:00
parent fff39caa71
commit f82f4b0d7b
31 changed files with 26 additions and 166 deletions
+1
View File
@@ -27,4 +27,5 @@ packages/core/public/tinymce/
*.sln *.sln
*.sw? *.sw?
/pnpm-lock.yaml /pnpm-lock.yaml
+1 -8
View File
@@ -1,10 +1,3 @@
/*
* @Date: 2024-05-10 14:19:56
* @LastEditors: maggieyyy
* @LastEditTime: 2024-05-10 15:55:29
* @FilePath: \frontend\jest.config.js
*/
module.exports = { module.exports = {
roots: ['<rootDir>/packages'], roots: ['<rootDir>/packages'],
testMatch: ['**/__tests__/**/*.+(ts|tsx|js)', '**/?(*.)+(spec|test).+(ts|tsx|js)'], testMatch: ['**/__tests__/**/*.+(ts|tsx|js)', '**/?(*.)+(spec|test).+(ts|tsx|js)'],
@@ -15,4 +8,4 @@ module.exports = {
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'], moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
testPathIgnorePatterns: ['/node_modules/', '/dist/'], testPathIgnorePatterns: ['/node_modules/', '/dist/'],
setupFilesAfterEnv: ['<rootDir>/jest.setup.js'], setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
}; };
+1 -7
View File
@@ -1,7 +1 @@
/* // import '@testing-library/jest-dom/extend-expect';
* @Date: 2024-05-10 14:22:41
* @LastEditors: maggieyyy
* @LastEditTime: 2024-05-10 15:49:31
* @FilePath: \frontend\jest.setup.js
*/
// import '@testing-library/jest-dom/extend-expect';
+1
View File
@@ -3,4 +3,5 @@
"packages/*" "packages/*"
], ],
"version": "independent" "version": "independent"
} }
@@ -6,7 +6,6 @@ yarn-debug.log*
yarn-error.log* yarn-error.log*
pnpm-debug.log* pnpm-debug.log*
lerna-debug.log* lerna-debug.log*
node_modules node_modules
dist dist
dist-ssr dist-ssr
+1 -1
View File
@@ -4,7 +4,7 @@
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/frontend/favicon.ico" /> <link rel="icon" type="image/svg+xml" href="/frontend/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>APIPark - 企业API数据开放平台</title> <title>APIPark</title>
</head> </head>
<body> <body>
<div id="root"></div> <div id="root"></div>
+1 -1
View File
@@ -4,7 +4,7 @@
"version": "0.0.0", "version": "0.0.0",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": " vite --port 5000 --strictPort", "dev": " vite --port 5000 --strictPort",
"build": "vite build ", "build": "vite build ",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview --port 5000 --strictPort", "preview": "vite preview --port 5000 --strictPort",
@@ -1,9 +1,3 @@
/*
* @Date: 2023-11-27 17:31:54
* @LastEditors: maggieyyy
* @LastEditTime: 2024-06-05 10:42:18
* @FilePath: \frontend\packages\core\postcss.config.js
*/
export default { export default {
plugins: { plugins: {
'postcss-import': {}, 'postcss-import': {},
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,9 +1,4 @@
/*
* @Date: 2024-06-05 09:35:25
* @LastEditors: maggieyyy
* @LastEditTime: 2024-06-05 10:50:12
* @FilePath: \frontend\packages\core\start-vite.js
*/
// start-vite.js// start-vite.js // start-vite.js// start-vite.js
import { exec } from 'child_process'; import { exec } from 'child_process';
+1 -6
View File
@@ -1,9 +1,4 @@
/*
* @Date: 2023-11-27 17:31:54
* @LastEditors: maggieyyy
* @LastEditTime: 2023-11-29 15:49:05
* @FilePath: \applatform\frontend\packages\core\postcss.config.js
*/
export default { export default {
plugins: { plugins: {
'postcss-import': {}, 'postcss-import': {},
@@ -1,26 +0,0 @@
/*
* @Date: 2024-01-31 15:00:11
* @LastEditors: maggieyyy
* @LastEditTime: 2024-05-10 17:03:03
* @FilePath: \frontend\packages\core\src\hooks\crypto.ts
*/
// import CryptoJS from 'crypto-js';
// export const useCrypto = () => {
// const key = '1e42=7838a1vfc6n';
// const encryptByEnAES = (secretKey: string, data: string, initializationVector?: string): string => {
// const iv = CryptoJS.enc.Latin1.parse(initializationVector || key);
// const keyForEncryption = CryptoJS.enc.Latin1.parse(CryptoJS.MD5(secretKey).toString());
// const cipher = CryptoJS.AES.encrypt(data, keyForEncryption, {
// iv,
// mode: CryptoJS.mode.CBC,
// padding: CryptoJS.pad.Pkcs7,
// });
// return CryptoJS.enc.Base64.stringify(cipher.ciphertext);
// };
// return { encryptByEnAES };
// };
+1 -6
View File
@@ -1,9 +1,4 @@
/*
* @Date: 2024-06-04 14:58:33
* @LastEditors: maggieyyy
* @LastEditTime: 2024-06-04 15:39:24
* @FilePath: \frontend\packages\common\src\index.css
*/
@tailwind base; @tailwind base;
@tailwind components; @tailwind components;
@tailwind utilities; @tailwind utilities;
+1 -6
View File
@@ -1,9 +1,4 @@
/*
* @Date: 2024-06-04 15:05:05
* @LastEditors: maggieyyy
* @LastEditTime: 2024-08-01 17:59:56
* @FilePath: \frontend\packages\common\tailwind.config.js
*/
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
module.exports = { module.exports = {
important:true, important:true,
+1 -6
View File
@@ -1,9 +1,4 @@
/*
* @Date: 2023-11-27 17:31:54
* @LastEditors: maggieyyy
* @LastEditTime: 2024-06-05 10:42:18
* @FilePath: \frontend\packages\core\postcss.config.js
*/
export default { export default {
plugins: { plugins: {
'postcss-import': {}, 'postcss-import': {},
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1 -6
View File
@@ -1,9 +1,4 @@
/*
* @Date: 2024-06-05 09:35:25
* @LastEditors: maggieyyy
* @LastEditTime: 2024-06-05 10:50:12
* @FilePath: \frontend\packages\core\start-vite.js
*/
// start-vite.js// start-vite.js // start-vite.js// start-vite.js
import { exec } from 'child_process'; import { exec } from 'child_process';
+1 -6
View File
@@ -1,9 +1,4 @@
/*
* @Date: 2023-11-27 17:31:44
* @LastEditors: maggieyyy
* @LastEditTime: 2024-06-05 10:36:46
* @FilePath: \frontend\packages\core\tailwind.config.js
*/
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
export default { export default {
@@ -1,9 +1,4 @@
/*
* @Date: 2023-11-27 17:31:54
* @LastEditors: maggieyyy
* @LastEditTime: 2023-11-29 15:49:05
* @FilePath: \applatform\frontend\packages\core\postcss.config.js
*/
export default { export default {
plugins: { plugins: {
'postcss-import': {}, 'postcss-import': {},
@@ -10,7 +10,6 @@ import { reject } from "lodash-es";
import { EntityItem } from "@common/const/type"; import { EntityItem } from "@common/const/type";
import { LoadingOutlined } from "@ant-design/icons"; import { LoadingOutlined } from "@ant-design/icons";
import DashboardInstruction from "./DashboardInstruction"; import DashboardInstruction from "./DashboardInstruction";
import cluster from "cluster";
export default function Dashboard(){ export default function Dashboard(){
const { setBreadcrumb } = useBreadcrumb() const { setBreadcrumb } = useBreadcrumb()
@@ -1,9 +1,4 @@
/*
* @Date: 2023-11-27 17:31:44
* @LastEditors: maggieyyy
* @LastEditTime: 2024-06-05 10:36:11
* @FilePath: \frontend\packages\market\tailwind.config.js
*/
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
export default { export default {
+1 -6
View File
@@ -1,9 +1,4 @@
/*
* @Date: 2023-11-27 17:31:54
* @LastEditors: maggieyyy
* @LastEditTime: 2024-06-05 10:42:18
* @FilePath: \frontend\packages\core\postcss.config.js
*/
export default { export default {
plugins: { plugins: {
'postcss-import': {}, 'postcss-import': {},
+1 -6
View File
@@ -1,9 +1,4 @@
/*
* @Date: 2023-11-27 17:31:54
* @LastEditors: maggieyyy
* @LastEditTime: 2023-11-29 15:49:05
* @FilePath: \applatform\frontend\packages\core\postcss.config.js
*/
export default { export default {
plugins: { plugins: {
'postcss-import': {}, 'postcss-import': {},
+1 -6
View File
@@ -1,9 +1,4 @@
/*
* @Date: 2023-11-27 17:31:44
* @LastEditors: maggieyyy
* @LastEditTime: 2024-06-05 10:36:11
* @FilePath: \frontend\packages\market\tailwind.config.js
*/
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
export default { export default {
@@ -1,9 +1,4 @@
/*
* @Date: 2023-11-27 17:31:54
* @LastEditors: maggieyyy
* @LastEditTime: 2023-11-29 15:49:05
* @FilePath: \applatform\frontend\packages\core\postcss.config.js
*/
export default { export default {
plugins: { plugins: {
'postcss-import': {}, 'postcss-import': {},
@@ -1,9 +1,4 @@
/*
* @Date: 2023-11-27 17:31:44
* @LastEditors: maggieyyy
* @LastEditTime: 2024-06-05 10:36:11
* @FilePath: \frontend\packages\market\tailwind.config.js
*/
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
export default { export default {
+2 -1
View File
@@ -1,2 +1,3 @@
packages: packages:
- "packages/*" - "packages/*"
+1 -6
View File
@@ -1,9 +1,4 @@
/*
* @Date: 2023-11-27 17:31:44
* @LastEditors: maggieyyy
* @LastEditTime: 2024-06-04 15:03:36
* @FilePath: \frontend\tailwind.config.js
*/
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
module.exports = { module.exports = {
+1
View File
@@ -11,4 +11,5 @@
}, },
"include": ["**/*.test.ts", "**/*.test.tsx", "jest.setup.js"], "include": ["**/*.test.ts", "**/*.test.tsx", "jest.setup.js"],
"exclude": ["node_modules"] "exclude": ["node_modules"]
} }