feat: the production environment can be dynamically configured
正在显示
build/config/vite/cdn.ts
0 → 100644
build/config/vite/env.ts
deleted
100644 → 0
build/constant.ts
0 → 100644
build/getShortName.ts
0 → 100644
build/jsc.js
0 → 100644
build/script/build.ts
0 → 100644
build/script/buildConf.ts
0 → 100644
build/script/cli.ts
0 → 100644
build/script/hm.ts
0 → 100644
build/script/updateHtml.ts
0 → 100644
getEnvConfig.ts
deleted
100644 → 0
| ... | ... | @@ -3,21 +3,22 @@ |
| "version": "2.0.0-beta.6", | ||
| "scripts": { | ||
| "bootstrap": "yarn install", | ||
| "serve": "ts-node --project ./build/tsconfig.json ./build/script/preserve && cross-env NODE_ENV=development vite", | ||
| "build": "cross-env NODE_ENV=production vite build ", | ||
| "report": "cross-env REPORT=true yarn build ", | ||
| "build:no-cache": "yarn clean:cache && yarn build", | ||
| "preview": "ts-node --project ./build/tsconfig.json ./build/script/preview", | ||
| "log": "ts-node --project ./build/tsconfig.json ./build/script/changelog", | ||
| "gen:gz": "ts-node --project build/tsconfig.build.json ./build/gzip/index.ts ", | ||
| "clean:cache": "npx rimraf node_modules/.cache/ && npx rimraf node_modules/.vite_opt_cache", | ||
| "serve": "node ./build/jsc.js preserve && cross-env NODE_ENV=development vite", | ||
| "build": "node ./build/jsc.js build", | ||
| "build:site": "cross-env SITE=true npm run build ", | ||
| "build:no-cache": "yarn clean:cache && npm run build", | ||
| "report": "cross-env REPORT=true npm run build ", | ||
| "preview": "node ./build/jsc.js preview", | ||
| "log": "node ./build/jsc.js log", | ||
| "gen:gz": "node ./build/jsc.js gzip", | ||
| "clean:cache": "rimraf node_modules/.cache/ && rimraf node_modules/.vite_opt_cache", | ||
| "clean:lib": "npx rimraf node_modules", | ||
| "ls-lint": "npx ls-lint", | ||
| "lint:eslint": "eslint --fix --ext \"src/**/*.{vue,less,css,scss}\"", | ||
| "lint:prettier": "prettier --write --loglevel warn \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"", | ||
| "lint:stylelint": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/", | ||
| "reinstall": "npx rimraf node_modules && npx rimraf yarn.lock && npx rimraf package.lock.json && yarn run bootstrap", | ||
| "postinstall": "ts-node --project ./build/tsconfig.json ./build/script/postinstall" | ||
| "lint:stylelint": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/", | ||
| "reinstall": "rimraf node_modules && rimraf yarn.lock && rimraf package.lock.json && npm run bootstrap", | ||
| "postinstall": "node ./build/jsc.js postinstall" | ||
| }, | ||
| "dependencies": { | ||
| "@iconify/iconify": "^2.0.0-rc.1", | ||
| ... | ... | @@ -53,6 +54,7 @@ |
| "@types/qrcode": "^1.3.5", | ||
| "@types/rollup-plugin-visualizer": "^2.6.0", | ||
| "@types/shelljs": "^0.8.8", | ||
| "@types/yargs": "^15.0.8", | ||
| "@types/zxcvbn": "^4.4.0", | ||
| "@typescript-eslint/eslint-plugin": "^4.4.0", | ||
| "@typescript-eslint/parser": "^4.4.0", | ||
| ... | ... | @@ -90,7 +92,8 @@ |
| "vite": "^1.0.0-rc.4", | ||
| "vite-plugin-mock": "^1.0.2", | ||
| "vite-plugin-purge-icons": "^0.4.1", | ||
| "vue-eslint-parser": "^7.1.0" | ||
| "vue-eslint-parser": "^7.1.0", | ||
| "yargs": "^16.0.3" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| ... | ... |
请
注册
或者
登录
后发表评论