chore: 修复安全告警问题 (#256)

This commit is contained in:
qlin 2024-11-14 16:15:03 +08:00 committed by GitHub
parent 8530183c21
commit 0280fb9826
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
11 changed files with 1948 additions and 706 deletions

View File

@ -1,4 +0,0 @@
**/*.ts
lib
node_modules

View File

@ -2,7 +2,6 @@
import antfu from '@antfu/eslint-config'; import antfu from '@antfu/eslint-config';
export default await antfu({ export default await antfu({
files: ['**/*.js', '**/*.jsx', '**/*.vue', '**/*.ts'],
// TODO: 使用 ignore 代替 cli 命令中的配置 // TODO: 使用 ignore 代替 cli 命令中的配置
stylistic: { stylistic: {
indent: 4, indent: 4,

View File

@ -40,18 +40,18 @@
"semver": "^7.3.6" "semver": "^7.3.6"
}, },
"devDependencies": { "devDependencies": {
"@antfu/eslint-config": "^2.6.2", "@antfu/eslint-config": "^3.8.0",
"@commitlint/cli": "^18.4.4", "@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4", "@commitlint/config-conventional": "^18.4.4",
"chokidar": "^3.5.3", "chokidar": "^3.5.3",
"commitizen": "^4.3.0", "commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0", "cz-conventional-changelog": "^3.3.0",
"deepmerge": "^4.2.2", "deepmerge": "^4.2.2",
"eslint": "^8.56.0", "eslint": "^9.13.0",
"fs-extra": "^11.1.1", "fs-extra": "^11.1.1",
"lint-staged": "^15.2.0", "lint-staged": "^15.2.0",
"simple-git-hooks": "^2.9.0", "simple-git-hooks": "^2.9.0",
"typescript": "^5.0.4", "typescript": "^5.6.3",
"vitepress": "1.0.0-alpha.73", "vitepress": "1.0.0-alpha.73",
"vue": "^3.3.4", "vue": "^3.3.4",
"yargs-parser": "^21.1.1" "yargs-parser": "^21.1.1"

View File

@ -52,7 +52,7 @@
"fs-extra": "^11.1.1", "fs-extra": "^11.1.1",
"get-folder-size": "^2.0.1", "get-folder-size": "^2.0.1",
"html-webpack-plugin": "^5.5.0", "html-webpack-plugin": "^5.5.0",
"html-webpack-tags-plugin": "^3.0.0", "html-webpack-tags-plugin": "^3.0.2",
"less": "^4.1.3", "less": "^4.1.3",
"less-loader": "^11.1.0", "less-loader": "^11.1.0",
"mini-css-extract-plugin": "^2.8.1", "mini-css-extract-plugin": "^2.8.1",

View File

@ -2,24 +2,24 @@
"name": "@fesjs/compiler", "name": "@fesjs/compiler",
"version": "3.0.4", "version": "3.0.4",
"description": "@fesjs/compiler", "description": "@fesjs/compiler",
"main": "lib/index.js", "author": "qlin",
"files": [ "license": "MIT",
"lib" "homepage": "https://github.com/WeBankFinTech/fes.js#readme",
],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/WeBankFinTech/fes.js.git", "url": "git+https://github.com/WeBankFinTech/fes.js.git",
"directory": "packages/fes-compiler" "directory": "packages/fes-compiler"
}, },
"keywords": [
"fes"
],
"author": "qlin",
"license": "MIT",
"bugs": { "bugs": {
"url": "https://github.com/WeBankFinTech/fes.js/issues" "url": "https://github.com/WeBankFinTech/fes.js/issues"
}, },
"homepage": "https://github.com/WeBankFinTech/fes.js#readme", "keywords": [
"fes"
],
"main": "lib/index.js",
"files": [
"lib"
],
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },
@ -31,7 +31,6 @@
"commander": "^7.0.0", "commander": "^7.0.0",
"dotenv": "8.2.0", "dotenv": "8.2.0",
"joi": "17.3.0", "joi": "17.3.0",
"set-value": "3.0.2",
"tapable": "^2.2.0" "tapable": "^2.2.0"
} }
} }

View File

@ -1,17 +1,16 @@
import { lodash } from '@fesjs/utils'; import { lodash } from '@fesjs/utils';
import set from 'set-value';
export function updateUserConfigWithKey({ export function updateUserConfigWithKey({
key, key,
value, value,
userConfig userConfig,
}) { }) {
set(userConfig, key, value); lodash.set(userConfig, key, value);
} }
export function getUserConfigWithKey({ export function getUserConfigWithKey({
key, key,
userConfig userConfig,
}) { }) {
return lodash.get(userConfig, key); return lodash.get(userConfig, key);
} }

View File

@ -33,9 +33,9 @@
"@fesjs/runtime": "^3.0.1", "@fesjs/runtime": "^3.0.1",
"@fesjs/utils": "^3.0.3", "@fesjs/utils": "^3.0.3",
"@vue/compiler-sfc": "^3.3.4", "@vue/compiler-sfc": "^3.3.4",
"@wll8/better-mock": "0.3.3-alpha",
"envinfo": "^7.7.3", "envinfo": "^7.7.3",
"express": "^4.17.3", "express": "^4.17.3"
"mockjs": "^1.1.0"
}, },
"typings": "./types.d.ts" "typings": "./types.d.ts"
} }

View File

@ -122,7 +122,7 @@ export default (api) => {
api.logger.info('mock.js should export Function'); api.logger.info('mock.js should export Function');
return; return;
} }
const mockjs = require('mockjs'); const mockjs = require('@wll8/better-mock');
initFunction({ cgiMock, mockjs, utils }); initFunction({ cgiMock, mockjs, utils });
} catch (err) { } catch (err) {
api.logger.error('mock.js run fail!'); api.logger.error('mock.js run fail!');

View File

@ -1,31 +1,30 @@
{ {
"compilerOptions": { "compilerOptions": {
"outDir": "build/dist", "target": "esnext",
"module": "esnext", "jsx": "preserve",
"target": "esnext", "lib": ["esnext", "dom"],
"lib": ["esnext", "dom"], "experimentalDecorators": true,
"sourceMap": true, "baseUrl": ".",
"baseUrl": ".", "module": "esnext",
"jsx": "preserve", "moduleResolution": "node",
"allowSyntheticDefaultImports": true, "paths": {
"moduleResolution": "node", "@/*": ["./src/*"],
"forceConsistentCasingInFileNames": true, "@@/*": ["./src/.fes/*"]
"noImplicitReturns": true, },
"suppressImplicitAnyIndexErrors": true, "allowJs": true,
"noUnusedLocals": true, "strict": true,
"allowJs": true, "noImplicitReturns": true,
"skipLibCheck": true, "noUnusedLocals": true,
"experimentalDecorators": true, "outDir": "build/dist",
"strict": true, "sourceMap": true,
"paths": { "allowSyntheticDefaultImports": true,
"@/*": ["./src/*"], "forceConsistentCasingInFileNames": true,
"@@/*": ["./src/.fes/*"] "skipLibCheck": true
} },
}, "include": [
"include": [ "src/**/*",
"src/**/*", ".fes.js",
".fes.js", ".fes.*.js"
".fes.*.js" ],
], "exclude": ["node_modules", "build", "dist", "scripts", "src/.fes/*", "webpack", "jest"]
"exclude": ["node_modules", "build", "dist", "scripts", "src/.fes/*", "webpack", "jest"]
} }

2514
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -1,19 +1,19 @@
{ {
"compilerOptions": { "compilerOptions": {
"composite": true, "composite": true,
"declaration": true, "target": "ESNext",
"declarationMap": true, "lib": ["DOM", "ESNext"],
"lib": ["DOM", "ESNext"], "module": "CommonJS",
"module": "CommonJS", "moduleResolution": "node",
"moduleResolution": "node", "resolveJsonModule": true,
"newLine": "lf", "strict": true,
"noEmitOnError": true, "strictNullChecks": true,
"noImplicitAny": false, "noImplicitAny": false,
"resolveJsonModule": true, "declaration": true,
"skipLibCheck": true, "declarationMap": true,
"sourceMap": true, "newLine": "lf",
"strict": true, "noEmitOnError": true,
"strictNullChecks": true, "sourceMap": true,
"target": "ESNext" "skipLibCheck": true
} }
} }