tsu 1.3.1 → 1.3.2

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 +2 -2
  2. package/package.json +2 -4
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # tsu
2
2
 
3
- > A collection of TypeScript utilities.
3
+ > TypeScript utilities
4
4
 
5
5
  <a href="https://npmjs.com/package/tsu">
6
6
  <img src="https://img.shields.io/npm/v/tsu" alt="npm version">
@@ -18,7 +18,7 @@ Install with your favourite package manager:
18
18
  yarn add tsu
19
19
 
20
20
  # pnpm
21
- pnpm install tsu
21
+ pnpm add tsu
22
22
 
23
23
  # npm
24
24
  npm install tsu
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "tsu",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "type": "module",
5
- "description": "A collection of TypeScript utilities.",
5
+ "description": "TypeScript utilities",
6
6
  "license": "MIT",
7
7
  "author": "eb3n",
8
8
  "main": "./dist/index.js",
@@ -30,8 +30,6 @@
30
30
  "watch": "nr build --watch src",
31
31
  "test": "jest",
32
32
  "prepublishOnly": "nr test; nr build",
33
- "_docs:dev": "vuepress dev _docs",
34
- "_docs:build": "vuepress build _docs",
35
33
  "docs:dev": "vitepress dev docs --port 8888",
36
34
  "docs:build": "vitepress build docs"
37
35
  },