@stryke/string-format 0.1.3 → 0.1.4

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 +16 -16
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -46,28 +46,28 @@ This package is part of Storm Software's **đŸŒŠī¸ Stryke** monorepo. Stryke pac
46
46
 
47
47
  # Stryke - String Formatting
48
48
 
49
- A collection of helper functions used to manipulate string values
49
+ A collection of helper functions used to manipulate string values. The functions in this package are responsible for transforming strings into various formats.
50
50
 
51
51
  <!-- START doctoc -->
52
52
  <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
53
53
 
54
54
  ## Table of Contents
55
55
 
56
- - [Stryke - String Formatting](#stryke---string-formatting)
57
- - [Table of Contents](#table-of-contents)
58
- - [Installing](#installing)
59
- - [Reduced Package Size](#reduced-package-size)
60
- - [Development](#development)
61
- - [Building](#building)
62
- - [Running unit tests](#running-unit-tests)
63
- - [Linting](#linting)
64
- - [Storm Workspaces](#storm-workspaces)
65
- - [Roadmap](#roadmap)
66
- - [Support](#support)
67
- - [License](#license)
68
- - [Changelog](#changelog)
69
- - [Contributing](#contributing)
70
- - [Contributors](#contributors)
56
+ - [Stryke - String Formatting](#stryke---string-formatting)
57
+ - [Table of Contents](#table-of-contents)
58
+ - [Installing](#installing)
59
+ - [Reduced Package Size](#reduced-package-size)
60
+ - [Development](#development)
61
+ - [Building](#building)
62
+ - [Running unit tests](#running-unit-tests)
63
+ - [Linting](#linting)
64
+ - [Storm Workspaces](#storm-workspaces)
65
+ - [Roadmap](#roadmap)
66
+ - [Support](#support)
67
+ - [License](#license)
68
+ - [Changelog](#changelog)
69
+ - [Contributing](#contributing)
70
+ - [Contributors](#contributors)
71
71
 
72
72
  <!-- END doctoc -->
73
73
 
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@stryke/string-format",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "type": "module",
5
- "description": "đŸŒŠī¸ A monorepo containing TypeScript utility packages with shared functionality common to many Storm Software applications.",
5
+ "description": "A package containing utility functions to transform strings into various formats.",
6
6
  "repository": {
7
7
  "type": "github",
8
8
  "url": "https://github.com/storm-software/stryke.git",
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "private": false,
12
12
  "publishConfig": { "access": "public" },
13
- "dependencies": { "@stryke/helpers": ">=0.1.0", "@stryke/types": ">=0.1.1" },
13
+ "dependencies": { "@stryke/helpers": ">=0.1.4", "@stryke/types": ">=0.1.1" },
14
14
  "devDependencies": {},
15
15
  "sideEffects": false,
16
16
  "files": ["dist/**/*"],