@chriscdn/build-url 1.0.1 → 1.0.3

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 +4 -4
  2. package/package.json +4 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # chriscdn/build-url
1
+ # @chriscdn/build-url
2
2
 
3
- A small utility for generating URLs.
3
+ A small utility for building URLs.
4
4
 
5
5
  ## Motivation
6
6
 
@@ -16,13 +16,13 @@ I forked this package for two reasons:
16
16
  Using npm:
17
17
 
18
18
  ```bash
19
- npm install https://github.com/chriscdn/build-url
19
+ npm install @chriscdn/build-url
20
20
  ```
21
21
 
22
22
  Using yarn:
23
23
 
24
24
  ```bash
25
- yarn add https://github.com/chriscdn/build-url
25
+ yarn add @chriscdn/build-url
26
26
  ```
27
27
 
28
28
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,9 @@
1
1
  {
2
2
  "name": "@chriscdn/build-url",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
+ "description": "A small utility for building URLs.",
5
+ "repository": "https://github.com/chriscdn/build-url",
6
+ "author": "Christopher Meyer <chris@schwiiz.org>",
4
7
  "license": "MIT",
5
8
  "type": "module",
6
9
  "source": "./src/index.ts",