@synstack/str 1.2.5 → 1.2.6

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 +0 -3
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -2,9 +2,6 @@
2
2
 
3
3
  Advanced chainable string manipulation utilities
4
4
 
5
- > [!WARNING]
6
- > This package is included in the [@synstack/synscript](../synscript/README.md) package. It is not recommended to install both packages at the same time.
7
-
8
5
  ## What is it for?
9
6
 
10
7
  When working with strings in TypeScript, you often need to chain multiple operations like trimming, splitting, case conversion, and indentation management. This package provides a fluent, chainable API for string manipulation with full type safety:
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "1.2.5",
7
+ "version": "1.2.6",
8
8
  "description": "Advanced chainable string manipulation",
9
9
  "keywords": [
10
10
  "string",
@@ -46,18 +46,18 @@
46
46
  }
47
47
  },
48
48
  "dependencies": {
49
- "@synstack/pipe": "1.1.8",
49
+ "@synstack/pipe": "1.1.9",
50
50
  "change-case": "^5.4.4"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@types/node": "^22.10.1",
54
54
  "tsup": "^8.4.0",
55
- "typescript": "^5.7.3"
55
+ "typescript": "^5.8.2"
56
56
  },
57
57
  "files": [
58
58
  "src/**/*.ts",
59
59
  "!src/**/*.test.ts",
60
60
  "dist/**/*"
61
61
  ],
62
- "gitHead": "9351f651b39cf757bc37c3e2ab9c516c0e2ed127"
62
+ "gitHead": "4aae6e86f7664e5b928ecb3a492ec035307168d1"
63
63
  }