@luck-design-biz/luckda 0.0.1 → 0.0.2

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 (3) hide show
  1. package/README.md +1 -1
  2. package/package.json +7 -6
  3. package/utils.js +1 -0
package/README.md CHANGED
@@ -31,7 +31,7 @@ npm run async
31
31
  进入需要相关业务项目中,将发布全局的组件库 link 进去
32
32
 
33
33
  ```bash
34
- yalc link luck-biz-components
34
+ yalc link @luck-design-biz/luckda
35
35
  ```
36
36
 
37
37
  ### 发布 npm
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luck-design-biz/luckda",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "scripts": {
5
5
  "start": "dumi dev",
6
6
  "docs:build": "dumi build",
@@ -16,10 +16,11 @@
16
16
  },
17
17
  "files": [
18
18
  "es",
19
- "lib"
19
+ "lib",
20
+ "utils.js"
20
21
  ],
21
- "main": "lib/components/index.js",
22
- "module": "es/components/index.js",
22
+ "main": "lib/index.js",
23
+ "module": "es/index.js",
23
24
  "gitHooks": {
24
25
  "pre-commit": "lint-staged"
25
26
  },
@@ -39,8 +40,8 @@
39
40
  },
40
41
  "dependencies": {
41
42
  "@babel/runtime": "^7.18.9",
42
- "@province-city-china/level": "^8.5.4",
43
43
  "@luck-design-biz/base": "^0.0.1",
44
+ "@province-city-china/level": "^8.5.4",
44
45
  "ahooks": "^3.7.0",
45
46
  "antd": "^3.26.6",
46
47
  "bpmn-js": "^7.3.0",
@@ -79,7 +80,7 @@
79
80
  "rollup-plugin-node-resolve": "^5.2.0",
80
81
  "yorkie": "^2.0.0"
81
82
  },
82
- "description": "--- luck业务组件库 ---### 安装依赖",
83
+ "description": "前端配置管理中心业务组件库",
83
84
  "bugs": {
84
85
  "url": "https://github.com/xieyt203/luck-biz-components/issues"
85
86
  },
package/utils.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = require('./es/utils');