⏪: 删除 yarn.yaml 与 yarn-lock.yaml 文件
This commit is contained in:
parent
20b35892b8
commit
72e3802659
@ -21,7 +21,7 @@ export interface LaySliderProps {
|
|||||||
disabled?: boolean;
|
disabled?: boolean;
|
||||||
range?: boolean;
|
range?: boolean;
|
||||||
rangeValue?: number[];
|
rangeValue?: number[];
|
||||||
showDots?: boolean
|
showDots?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
const emit = defineEmits(["update:modelValue"]);
|
const emit = defineEmits(["update:modelValue"]);
|
||||||
@ -33,7 +33,7 @@ const props = withDefaults(defineProps<LaySliderProps>(), {
|
|||||||
step: 0,
|
step: 0,
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 100,
|
max: 100,
|
||||||
showDots: false
|
showDots: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
let rangeValues: Ref<number[]> | any = toRef(props, "rangeValue");
|
let rangeValues: Ref<number[]> | any = toRef(props, "rangeValue");
|
||||||
|
111
yarn-error.log
111
yarn-error.log
@ -1,111 +0,0 @@
|
|||||||
Arguments:
|
|
||||||
/home/halo/.nvm/versions/node/v14.18.2/bin/node /home/halo/.nvm/versions/node/v14.18.2/bin/yarn
|
|
||||||
|
|
||||||
PATH:
|
|
||||||
/home/halo/.vscode-server/bin/899d46d82c4c95423fb7e10e68eba52050e30ba3/bin:/home/halo/.nvm/versions/node/v14.18.2/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/lib/wsl/lib:/mnt/c/WINDOWS/system32:/mnt/c/WINDOWS:/mnt/c/WINDOWS/System32/Wbem:/mnt/c/WINDOWS/System32/WindowsPowerShell/v1.0/:/mnt/c/WINDOWS/System32/OpenSSH/:/mnt/c/Program Files/PowerShell/7/:/mnt/c/Users/13522/AppData/Local/Microsoft/WindowsApps
|
|
||||||
|
|
||||||
Yarn version:
|
|
||||||
1.22.17
|
|
||||||
|
|
||||||
Node version:
|
|
||||||
14.18.2
|
|
||||||
|
|
||||||
Platform:
|
|
||||||
linux x64
|
|
||||||
|
|
||||||
Trace:
|
|
||||||
Error: https://registry.yarnpkg.com/@layui%2fhooks-vue: ETIMEDOUT
|
|
||||||
at Timeout._onTimeout (/home/halo/.nvm/versions/node/v14.18.2/lib/node_modules/yarn/lib/cli.js:141543:19)
|
|
||||||
at listOnTimeout (internal/timers.js:557:17)
|
|
||||||
at processTimers (internal/timers.js:500:7)
|
|
||||||
|
|
||||||
npm manifest:
|
|
||||||
{
|
|
||||||
"name": "@layui/layui-vue",
|
|
||||||
"version": "0.3.3",
|
|
||||||
"author": "sleeprite",
|
|
||||||
"license": "MIT",
|
|
||||||
"description": "a component library for Vue 3 base on layui-vue",
|
|
||||||
"homepage": "http://layui-vue.pearadmin.com",
|
|
||||||
"module": "lib/layui-vue.es.js",
|
|
||||||
"main": "lib/layui-vue.umd.js",
|
|
||||||
"types": "types/index.d.ts",
|
|
||||||
"style": "lib/index.css",
|
|
||||||
"keywords": [
|
|
||||||
"layui-vue",
|
|
||||||
"layui",
|
|
||||||
"vue"
|
|
||||||
],
|
|
||||||
"exports": {
|
|
||||||
".": {
|
|
||||||
"import": "./lib/layui-vue.es.js",
|
|
||||||
"require": "./lib/layui-vue.umd.js"
|
|
||||||
},
|
|
||||||
"./lib/": "./lib/"
|
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"dev": "vite",
|
|
||||||
"build": "vite build --emptyOutDir && npm run build:types",
|
|
||||||
"build:types": "rimraf types && tsc -d",
|
|
||||||
"build:example": "vite build example",
|
|
||||||
"lint:eslint": "eslint 'src/**/*.{vue,ts,tsx}' --fix",
|
|
||||||
"lint:prettier": "prettier --write 'src/**/*'",
|
|
||||||
"commit": "git cz",
|
|
||||||
"prepublishOnly": "npm run build"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@layui/hooks-vue": "^0.1.6",
|
|
||||||
"@layui/icons-vue": "^1.0.2",
|
|
||||||
"@layui/layer-vue": "^1.2.4",
|
|
||||||
"async-validator": "^4.0.7",
|
|
||||||
"countup.js": "^2.0.8",
|
|
||||||
"evtd": "^0.2.3",
|
|
||||||
"vue": "^3.2.26",
|
|
||||||
"vue-router": "^4.0.12"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@babel/core": "^7.15.8",
|
|
||||||
"@babel/preset-env": "^7.15.8",
|
|
||||||
"@babel/preset-typescript": "^7.15.0",
|
|
||||||
"@rollup/plugin-babel": "^5.3.0",
|
|
||||||
"@types/markdown-it": "^12.2.3",
|
|
||||||
"@types/markdown-it-container": "^2.0.4",
|
|
||||||
"@types/node": "^16.11.9",
|
|
||||||
"@typescript-eslint/eslint-plugin": "^5.8.0",
|
|
||||||
"@typescript-eslint/parser": "^5.8.0",
|
|
||||||
"@vitejs/plugin-vue": "^1.9.3",
|
|
||||||
"@vue/compiler-sfc": "^3.2.26",
|
|
||||||
"@vue/server-renderer": "^3.2.26",
|
|
||||||
"commitizen": "^4.2.4",
|
|
||||||
"cz-conventional-changelog": "3.3.0",
|
|
||||||
"escape-html": "^1.0.3",
|
|
||||||
"eslint": "^8.5.0",
|
|
||||||
"eslint-config-prettier": "^8.3.0",
|
|
||||||
"eslint-plugin-prettier": "^4.0.0",
|
|
||||||
"eslint-plugin-vue": "^8.2.0",
|
|
||||||
"less": "^4.1.2",
|
|
||||||
"markdown-it-container": "^3.0.0",
|
|
||||||
"prettier": "^2.5.1",
|
|
||||||
"prismjs": "^1.25.0",
|
|
||||||
"rimraf": "^3.0.2",
|
|
||||||
"rollup": "^2.61.0",
|
|
||||||
"typescript": "^4.5.2",
|
|
||||||
"vite": "2.7.6",
|
|
||||||
"vite-plugin-md": "^0.11.6"
|
|
||||||
},
|
|
||||||
"files": [
|
|
||||||
"lib",
|
|
||||||
"types"
|
|
||||||
],
|
|
||||||
"browserslist": [
|
|
||||||
"current node",
|
|
||||||
"last 2 versions and > 2%",
|
|
||||||
"ie > 10"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
yarn manifest:
|
|
||||||
No manifest
|
|
||||||
|
|
||||||
Lockfile:
|
|
||||||
No lockfile
|
|
Loading…
Reference in New Issue
Block a user