querier-ts 2.5.1 → 2.5.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 (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## v2.5.2
4
+
5
+ ### Summary
6
+
7
+ - [ ] Bug fixes
8
+ - [ ] Code refactoring
9
+ - [ ] New features
10
+ - [x] Build and packaging updates
11
+ - [ ] Breaking changes
12
+
13
+ ### Build and packaging updates
14
+
15
+ - Removed `tsup` settings that could make debugging harder.
16
+ - Rebuilt `v2.5.1`, for `dist` was outdated.
17
+ - Added `build` script to `prepublishOnly` script, ensuring build before publishing.
18
+
3
19
  ## v2.5.1
4
20
 
5
21
  ### Summary
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "querier-ts",
3
3
  "type": "module",
4
- "version": "2.5.1",
4
+ "version": "2.5.2",
5
5
  "description": "A lightweight, type-safe in-memory query engine for JavaScript and TypeScript",
6
6
  "repository": {
7
7
  "type": "git",
@@ -47,7 +47,7 @@
47
47
  "format": "prettier --write \"src/**/*.ts\"",
48
48
  "lint": "eslint \"src/**/*.ts\" --fix",
49
49
  "prepare": "husky",
50
- "prepublishOnly": "pnpm test && pnpm lint",
50
+ "prepublishOnly": "pnpm build && pnpm test && pnpm lint",
51
51
  "preversion": "pnpm lint",
52
52
  "version": "pnpm format && git add -A src",
53
53
  "postversion": "git push && git push --tags"