@spoosh/plugin-qs 0.1.0-beta.0 → 0.1.1

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/README.md +1 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -17,7 +17,7 @@ import { qsPlugin } from "@spoosh/plugin-qs";
17
17
 
18
18
  const plugins = [
19
19
  qsPlugin({ arrayFormat: "brackets" }), // default
20
- ];
20
+ ] as const;
21
21
 
22
22
  // Query object
23
23
  const query = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spoosh/plugin-qs",
3
- "version": "0.1.0-beta.0",
3
+ "version": "0.1.1",
4
4
  "description": "Query string serialization plugin for Spoosh with nested object support",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -37,12 +37,12 @@
37
37
  "qs": "^6.13.0"
38
38
  },
39
39
  "peerDependencies": {
40
- "@spoosh/core": ">=0.1.0"
40
+ "@spoosh/core": ">=0.2.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/qs": "^6.9.17",
44
- "@spoosh/core": "0.1.0-beta.0",
45
- "@spoosh/test-utils": "0.1.0-beta.0"
44
+ "@spoosh/core": "0.2.0",
45
+ "@spoosh/test-utils": "0.1.1"
46
46
  },
47
47
  "scripts": {
48
48
  "dev": "tsup --watch",