vue-lazy-cascader 0.1.16 → 0.1.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "vue-lazy-cascader",
3
- "version": "0.1.16",
3
+ "version": "0.1.17",
4
4
  "private": false,
5
5
  "description": "A cascader component based on element-ui, which retains the basic functionality of el-cascader while adding remote search and scroll loading of nodes.",
6
- "main": "./lib/vue-lazy-cascader.umd.min.js",
6
+ "main": "./dist/lib/vue-lazy-cascader.umd.min.js",
7
7
  "files": [
8
- "lib",
8
+ "dist/lib",
9
9
  "README.md",
10
10
  "LICENSE"
11
11
  ],
@@ -22,13 +22,13 @@
22
22
  },
23
23
  "author": "jyj1202",
24
24
  "license": "MIT",
25
- "peerDependencies": {
26
- },
27
25
  "scripts": {
28
26
  "serve": "vue-cli-service serve",
29
- "build": "vue-cli-service build --target lib --name vue-lazy-cascader ./src/components/cascader/index.js",
30
- "build:example": "vue-cli-service build",
31
- "lint": "vue-cli-service lint"
27
+ "build:all": "pnpm build:example && pnpm build:lib",
28
+ "build:lib": "vue-cli-service build --target lib --name vue-lazy-cascader ./src/components/cascader/index.js --dest dist/lib",
29
+ "build:example": "vue-cli-service build --dest dist",
30
+ "lint": "vue-cli-service lint",
31
+ "release": "standard-version"
32
32
  },
33
33
  "dependencies": {
34
34
  "core-js": "^3.8.3",
@@ -43,6 +43,7 @@
43
43
  "element-ui": "^2.15.14",
44
44
  "eslint": "^7.32.0",
45
45
  "eslint-plugin-vue": "^8.0.3",
46
+ "standard-version": "^9.5.0",
46
47
  "vue": "^2.6.14",
47
48
  "vue-template-compiler": "^2.6.14"
48
49
  },
File without changes
File without changes
File without changes
File without changes
File without changes