@towles/tool 0.0.1 → 0.0.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 +9 -17
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -8,21 +8,26 @@
8
8
 
9
9
  One off quality of life scripts that I use on a daily basis.
10
10
 
11
+ ## Tools to add
12
+ - [ ] Today - creates and opens a markdown file, named the current week of the year, for you to keep your daily notes and use a scratch pad for notes.
13
+
11
14
  ## Install from repository
12
15
 
13
16
  ```bash
14
- pnpm add --global "${pwd}"
17
+ pnpm add --global @towles/tool
15
18
 
16
19
  ## followed by
17
-
18
20
  tt
19
21
 
22
+ # or
23
+ towles-tool
24
+
20
25
  ```
21
26
 
22
27
  ## Unisntall
23
28
 
24
29
  ```bash
25
- pnpm uninstall --global @towles/tool
30
+ pnpm remove --global @towles/tool
26
31
  ```
27
32
 
28
33
  ## If command not found
@@ -34,22 +39,9 @@ pnpm tt
34
39
 
35
40
  if that works, then you need to add the pnpm global bin directory to your PATH.
36
41
 
37
- ```bash
38
- pnpm root -g
39
- ```
40
- This will give you the path to the global pnpm directory, which is usually something like `~/.local/share/pnpm/global/5`. You can then add this to your PATH in your shell configuration file (e.g., `.bashrc`, `.zshrc`).
41
-
42
- ```bash
43
- export PATH=$PATH:$(pnpm root -g)/bin
44
- ```
45
-
46
- ## Tools to add
47
- - [ ] Today - creates and opens a markdown file, named the current week of the year, for you to keep your daily notes and use a scratch pad for notes.
48
- -
49
-
50
42
  ## packages to consider
43
+
51
44
  - [ansis](https://github.com/webdiscus/ansis/) text colors
52
- -
53
45
 
54
46
  ## History
55
47
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@towles/tool",
3
3
  "type": "module",
4
- "version": "0.0.1",
4
+ "version": "0.0.6",
5
5
  "description": "One off quality of life scripts that I use on a daily basis.",
6
6
  "author": "Chris Towles <Chris.Towles.Dev@gmail.com>",
7
7
  "license": "MIT",
@@ -66,7 +66,8 @@
66
66
  "build": "unbuild",
67
67
  "dev": "unbuild --stub",
68
68
  "lint": "eslint",
69
- "release": "bumpp && pnpm publish",
69
+ "release:local": "bumpp && pnpm publish --no-git-checks -r --access public",
70
+ "release": "bumpp && echo \"github action will run and publish to npm\"",
70
71
  "start": "tsx src/index.ts",
71
72
  "test": "vitest --run",
72
73
  "test:watch": "vitest",