From e825442f8ff4e2361f9b4082e3aebd94ec0a71d9 Mon Sep 17 00:00:00 2001 From: GitHub Actions <130188087+AfaCodea@users.noreply.github.com> Date: Tue, 17 Jun 2025 12:08:31 +0700 Subject: [PATCH] update update delete --- .github/FUNDING.yml | 4 --- .github/ISSUE_TEMPLATE/bug_report.md | 33 --------------------- .github/ISSUE_TEMPLATE/feature_request.md | 7 ----- .github/ISSUE_TEMPLATE/question.md | 35 ----------------------- build/index.js | 35 ----------------------- 5 files changed, 114 deletions(-) delete mode 100644 .github/FUNDING.yml delete mode 100755 .github/ISSUE_TEMPLATE/bug_report.md delete mode 100755 .github/ISSUE_TEMPLATE/feature_request.md delete mode 100755 .github/ISSUE_TEMPLATE/question.md delete mode 100644 build/index.js diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index d5408027..00000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,4 +0,0 @@ -# These are supported funding model platforms - -patreon: panjiachen -custom: https://panjiachen.github.io/vue-element-admin-site/donate diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100755 index 1a114bc0..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -name: Bug report(报告问题) -about: Create a report to help us improve ---- - - - -## Bug report(问题描述) - -#### Steps to reproduce(问题复现步骤) - - -#### Screenshot or Gif(截图或动态图) - - -#### Link to minimal reproduction(最小可在线还原demo) - - - -#### Other relevant information(格外信息) -- Your OS: -- Node.js version: -- vue-element-admin version: diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100755 index c33d10d4..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -name: Feature Request(新功能建议) -about: Suggest an idea for this project ---- - -## Feature request(新功能建议) - diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md deleted file mode 100755 index 76083546..00000000 --- a/.github/ISSUE_TEMPLATE/question.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -name: Question(提问) -about: Asking questions about use ---- - -## Question(提问) - - - -#### Steps to reproduce(问题复现步骤) - - -#### Screenshot or Gif(截图或动态图) - - -#### Link to minimal reproduction(最小可在线还原demo) - - - -#### Other relevant information(格外信息) -- Your OS: -- Node.js version: -- vue-element-admin version: diff --git a/build/index.js b/build/index.js deleted file mode 100644 index 0c57de2a..00000000 --- a/build/index.js +++ /dev/null @@ -1,35 +0,0 @@ -const { run } = require('runjs') -const chalk = require('chalk') -const config = require('../vue.config.js') -const rawArgv = process.argv.slice(2) -const args = rawArgv.join(' ') - -if (process.env.npm_config_preview || rawArgv.includes('--preview')) { - const report = rawArgv.includes('--report') - - run(`vue-cli-service build ${args}`) - - const port = 9526 - const publicPath = config.publicPath - - var connect = require('connect') - var serveStatic = require('serve-static') - const app = connect() - - app.use( - publicPath, - serveStatic('./dist', { - index: ['index.html', '/'] - }) - ) - - app.listen(port, function () { - console.log(chalk.green(`> Preview at http://localhost:${port}${publicPath}`)) - if (report) { - console.log(chalk.green(`> Report at http://localhost:${port}${publicPath}report.html`)) - } - - }) -} else { - run(`vue-cli-service build ${args}`) -}