P0-1: 删除 docker-compose-override.yml + deploy-server 两份 workers=2→1(预防性修复,服务器根 compose 已是 workers=1)
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2021-PRESENT Nuxt Contrib
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
@@ -0,0 +1,35 @@
|
||||
# Unplugin
|
||||
|
||||
[![npm version][npm-version-src]][npm-version-href]
|
||||
[![npm downloads][npm-downloads-src]][npm-downloads-href]
|
||||
[![License][license-src]][license-href]
|
||||
|
||||
Unified plugin system for build tools.
|
||||
|
||||
Currently supports:
|
||||
|
||||
- [Vite](https://vitejs.dev/)
|
||||
- [Rollup](https://rollupjs.org/)
|
||||
- [Webpack](https://webpack.js.org/)
|
||||
- [esbuild](https://esbuild.github.io/)
|
||||
- [Rspack](https://www.rspack.dev/)
|
||||
- [Rolldown](https://rolldown.rs/) (⚠️ experimental)
|
||||
- [Farm](https://www.farmfe.org/)
|
||||
- And every framework built on top of them.
|
||||
|
||||
## Documentations
|
||||
|
||||
Learn more on the [Documentation](https://unplugin.unjs.io/)
|
||||
|
||||
## License
|
||||
|
||||
[MIT](./LICENSE) License © 2021-PRESENT Nuxt Contrib
|
||||
|
||||
<!-- Badges -->
|
||||
|
||||
[npm-version-src]: https://img.shields.io/npm/v/unplugin?style=flat&colorA=18181B&colorB=F0DB4F
|
||||
[npm-version-href]: https://npmjs.com/package/unplugin
|
||||
[npm-downloads-src]: https://img.shields.io/npm/dm/unplugin?style=flat&colorA=18181B&colorB=F0DB4F
|
||||
[npm-downloads-href]: https://npmjs.com/package/unplugin
|
||||
[license-src]: https://img.shields.io/github/license/unjs/unplugin.svg?style=flat&colorA=18181B&colorB=F0DB4F
|
||||
[license-href]: https://github.com/unjs/unplugin/blob/main/LICENSE
|
||||
@@ -0,0 +1,92 @@
|
||||
{
|
||||
"name": "unplugin",
|
||||
"type": "commonjs",
|
||||
"version": "1.16.1",
|
||||
"packageManager": "pnpm@8.15.9",
|
||||
"description": "Unified plugin system for build tools",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/unjs/unplugin.git"
|
||||
},
|
||||
"sideEffects": false,
|
||||
"exports": {
|
||||
".": {
|
||||
"types": {
|
||||
"import": "./dist/index.d.mts",
|
||||
"require": "./dist/index.d.ts"
|
||||
},
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./dist/webpack/loaders/*": "./dist/webpack/loaders/*.js",
|
||||
"./dist/rspack/loaders/*": "./dist/rspack/loaders/*.js"
|
||||
},
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.mjs",
|
||||
"types": "dist/index.d.ts",
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=14.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsup",
|
||||
"dev": "tsup --watch src",
|
||||
"lint": "eslint --cache .",
|
||||
"lint:fix": "nr lint --fix",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"docs:dev": "pnpm -C docs run dev",
|
||||
"docs:build": "pnpm -C docs run build",
|
||||
"docs:gen-files": "pnpm -C docs run gen-files",
|
||||
"prepublishOnly": "nr build",
|
||||
"release": "bumpp --all -x 'npx conventional-changelog -p angular -i CHANGELOG.md -s' && npm publish",
|
||||
"test": "nr test:build && vitest run --pool=forks",
|
||||
"test:build": "jiti scripts/buildFixtures.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"acorn": "^8.14.0",
|
||||
"webpack-virtual-modules": "^0.6.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@ampproject/remapping": "^2.3.0",
|
||||
"@antfu/eslint-config": "^3.8.0",
|
||||
"@antfu/ni": "^0.23.0",
|
||||
"@farmfe/cli": "1.0.3",
|
||||
"@farmfe/core": "1.3.12",
|
||||
"@rspack/cli": "^1.0.14",
|
||||
"@rspack/core": "^1.0.14",
|
||||
"@types/fs-extra": "^11.0.4",
|
||||
"@types/node": "^22.8.1",
|
||||
"@types/webpack-sources": "^3.2.3",
|
||||
"bumpp": "^9.7.1",
|
||||
"conventional-changelog-cli": "^5.0.0",
|
||||
"esbuild": "^0.24.0",
|
||||
"esbuild-plugin-copy": "^2.1.1",
|
||||
"eslint": "^9.13.0",
|
||||
"fast-glob": "^3.3.2",
|
||||
"fs-extra": "^11.2.0",
|
||||
"jiti": "^2.3.3",
|
||||
"lint-staged": "^15.2.10",
|
||||
"magic-string": "^0.30.12",
|
||||
"picocolors": "^1.1.1",
|
||||
"rolldown": "^0.13.2",
|
||||
"rollup": "^4.24.2",
|
||||
"simple-git-hooks": "^2.11.1",
|
||||
"tsup": "^8.3.5",
|
||||
"typescript": "^5.6.3",
|
||||
"unplugin": "workspace:*",
|
||||
"unplugin-unused": "^0.2.3",
|
||||
"vite": "^5.4.10",
|
||||
"vitest": "^2.1.4",
|
||||
"webpack": "^5.95.0",
|
||||
"webpack-cli": "4.10.0"
|
||||
},
|
||||
"simple-git-hooks": {
|
||||
"pre-commit": "pnpm lint-staged"
|
||||
},
|
||||
"lint-staged": {
|
||||
"*": "eslint --fix"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user