Skip to content

Commit 746818b

Browse files
committed
⬆️ 2.3.3 🎉
1 parent 160d410 commit 746818b

File tree

5 files changed

+37
-69
lines changed

5 files changed

+37
-69
lines changed

.github/FUNDING.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
github: ionicabizau
2+
patreon: ionicabizau
3+
open_collective: ionicabizau
4+
custom: https://www.buymeacoffee.com/h96wwchmy

CONTRIBUTING.md

+24-54
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,36 @@
1-
# :eight_spoked_asterisk: :stars: :sparkles: :dizzy: :star2: :star2: :sparkles: :dizzy: :star2: :star2: Contributing :star: :star2: :dizzy: :sparkles: :star: :star2: :dizzy: :sparkles: :stars: :eight_spoked_asterisk:
1+
# 🌟 Contributing
22

3-
So, you want to contribute to this project! That's awesome. However, before
4-
doing so, please read the following simple steps how to contribute. This will
5-
make the life easier and will avoid wasting time on things which are not
6-
requested. :sparkles:
3+
Want to contribute to this project? Great! Please read these quick steps to streamline the process and avoid unnecessary tasks. ✨
74

8-
## Discuss the changes before doing them
9-
- First of all, open an issue in the repository, using the [bug tracker][1],
10-
describing the contribution you would like to make, the bug you found or any
11-
other ideas you have. This will help us to get you started on the right
12-
foot.
5+
## 💬 Discuss Changes
6+
Start by opening an issue in the repository using the [bug tracker][1]. Describe your proposed contribution or the bug you've found. If relevant, include platform info and screenshots. 🖼️
137

14-
- If it makes sense, add the platform and software information (e.g. operating
15-
system, Node.JS version etc.), screenshots (so we can see what you are
16-
seeing).
8+
Wait for feedback before proceeding unless the fix is straightforward, like a typo. 📝
179

18-
- It is recommended to wait for feedback before continuing to next steps.
19-
However, if the issue is clear (e.g. a typo) and the fix is simple, you can
20-
continue and fix it.
10+
## 🔧 Fixing Issues
2111

22-
## Fixing issues
23-
- Fork the project in your account and create a branch with your fix:
24-
`some-great-feature` or `some-issue-fix`.
12+
Fork the project and create a branch for your fix, naming it `some-great-feature` or `some-issue-fix`. Commit changes while following the [code style][2]. If the project has tests, add one. ✅
2513

26-
- Commit your changes in that branch, writing the code following the
27-
[code style][2]. If the project contains tests (generally, the `test`
28-
directory), you are encouraged to add a test as well. :memo:
14+
If a `package.json` or `bower.json` exists, add yourself to the `contributors` array; create it if it doesn't. 🙌
2915

30-
- If the project contains a `package.json` or a `bower.json` file add yourself
31-
in the `contributors` array (or `authors` in the case of `bower.json`;
32-
if the array does not exist, create it):
16+
```json
17+
{
18+
"contributors": [
19+
"Your Name <your@email.address> (http://your.website)"
20+
]
21+
}
22+
```
3323

34-
```json
35-
{
36-
"contributors": [
37-
"Your Name <and@email.address> (http://your.website)"
38-
]
39-
}
40-
```
24+
## 📬 Creating a Pull Request
25+
Open a pull request and reference the initial issue (e.g., *fixes #<your-issue-number>*). Provide a clear title and consider adding visual aids for clarity. 📊
4126

42-
## Creating a pull request
27+
## ⏳ Wait for Feedback
28+
Your contributions will be reviewed. If feedback is given, update your branch as needed, and the pull request will auto-update. 🔄
4329

44-
- Open a pull request, and reference the initial issue in the pull request
45-
message (e.g. *fixes #<your-issue-number>*). Write a good description and
46-
title, so everybody will know what is fixed/improved.
30+
## 🎉 Everyone Is Happy!
31+
Your contributions will be merged, and everyone will appreciate your effort! 😄❤️
4732

48-
- If it makes sense, add screenshots, gifs etc., so it is easier to see what
49-
is going on.
33+
Thanks! 🤩
5034

51-
## Wait for feedback
52-
Before accepting your contributions, we will review them. You may get feedback
53-
about what should be fixed in your modified code. If so, just keep committing
54-
in your branch and the pull request will be updated automatically.
55-
56-
## Everyone is happy!
57-
Finally, your contributions will be merged, and everyone will be happy! :smile:
58-
Contributions are more than welcome!
59-
60-
Thanks! :sweat_smile:
61-
62-
63-
64-
[1]: https://github.com/IonicaBizau/powershell/issues
65-
66-
[2]: https://github.com/IonicaBizau/code-style
35+
[1]: /issues
36+
[2]: https://github.com/IonicaBizau/code-style

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015-20 Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)
3+
Copyright (c) 2015-25 Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+4-12
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
# powershell
2121

22-
[![Support me on Patreon][badge_patreon]][patreon] [![Buy me a book][badge_amazon]][amazon] [![PayPal][badge_paypal_donate]][paypal-donations] [![Ask me anything](https://img.shields.io/badge/ask%20me-anything-1abc9c.svg)](https://github.com/IonicaBizau/ama) [![Version](https://img.shields.io/npm/v/powershell.svg)](https://www.npmjs.com/package/powershell) [![Downloads](https://img.shields.io/npm/dt/powershell.svg)](https://www.npmjs.com/package/powershell) [![Get help on Codementor](https://cdn.codementor.io/badges/get_help_github.svg)](https://www.codementor.io/johnnyb?utm_source=github&utm_medium=button&utm_term=johnnyb&utm_campaign=github)
22+
[![Support me on Patreon][badge_patreon]][patreon] [![Buy me a book][badge_amazon]][amazon] [![PayPal][badge_paypal_donate]][paypal-donations] [![Ask me anything](https://img.shields.io/badge/ask%20me-anything-1abc9c.svg)](https://github.com/IonicaBizau/ama) [![Version](https://img.shields.io/npm/v/powershell.svg)](https://www.npmjs.com/package/powershell) [![Downloads](https://img.shields.io/npm/dt/powershell.svg)](https://www.npmjs.com/package/powershell) [![Get help on Codementor](https://cdn.codementor.io/badges/get_help_github.svg)](https://www.codementor.io/@johnnyb?utm_source=github&utm_medium=button&utm_term=johnnyb&utm_campaign=github)
2323

2424
<a href="https://www.buymeacoffee.com/H96WwChMy" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/yellow_img.png" alt="Buy Me A Coffee"></a>
2525

@@ -118,6 +118,7 @@ ps.on("end", code => {
118118

119119

120120

121+
121122
## :question: Get Help
122123

123124
There are few ways to get help:
@@ -132,6 +133,8 @@ There are few ways to get help:
132133

133134

134135

136+
137+
135138
## :memo: Documentation
136139

137140

@@ -200,17 +203,6 @@ This module is heavily based on [`node-powershell`](https://github.com/rannn505/
200203

201204

202205

203-
## :dizzy: Where is this library used?
204-
If you are using this library in one of your projects, add it in this list. :sparkles:
205-
206-
- `workflow-wm-windows`
207-
- `workflow-wm-windows-python`
208-
- `win-screenoff`
209-
- `rdc-generator`
210-
- `ptc-integrity`
211-
212-
213-
214206

215207

216208

package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "powershell",
3-
"version": "2.3.2",
3+
"version": "2.3.3",
44
"description": "Run PowerShell scripts and commands from Node.js.",
55
"main": "lib/index.js",
66
"directories": {
@@ -55,8 +55,10 @@
5555
"menu/",
5656
"cli.js",
5757
"index.js",
58+
"index.d.ts",
59+
"package-lock.json",
5860
"bloggify.js",
5961
"bloggify.json",
6062
"bloggify/"
6163
]
62-
}
64+
}

0 commit comments

Comments
 (0)