iter-fest 0.2.2-main.1ca1e16 → 0.2.2-main.fdb3230

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.
Files changed (1) hide show
  1. package/package.json +4 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iter-fest",
3
- "version": "0.2.2-main.1ca1e16",
3
+ "version": "0.2.2-main.fdb3230",
4
4
  "description": "A collection of utilities for iterations.",
5
5
  "files": [
6
6
  "./dist/"
@@ -521,12 +521,11 @@
521
521
  "typings": "./dist/iter-fest.d.ts",
522
522
  "scripts": {
523
523
  "build": "tsup",
524
- "bump": "npm run bump:prod && npm run bump:dev && npm run bump:auditfix",
525
- "bump:auditfix": "npm audit fix || exit 0",
524
+ "bump": "npm run bump:prod && npm run bump:dev",
526
525
  "bump:dev": "PACKAGES_TO_BUMP=$(cat package.json | jq -r '(.pinDependencies // {}) as $P | (.localPeerDependencies // {}) as $L | (.devDependencies // {}) | to_entries | map(select(.key as $K | $L | has($K) | not)) | map(.key + \"@\" + ($P[.key] // [\"latest\"])[0]) | join(\" \")') && [ ! -z \"$PACKAGES_TO_BUMP\" ] && npm install $PACKAGES_TO_BUMP || true",
527
526
  "bump:prod": "PACKAGES_TO_BUMP=$(cat package.json | jq -r '(.pinDependencies // {}) as $P | (.localPeerDependencies // {}) as $L | (.dependencies // {}) | to_entries | map(select(.key as $K | $L | has($K) | not)) | map(.key + \"@\" + ($P[.key] // [\"latest\"])[0]) | join(\" \")') && [ ! -z \"$PACKAGES_TO_BUMP\" ] && npm install $PACKAGES_TO_BUMP || true",
528
527
  "precommit": "npm run precommit:eslint && npm run precommit:publint && npm run precommit:typescript:production && npm run precommit:typescript:test",
529
- "precommit:eslint": "eslint ./src/",
528
+ "precommit:eslint": "ESLINT_USE_FLAT_CONFIG=false eslint ./src/",
530
529
  "precommit:publint": "publint",
531
530
  "precommit:typescript:production": "tsc --noEmit --project ./src/tsconfig.precommit.production.json",
532
531
  "precommit:typescript:test": "tsc --noEmit --project ./src/tsconfig.precommit.test.json",
@@ -570,6 +569,6 @@
570
569
  "typescript": "^5.5.2"
571
570
  },
572
571
  "dependencies": {
573
- "iter-fest": "^0.2.2-main.1ca1e16"
572
+ "iter-fest": "^0.2.2-main.fdb3230"
574
573
  }
575
574
  }