eitri-cli 1.33.0 → 1.33.1

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.
@@ -0,0 +1,4 @@
1
+ #!/bin/sh
2
+ . "$(dirname "$0")/_/husky.sh"
3
+
4
+ cd ./eitri-cli-v2 && cargo clippy
@@ -56,6 +56,7 @@ pipelines:
56
56
  - mkdir -p ~/.eitri/workspaces
57
57
  - cp -r eitri-cli-v2/tests/fixtures/fake-workspace ~/.eitri/workspaces/workspace
58
58
  - cd eitri-cli-v2
59
+ - cargo clippy
59
60
  - cargo test -- --test-threads=1 --nocapture
60
61
  - step: &macOSCrossCompileArm
61
62
  image:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eitri-cli",
3
- "version": "1.33.0",
3
+ "version": "1.33.1",
4
4
  "description": "Command Line Interface to make \"Eitri-App\" with code and fire.",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -13,7 +13,8 @@
13
13
  "docsify:run": "cd docsify && docsify serve",
14
14
  "build": "echo \"no build\"",
15
15
  "release": "semantic-release",
16
- "release:dry": "semantic-release --dry-run"
16
+ "release:dry": "semantic-release --dry-run",
17
+ "prepare": "husky install"
17
18
  },
18
19
  "engines": {
19
20
  "node": ">=16.0.0",
@@ -22,12 +23,6 @@
22
23
  "keywords": [],
23
24
  "author": "Calindra",
24
25
  "license": "ISC",
25
- "lint-staged": {
26
- "*.js": [
27
- "./node_modules/.bin/eslint --fix",
28
- "git add"
29
- ]
30
- },
31
26
  "dependencies": {
32
27
  "adm-zip": "^0.5.9",
33
28
  "axios": "^1.7.2",
package/.husky/commit-msg DELETED
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env sh
2
- . "$(dirname -- "$0")/_/husky.sh"
3
-
4
- npx --no -- commitlint --edit ${1}