@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 +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@speedkit/cli",
|
|
3
3
|
"description": "Speed Kit CLI",
|
|
4
|
-
"version": "2.
|
|
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
|
-
"
|
|
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
|
|
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\""
|