node-power-user 1.0.0 → 1.0.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.
- package/CHANGELOG.md +20 -0
- package/LICENSE +1 -1
- package/README.md +7 -7
- package/package.json +18 -11
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# CHANGELOG
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
6
|
+
|
|
7
|
+
## Changelog Categories
|
|
8
|
+
|
|
9
|
+
- `BREAKING` for breaking changes.
|
|
10
|
+
- `Added` for new features.
|
|
11
|
+
- `Changed` for changes in existing functionality.
|
|
12
|
+
- `Deprecated` for soon-to-be removed features.
|
|
13
|
+
- `Removed` for now removed features.
|
|
14
|
+
- `Fixed` for any bug fixes.
|
|
15
|
+
- `Security` in case of vulnerabilities.
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
## [1.0.0] - 2024-06-19
|
|
19
|
+
### Added
|
|
20
|
+
- Initial release of the project 🚀
|
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<a href="https://
|
|
2
|
+
<a href="https://itwcreativeworks.com">
|
|
3
3
|
<img src="https://cdn.itwcreativeworks.com/assets/itw-creative-works/images/logo/itw-creative-works-brandmark-black-x.svg" width="100px">
|
|
4
4
|
</a>
|
|
5
5
|
</p>
|
|
@@ -24,21 +24,21 @@
|
|
|
24
24
|
<strong>Node Power User</strong> is the CLI that NPM should have had!
|
|
25
25
|
</p>
|
|
26
26
|
|
|
27
|
-
## Install
|
|
27
|
+
## 📦 Install Node Power User
|
|
28
28
|
<!-- First, install the global command line utility with npm: -->
|
|
29
29
|
First, install the package via npm:
|
|
30
30
|
```shell
|
|
31
31
|
npm i -g node-power-user
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
-
## Features
|
|
34
|
+
## 🦄 Features
|
|
35
35
|
* Clean and reinstall your node project
|
|
36
36
|
* Easily bump your NPM project's version without opening an editor
|
|
37
37
|
|
|
38
|
-
## Example Setup
|
|
38
|
+
## 📘 Example Setup
|
|
39
39
|
After installing via NPM, you can use the CLI with the `npu` command.
|
|
40
40
|
|
|
41
|
-
## Example CLI Usage
|
|
41
|
+
## 💻 Example CLI Usage
|
|
42
42
|
Note: you may have to run cli commands with `npx npu <command>` if you install this package locally.
|
|
43
43
|
* `npu v`: Check version of node-power-user.
|
|
44
44
|
* `npu pv`: Check version of the current project.
|
|
@@ -53,10 +53,10 @@ Note: you may have to run cli commands with `npx npu <command>` if you install t
|
|
|
53
53
|
* `--wait`: Wait the specified amount of time in milliseconds.
|
|
54
54
|
* `--debug`: Log the commands and flags before they are executed
|
|
55
55
|
|
|
56
|
-
## Final Words
|
|
56
|
+
## 🗨️ Final Words
|
|
57
57
|
If you are still having difficulty, we would love for you to post a question to [the Node Power User issues page](https://github.com/itw-creative-works/node-power-user/issues). It is much easier to answer questions that include your code and relevant files! So if you can provide them, we'd be extremely grateful (and more likely to help you find the answer!)
|
|
58
58
|
|
|
59
|
-
## Projects Using this Library
|
|
59
|
+
## 📚 Projects Using this Library
|
|
60
60
|
[Somiibo](https://somiibo.com/): A Social Media Bot with an open-source module library. <br>
|
|
61
61
|
[JekyllUp](https://jekyllup.com/): A website devoted to sharing the best Jekyll themes. <br>
|
|
62
62
|
[Slapform](https://slapform.com/): A backend processor for your HTML forms on static sites. <br>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-power-user",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Easy tools for every Node.js developer!",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"test": "npm run prepare && ./node_modules/mocha/bin/mocha test/ --recursive --timeout=10000",
|
|
13
13
|
"start": "npm run prepare && ./bin/npu",
|
|
14
14
|
"help": "echo 'npm start -- -v'",
|
|
15
|
-
"prepare": "node -e
|
|
15
|
+
"prepare": "node -e \"require('prepare-package')()\"",
|
|
16
|
+
"prepare:watch": "nodemon -w ./src -e '*' --exec 'npm run prepare'"
|
|
16
17
|
},
|
|
17
18
|
"repository": {
|
|
18
19
|
"type": "git",
|
|
@@ -29,22 +30,28 @@
|
|
|
29
30
|
"url": "https://github.com/itw-creative-works/node-power-user/issues"
|
|
30
31
|
},
|
|
31
32
|
"homepage": "https://itwcreativeworks.com",
|
|
33
|
+
"preparePackage": {
|
|
34
|
+
"input": "./src",
|
|
35
|
+
"output": "./dist",
|
|
36
|
+
"replace": {}
|
|
37
|
+
},
|
|
32
38
|
"dependencies": {
|
|
33
39
|
"chalk": "^4.1.2",
|
|
34
|
-
"cli-progress": "^3.
|
|
40
|
+
"cli-progress": "^3.12.0",
|
|
35
41
|
"fs-jetpack": "^4.3.1",
|
|
36
|
-
"inquirer": "^8.2.
|
|
37
|
-
"
|
|
38
|
-
"
|
|
42
|
+
"inquirer": "^8.2.6",
|
|
43
|
+
"itwcw-package-analytics": "^1.0.4",
|
|
44
|
+
"json5": "^2.2.3",
|
|
45
|
+
"keychain": "^1.5.0",
|
|
39
46
|
"lodash": "^4.17.21",
|
|
40
|
-
"node-powertools": "^
|
|
47
|
+
"node-powertools": "^1.4.4",
|
|
41
48
|
"npm-api": "^1.0.1",
|
|
42
|
-
"semver": "^7.
|
|
43
|
-
"table": "^6.8.
|
|
49
|
+
"semver": "^7.6.2",
|
|
50
|
+
"table": "^6.8.2",
|
|
44
51
|
"yargs": "^16.2.0"
|
|
45
52
|
},
|
|
46
53
|
"devDependencies": {
|
|
47
54
|
"mocha": "^8.4.0",
|
|
48
|
-
"prepare-package": "^1.1.
|
|
55
|
+
"prepare-package": "^1.1.12"
|
|
49
56
|
}
|
|
50
|
-
}
|
|
57
|
+
}
|