easy-soft-develop 2.0.169 → 2.0.171

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,6 +1,6 @@
1
1
  {
2
2
  "name": "easy-soft-develop",
3
- "version": "2.0.169",
3
+ "version": "2.0.171",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kityandhero/easy-soft-develop#readme",
6
6
  "bugs": {
@@ -40,6 +40,7 @@ const content = \`# See https://help.github.com/articles/ignoring-files/ for mor
40
40
  # ignore config dir
41
41
  **/.idea
42
42
  **/.history
43
+ **/.swc
43
44
  **/.vs
44
45
 
45
46
  # ignore jest dir
@@ -60,7 +60,7 @@ function getGlobalDevelopPackages() {
60
60
 
61
61
  packages = packages.concat(['@types/node']);
62
62
 
63
- packages = packages.concat('cross-env');
63
+ packages = packages.concat('cross-env', '@types/jest', 'jest');
64
64
 
65
65
  packages = packages.concat('rimraf', 'lint-staged', 'husky');
66
66
 
@@ -72,7 +72,7 @@ function getGlobalDevelopPackages() {
72
72
  function getProjectDevelopPackages() {
73
73
  let packages = [];
74
74
 
75
- packages = packages.concat(['jest']);
75
+ packages = packages.concat([]);
76
76
 
77
77
  return packages;
78
78
  }