getorset-anything 1.1.0 → 1.1.2

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 +15 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "getorset-anything",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "Gets a value from a Map/Obj or sets an initial value when not found and returns that. TypeScript supported.",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -10,18 +10,14 @@
10
10
  "engines": {
11
11
  "node": ">=18"
12
12
  },
13
- "scripts": {
14
- "lint": "tsc --noEmit && eslint ./src",
15
- "test": "vitest run",
16
- "build": "del-cli dist && tsc",
17
- "release": "npm run lint && npm run build && np"
18
- },
19
13
  "devDependencies": {
20
- "@cycraft/eslint": "^0.4.4",
14
+ "@cycraft/eslint": "^0.4.11",
21
15
  "@cycraft/tsconfig": "^0.1.2",
22
- "del-cli": "^6.0.0",
23
- "np": "^10.2.0",
24
- "vitest": "^3.2.4"
16
+ "bumpp": "^12.3.0",
17
+ "del-cli": "^7.0.0",
18
+ "eslint": "^9.20.1",
19
+ "typescript": "^5.9.3",
20
+ "vitest": "^5.0.2"
25
21
  },
26
22
  "files": [
27
23
  "dist"
@@ -54,5 +50,11 @@
54
50
  "url": "https://github.com/mesqueeb/getorset-anything.git"
55
51
  },
56
52
  "homepage": "https://github.com/mesqueeb/getorset-anything#readme",
57
- "bugs": "https://github.com/mesqueeb/getorset-anything/issues"
58
- }
53
+ "bugs": "https://github.com/mesqueeb/getorset-anything/issues",
54
+ "scripts": {
55
+ "lint": "tsc --noEmit && eslint ./src",
56
+ "test": "vitest run",
57
+ "build": "del-cli dist && tsc",
58
+ "release": "pnpm run lint && pnpm run build && pnpm test && bumpp --no-push --all && pnpm publish --no-git-checks && npx jsr publish && git push --follow-tags && gh release create $(git describe --tags --abbrev=0) --generate-notes --notes \"$(git log --pretty='- %s %h' $(git describe --tags --abbrev=0 HEAD~1 2>/dev/null || git rev-list --max-parents=0 HEAD)..HEAD~1)\""
59
+ }
60
+ }