pinejs-client-core 6.14.9 → 6.14.10

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.
@@ -1,3 +1,15 @@
1
+ - commits:
2
+ - subject: "Tests: improve typing of tests"
3
+ hash: d970b64c9400e11ee55c29f16fe489c45b16a957
4
+ body: ""
5
+ footer:
6
+ Change-type: patch
7
+ change-type: patch
8
+ author: Pagan Gazzard
9
+ nested: []
10
+ version: 6.14.10
11
+ title: ""
12
+ date: 2024-06-10T15:36:35.926Z
1
13
  - commits:
2
14
  - subject: Add `$filter` to nested `$count` typings
3
15
  hash: 2774bd0e8b03d6d204df41c2d4ebf3a9d039057e
@@ -9,7 +21,7 @@
9
21
  nested: []
10
22
  version: 6.14.9
11
23
  title: ""
12
- date: 2024-06-10T15:10:43.732Z
24
+ date: 2024-06-10T15:33:59.941Z
13
25
  - commits:
14
26
  - subject: "Tests: remove unnecessary/unintended returns"
15
27
  hash: b51e379e6a5b1c6cbc5cb83d6dcf537bc6776b05
package/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
4
4
  automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
5
5
  This project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
+ ## 6.14.10 - 2024-06-10
8
+
9
+ * Tests: improve typing of tests [Pagan Gazzard]
10
+
7
11
  ## 6.14.9 - 2024-06-10
8
12
 
9
13
  * Add `$filter` to nested `$count` typings [Pagan Gazzard]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinejs-client-core",
3
- "version": "6.14.9",
3
+ "version": "6.14.10",
4
4
  "description": "This module provides the core tools to enable easier interaction with the pinejs API.",
5
5
  "browser": "es2015",
6
6
  "main": "index.js",
@@ -18,7 +18,7 @@
18
18
  "lint": "balena-lint -t tsconfig.dev.json src test",
19
19
  "pretest": "npm run build",
20
20
  "test": "mocha",
21
- "posttest": "npm run lint",
21
+ "posttest": "npm run lint & npx tsc --noEmit --project tsconfig.dev.json",
22
22
  "test6": "npm run build && mocha",
23
23
  "build-es2015": "tsc --target es2015 --outDir es2015",
24
24
  "build-es2018": "tsc --target es2018 --outDir es2018",
@@ -54,6 +54,6 @@
54
54
  "_": "test/*.ts"
55
55
  },
56
56
  "versionist": {
57
- "publishedAt": "2024-06-10T15:10:43.895Z"
57
+ "publishedAt": "2024-06-10T15:36:36.112Z"
58
58
  }
59
59
  }
package/tsconfig.dev.json CHANGED
@@ -1,5 +1,8 @@
1
1
  {
2
2
  "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "rootDir": "./"
5
+ },
3
6
  "include": [
4
7
  "src/*",
5
8
  "test/*"