@smi-digital/create-smi-app 2.10.0 → 2.10.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smi-digital/create-smi-app",
3
- "version": "2.10.0",
3
+ "version": "2.10.1",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -1,5 +1,10 @@
1
1
  #!/usr/bin/env sh
2
- npx lint-staged
2
+ # --no-stash: keep eslint --fix / prettier --write running and blocking as normal,
3
+ # but disable lint-staged's backup-stash + hard-revert. That stash/revert step is
4
+ # what silently ate working-tree edits when a task failed (worsened by the required
5
+ # ansible-vault filter round-tripping production.*.env during the rollback). Without
6
+ # it, a failed lint just aborts the commit and leaves your changes untouched.
7
+ npx lint-staged --no-stash
3
8
 
4
9
  # Safety net: never let an unencrypted production env file reach a commit.
5
10
  # The Ansible-Vault git filter normally encrypts these as they are staged; this