P0-1: 删除 docker-compose-override.yml + deploy-server 两份 workers=2→1(预防性修复,服务器根 compose 已是 workers=1)
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright 2015-present Chen Fengyuan
|
||||
|
||||
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,44 @@
|
||||
# @cropper/element-shade
|
||||
|
||||
> A custom shade element for the Cropper.
|
||||
|
||||
## Main npm package files
|
||||
|
||||
```text
|
||||
dist/
|
||||
├── element-shade.js (UMD, bundled)
|
||||
├── element-shade.min.js (UMD, bundled, compressed)
|
||||
├── element-shade.raw.js (UMD, unbundled, default)
|
||||
├── element-shade.esm.js (ECMAScript Module, bundled)
|
||||
├── element-shade.esm.min.js (ECMAScript Module, bundled, compressed)
|
||||
├── element-shade.esm.raw.js (ECMAScript Module, unbundled)
|
||||
└── element-shade-shade.d.ts (TypeScript Declaration File)
|
||||
```
|
||||
|
||||
## Getting started
|
||||
|
||||
### Installation
|
||||
|
||||
```sh
|
||||
npm install @cropper/element-shade
|
||||
```
|
||||
|
||||
### Usage
|
||||
|
||||
```js
|
||||
import CropperShade from '@cropper/element-shade';
|
||||
|
||||
CropperShade.$define();
|
||||
```
|
||||
|
||||
```html
|
||||
<cropper-shade></cropper-shade>
|
||||
```
|
||||
|
||||
## Versioning
|
||||
|
||||
Maintained under the [Semantic Versioning guidelines](https://semver.org).
|
||||
|
||||
## License
|
||||
|
||||
[MIT](https://opensource.org/licenses/MIT)
|
||||
@@ -0,0 +1,72 @@
|
||||
{
|
||||
"name": "@cropper/element-shade",
|
||||
"version": "2.1.1",
|
||||
"description": "A custom shade element for the Cropper.",
|
||||
"main": "dist/element-shade.raw.js",
|
||||
"module": "dist/element-shade.esm.raw.js",
|
||||
"types": "dist/element-shade.d.ts",
|
||||
"unpkg": "dist/element-shade.js",
|
||||
"jsdelivr": "dist/element-shade.js",
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"exports": {
|
||||
".": {
|
||||
"import": {
|
||||
"types": "./dist/element-shade.d.ts",
|
||||
"node": {
|
||||
"production": "./dist/element-shade.esm.min.js",
|
||||
"development": "./dist/element-shade.esm.js",
|
||||
"default": "./dist/element-shade.esm.raw.js"
|
||||
},
|
||||
"default": "./dist/element-shade.esm.raw.js"
|
||||
},
|
||||
"require": {
|
||||
"types": "./dist/element-shade.d.ts",
|
||||
"node": {
|
||||
"production": "./dist/element-shade.min.js",
|
||||
"development": "./dist/element-shade.js",
|
||||
"default": "./dist/element-shade.raw.js"
|
||||
},
|
||||
"default": "./dist/element-shade.raw.js"
|
||||
}
|
||||
},
|
||||
"./dist/*": "./dist/*",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"scripts": {
|
||||
"api-extractor": "api-extractor run --local --verbose",
|
||||
"build": "npm run tsc && npm run api-extractor && npm run rollup",
|
||||
"clean": "del-cli dist .temp",
|
||||
"release": "npm run clean && npm run build",
|
||||
"rollup": "rollup -c ../../rollup.config.js",
|
||||
"tsc": "tsc --outDir ./.temp --declaration --emitDeclarationOnly"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/fengyuanchen/cropperjs.git",
|
||||
"directory": "packages/element-shade"
|
||||
},
|
||||
"keywords": [
|
||||
"shade",
|
||||
"cropper",
|
||||
"cropper.js",
|
||||
"cropper-element",
|
||||
"custom-element",
|
||||
"web-component"
|
||||
],
|
||||
"author": "Chen Fengyuan (https://chenfengyuan.com/)",
|
||||
"license": "MIT",
|
||||
"bugs": "https://github.com/fengyuanchen/cropperjs/issues",
|
||||
"homepage": "https://github.com/fengyuanchen/cropperjs/tree/main/packages/element-shade/#readme",
|
||||
"dependencies": {
|
||||
"@cropper/element": "^2.1.1",
|
||||
"@cropper/element-canvas": "^2.1.1",
|
||||
"@cropper/element-selection": "^2.1.1",
|
||||
"@cropper/utils": "^2.1.1"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"gitHead": "0bbb4de016306245055fbf6cf8e3cfd885890968"
|
||||
}
|
||||
Reference in New Issue
Block a user