balena-deploy-request 0.9.4-build-ab77-patch-2abdea2660fb81eb04c1cab15fce500b4a2b3ca1-1 → 0.9.5-build-joshbwlng-husky-146a5bdaaf7555901f81077db285faff5268d4e6-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,2 @@
1
+
2
+ npx --no lint-staged
package/.lintstagedrc CHANGED
@@ -1,6 +1,5 @@
1
1
  {
2
2
  "*.js": [
3
- "prettier --write",
4
- "git add"
3
+ "prettier --write"
5
4
  ],
6
5
  }
@@ -1,3 +1,14 @@
1
+ - commits:
2
+ - subject: Fix husky and lint-staged configs
3
+ hash: 146a5bdaaf7555901f81077db285faff5268d4e6
4
+ body: ""
5
+ footer:
6
+ Change-type: patch
7
+ change-type: patch
8
+ author: joshbwlng
9
+ version: 0.9.5
10
+ title: ""
11
+ date: 2025-05-15T05:32:53.658Z
1
12
  - commits:
2
13
  - subject: we do our own deploys now
3
14
  hash: 428c10d57567788d78831c5cebd077aed2076763
@@ -7,7 +18,7 @@
7
18
  author: Anton Belodedenko
8
19
  version: 0.9.4
9
20
  title: ""
10
- date: 2024-03-28T17:57:56.562Z
21
+ date: 2024-04-16T13:22:51.767Z
11
22
  - commits:
12
23
  - subject: Update dependency lint-staged to v15
13
24
  hash: 5e2813daf0db446a20dc1d2b9a1d0726f8e24593
package/CHANGELOG.md CHANGED
@@ -4,8 +4,13 @@ All notable changes to this project will be documented in this file
4
4
  automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
5
5
  This project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
+ # v0.9.5
8
+ ## (2025-05-15)
9
+
10
+ * Fix husky and lint-staged configs [joshbwlng]
11
+
7
12
  # v0.9.4
8
- ## (2024-03-28)
13
+ ## (2024-04-16)
9
14
 
10
15
  * we do our own deploys now [Anton Belodedenko]
11
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "balena-deploy-request",
3
- "version": "0.9.4-build-ab77-patch-2abdea2660fb81eb04c1cab15fce500b4a2b3ca1-1",
3
+ "version": "0.9.5-build-joshbwlng-husky-146a5bdaaf7555901f81077db285faff5268d4e6-1",
4
4
  "description": "A simple script for generating deploy requests along with release notes",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -9,7 +9,8 @@
9
9
  "scripts": {
10
10
  "prettify": "prettier --write \"src/**/*.js\"",
11
11
  "catch-unprettified": "npm run prettify -- --check",
12
- "test": "npm run catch-unprettified"
12
+ "test": "npm run catch-unprettified",
13
+ "prepare": "husky"
13
14
  },
14
15
  "repository": {
15
16
  "type": "git",
@@ -35,6 +36,6 @@
35
36
  "prettier": "^3.0.0"
36
37
  },
37
38
  "versionist": {
38
- "publishedAt": "2024-03-28T17:57:56.622Z"
39
+ "publishedAt": "2025-05-15T05:32:53.724Z"
39
40
  }
40
41
  }
package/.huskyrc DELETED
@@ -1,5 +0,0 @@
1
- {
2
- "hooks": {
3
- "pre-commit": "lint-staged"
4
- }
5
- }