balena-deploy-request 0.9.5-build-renovate-major-16-lint-staged-ef475eebd0f15ab3bcefd53f0887b380e428c230-1 → 0.9.5-build-joshbwlng-husky-fc40307b1450be7555be22f5b182348d0160d073-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,15 +1,21 @@
1
1
  - commits:
2
- - subject: Update dependency lint-staged to v16
3
- hash: ef475eebd0f15ab3bcefd53f0887b380e428c230
4
- body: |
5
- Update lint-staged from 15.5.2 to 16.0.0
2
+ - subject: Format with prettify
3
+ hash: fc40307b1450be7555be22f5b182348d0160d073
4
+ body: ""
5
+ footer:
6
+ Change-type: patch
7
+ change-type: patch
8
+ author: joshbwlng
9
+ - subject: Fix husky and lint-staged configs
10
+ hash: 146a5bdaaf7555901f81077db285faff5268d4e6
11
+ body: ""
6
12
  footer:
7
13
  Change-type: patch
8
14
  change-type: patch
9
- author: balena-renovate[bot]
15
+ author: joshbwlng
10
16
  version: 0.9.5
11
17
  title: ""
12
- date: 2025-05-13T17:50:25.992Z
18
+ date: 2025-05-15T05:34:33.495Z
13
19
  - commits:
14
20
  - subject: we do our own deploys now
15
21
  hash: 428c10d57567788d78831c5cebd077aed2076763
package/CHANGELOG.md CHANGED
@@ -5,9 +5,10 @@ automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
5
5
  This project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
7
  # v0.9.5
8
- ## (2025-05-13)
8
+ ## (2025-05-15)
9
9
 
10
- * Update dependency lint-staged to v16 [balena-renovate[bot]]
10
+ * Format with prettify [joshbwlng]
11
+ * Fix husky and lint-staged configs [joshbwlng]
11
12
 
12
13
  # v0.9.4
13
14
  ## (2024-04-16)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "balena-deploy-request",
3
- "version": "0.9.5-build-renovate-major-16-lint-staged-ef475eebd0f15ab3bcefd53f0887b380e428c230-1",
3
+ "version": "0.9.5-build-joshbwlng-husky-fc40307b1450be7555be22f5b182348d0160d073-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",
@@ -31,10 +32,10 @@
31
32
  "homepage": "https://github.com/balena-io-modules/balena-deploy-request#readme",
32
33
  "devDependencies": {
33
34
  "husky": "^9.0.0",
34
- "lint-staged": "^16.0.0",
35
+ "lint-staged": "^15.0.0",
35
36
  "prettier": "^3.0.0"
36
37
  },
37
38
  "versionist": {
38
- "publishedAt": "2025-05-13T17:50:26.073Z"
39
+ "publishedAt": "2025-05-15T05:34:33.555Z"
39
40
  }
40
41
  }
package/.huskyrc DELETED
@@ -1,5 +0,0 @@
1
- {
2
- "hooks": {
3
- "pre-commit": "lint-staged"
4
- }
5
- }