@pisell/common 3.0.11 → 3.0.13

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/CHANGELOG.md CHANGED
@@ -1,16 +1,39 @@
1
1
  # @pisell/common
2
2
 
3
+ ## 3.0.13
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [bacc43601]
8
+ - @pisell/utils@2.0.2
9
+
10
+ ## 3.0.12
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [995527380]
15
+ - @pisell/utils@3.0.1
16
+
3
17
  ## 3.0.11
4
18
 
5
19
  ### Patch Changes
6
20
 
7
- - cf72095e7: update
21
+ - Updated dependencies [734dcb08d]
22
+ - @pisell/utils@3.0.1
23
+
24
+ ## 3.0.10
25
+
26
+ ### Patch Changes
27
+
28
+ - Updated dependencies [f15c3be02]
29
+ - @pisell/utils@1.0.44
8
30
 
9
31
  ## 3.0.9
10
32
 
11
33
  ### Patch Changes
12
34
 
13
- - ab5a8d1df: 新增 saas_home 项目路径并更新相关逻辑
35
+ - Updated dependencies [2f57417ac]
36
+ - @pisell/utils@1.0.43
14
37
 
15
38
  ## 3.0.8
16
39
 
@@ -66,6 +89,27 @@
66
89
 
67
90
  - 7b7637320: s
68
91
 
92
+ ## 1.0.28
93
+
94
+ ### Patch Changes
95
+
96
+ - Updated dependencies [afc404e7]
97
+ - @pisell/utils@2.0.1
98
+
99
+ ## 1.0.27
100
+
101
+ ### Patch Changes
102
+
103
+ - Updated dependencies [0077f1f4]
104
+ - @pisell/utils@1.0.30
105
+
106
+ ## 1.0.26
107
+
108
+ ### Patch Changes
109
+
110
+ - Updated dependencies [56cd1bb5]
111
+ - @pisell/utils@1.0.29
112
+
69
113
  ## 1.0.26
70
114
 
71
115
  ### Patch Changes
package/es/bin/pisell.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pisell/common",
3
- "version": "3.0.11",
3
+ "version": "3.0.13",
4
4
  "sideEffects": [
5
5
  "*.less"
6
6
  ],
@@ -11,16 +11,28 @@
11
11
  "bin": {
12
12
  "pisell": "es/bin/pisell.js"
13
13
  },
14
+ "scripts": {
15
+ "build": "father build",
16
+ "dev": "father dev",
17
+ "docs:build": "dumi build",
18
+ "doctor": "father doctor",
19
+ "lint": "npm run lint:es && npm run lint:css",
20
+ "lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
21
+ "lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
22
+ "lowcode:build": "build-scripts build --config ./build.lowcode.js",
23
+ "lowcode:dev": "build-scripts start --config ./build.lowcode.js",
24
+ "start": "npm run dev"
25
+ },
14
26
  "dependencies": {
15
27
  "@aws-sdk/client-s3": "^3.456.0",
28
+ "@pisell/utils": "workspace:*",
16
29
  "zx": "^7.2.2",
17
30
  "inquirer": "^6.2.6",
18
31
  "mime-types": "^2.1.35",
19
32
  "npm-check": "^6.0.1",
20
33
  "archiver": "^5.3.1",
21
34
  "dotenv": "^16.0.3",
22
- "ssh2": "^1.13.0",
23
- "@pisell/utils": "3.0.0"
35
+ "ssh2": "^1.13.0"
24
36
  },
25
37
  "devDependencies": {
26
38
  "father": "^4.1.6"
@@ -44,17 +56,5 @@
44
56
  },
45
57
  "publishConfig": {
46
58
  "access": "public"
47
- },
48
- "scripts": {
49
- "build": "father build",
50
- "dev": "father dev",
51
- "docs:build": "dumi build",
52
- "doctor": "father doctor",
53
- "lint": "npm run lint:es && npm run lint:css",
54
- "lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
55
- "lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
56
- "lowcode:build": "build-scripts build --config ./build.lowcode.js",
57
- "lowcode:dev": "build-scripts start --config ./build.lowcode.js",
58
- "start": "npm run dev"
59
59
  }
60
60
  }