@wangtaizong/components 1.0.7 → 1.0.8

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.
Files changed (1) hide show
  1. package/package.json +18 -18
package/package.json CHANGED
@@ -1,38 +1,33 @@
1
1
  {
2
2
  "name": "@wangtaizong/components",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "private": false,
5
5
  "scripts": {
6
- "start": "npm run dev",
7
- "dev": "dumi dev",
8
6
  "build": "lerna run build",
7
+ "clean": "lerna clean --yes",
8
+ "clean:dist": "lerna exec -- rm -rf dist es lib",
9
+ "commit": "git add . && git cz",
10
+ "cs:add": "pnpm changeset add",
11
+ "cs:preEnter": "pnpm changeset pre enter beta",
12
+ "cs:preExit": "pnpm changeset pre exit",
13
+ "cs:publish": "pnpm changeset publish",
14
+ "cs:status": "pnpm changeset status",
15
+ "cs:version": "pnpm changeset version",
16
+ "dev": "dumi dev",
9
17
  "docs:build": "dumi build",
10
18
  "docs:preview": "dumi preview",
11
19
  "lint": "npm run lint:es && npm run lint:css",
12
20
  "lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
13
21
  "lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
14
- "commit": "git add . && git cz",
15
- "clean": "lerna clean --yes",
16
- "clean:dist": "lerna exec -- rm -rf dist es lib",
17
- "lv": "lerna version",
18
22
  "lp": "lerna publish from-git",
19
- "cs:add": "pnpm changeset add",
20
- "cs:version": "pnpm changeset version",
21
- "cs:publish": "pnpm changeset publish",
22
- "cs:status": "pnpm changeset status",
23
- "cs:preEnter": "pnpm changeset pre enter beta",
24
- "cs:preExit": "pnpm changeset pre exit"
23
+ "lv": "lerna version",
24
+ "start": "npm run dev"
25
25
  },
26
26
  "commitlint": {
27
27
  "extends": [
28
28
  "@commitlint/config-conventional"
29
29
  ]
30
30
  },
31
- "config": {
32
- "commitizen": {
33
- "path": "./node_modules/cz-conventional-changelog"
34
- }
35
- },
36
31
  "lint-staged": {
37
32
  "*.{md,json}": [
38
33
  "prettier --write --no-error-on-unmatched-pattern"
@@ -50,6 +45,11 @@
50
45
  "prettier --parser=typescript --write"
51
46
  ]
52
47
  },
48
+ "config": {
49
+ "commitizen": {
50
+ "path": "./node_modules/cz-conventional-changelog"
51
+ }
52
+ },
53
53
  "devDependencies": {
54
54
  "@changesets/cli": "^2.29.2",
55
55
  "@commitlint/cli": "^17.1.2",