@stryke/unique-id 0.2.7 → 0.3.0

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 -13
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -65,19 +65,22 @@ This package includes generator functions for the following type of identifiers:
65
65
 
66
66
  ## Table of Contents
67
67
 
68
- - [Installing](#installing)
69
- - [Reduced Package Size](#reduced-package-size)
70
- - [Development](#development)
71
- - [Building](#building)
72
- - [Running unit tests](#running-unit-tests)
73
- - [Linting](#linting)
74
- - [Storm Workspaces](#storm-workspaces)
75
- - [Roadmap](#roadmap)
76
- - [Support](#support)
77
- - [License](#license)
78
- - [Changelog](#changelog)
79
- - [Contributing](#contributing)
80
- - [Contributors](#contributors)
68
+ - [Stryke - Unique Identifiers](#stryke---unique-identifiers)
69
+ - [Available Identifiers](#available-identifiers)
70
+ - [Table of Contents](#table-of-contents)
71
+ - [Installing](#installing)
72
+ - [Reduced Package Size](#reduced-package-size)
73
+ - [Development](#development)
74
+ - [Building](#building)
75
+ - [Running unit tests](#running-unit-tests)
76
+ - [Linting](#linting)
77
+ - [Storm Workspaces](#storm-workspaces)
78
+ - [Roadmap](#roadmap)
79
+ - [Support](#support)
80
+ - [License](#license)
81
+ - [Changelog](#changelog)
82
+ - [Contributing](#contributing)
83
+ - [Contributors](#contributors)
81
84
 
82
85
  <!-- END doctoc -->
83
86
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stryke/unique-id",
3
- "version": "0.2.7",
3
+ "version": "0.3.0",
4
4
  "type": "module",
5
5
  "description": "A package containing various helper functions to generate unique identifier strings",
6
6
  "repository": {
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "private": false,
12
12
  "publishConfig": { "access": "public" },
13
- "dependencies": { "@stryke/hash": "^0.9.2" },
13
+ "dependencies": { "@stryke/hash": "^0.9.3" },
14
14
  "devDependencies": {},
15
15
  "sideEffects": false,
16
16
  "files": ["dist/**/*"],