@speedkit/cli 2.6.0 → 2.7.0

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/README.md CHANGED
@@ -74,7 +74,7 @@ $ npm install -g @speedkit/cli
74
74
  $ sk COMMAND
75
75
  running command...
76
76
  $ sk (--version)
77
- @speedkit/cli/2.6.0 linux-x64 node-v20.11.1
77
+ @speedkit/cli/2.7.0 linux-x64 node-v20.11.1
78
78
  $ sk --help [COMMAND]
79
79
  USAGE
80
80
  $ sk COMMAND
@@ -696,5 +696,5 @@
696
696
  ]
697
697
  }
698
698
  },
699
- "version": "2.6.0"
699
+ "version": "2.7.0"
700
700
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@speedkit/cli",
3
3
  "description": "Speed Kit CLI",
4
- "version": "2.6.0",
4
+ "version": "2.7.0",
5
5
  "author": {
6
6
  "name": "Baqend.com",
7
7
  "email": "info@baqend.com"
@@ -14,14 +14,14 @@
14
14
  "access": "public"
15
15
  },
16
16
  "scripts": {
17
- "postinstall": "husky install",
17
+ "prepare": "husky install",
18
18
  "lint": "eslint --ext .ts,.vue --ignore-path .gitignore src",
19
19
  "lint-fix": "eslint --fix --ext .ts,.vue --ignore-path .gitignore src",
20
20
  "prebuild": "shx rm -rf dist",
21
21
  "build": "tsc -b && copyfiles -u 1 src/**/*hbs ./dist && copyfiles -u 1 src/**/*js ./dist && npm run build-dashboard",
22
22
  "build-dashboard": "copyfiles -u 1 src/services/onboarding/dashboard/frontend-dist/**/*.html dist && copyfiles -u 1 src/services/onboarding/dashboard/frontend-dist/**/*.js dist && copyfiles -u 1 src/services/onboarding/dashboard/frontend-dist/**/*.css dist",
23
23
  "postbuild": "oclif manifest && oclif readme",
24
- "prepack": "npm run build && oclif manifest && oclif readme",
24
+ "prepack": "npm run build",
25
25
  "postpack": "rimraf rm -f oclif.manifest.json",
26
26
  "test": "mocha \"test/**/*.test.ts\"",
27
27
  "coverage": "nyc --extension .ts mocha \"test/**/*.test.ts\""