@primate/core 0.1.9 → 0.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primate/core",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Primate core",
5
5
  "homepage": "https://primatejs.com",
6
6
  "bugs": "https://github.com/primatejs/primate/issues",
@@ -16,9 +16,10 @@
16
16
  "directory": "packages/core"
17
17
  },
18
18
  "dependencies": {
19
+ "@rcompat/args": "^0.3.0",
19
20
  "@rcompat/array": "^0.3.0",
20
21
  "@rcompat/async": "^0.3.0",
21
- "@rcompat/build": "^0.5.0",
22
+ "@rcompat/build": "^0.6.0",
22
23
  "@rcompat/cli": "^0.5.1",
23
24
  "@rcompat/crypto": "^0.5.0",
24
25
  "@rcompat/fs": "^0.7.0",
@@ -2,5 +2,5 @@ import { error } from "#error";
2
2
 
3
3
  export default error(import.meta.url, {
4
4
  message: "bad default export at {0}",
5
- fix: "use only functions for the default export",
5
+ fix: "use only functions for the default export of the given file",
6
6
  });
@@ -2,5 +2,5 @@ import { error } from "#error";
2
2
 
3
3
  export default error(import.meta.url, {
4
4
  message: "{0}: {1}",
5
- fix: "make sure the body payload corresponds to the used content type",
5
+ fix: "make sure the request body corresponds to the used content type",
6
6
  });