Skip to content

Commit 0c33fe7

Browse files
committed
🔜 Update changelog for version 0.1.5
1 parent 5e52f96 commit 0c33fe7

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# Changelog
22

3+
## 0.1.5
4+
* Using https instead curl
5+
* File management with promises
6+
* Several minor fixes and code improvements
7+
38
## 0.1.4
49

5-
* Handle the Github tokens for multiple accounts/users
10+
* Partial support to Github tokens for multiple accounts/users
611
* Fix problem with keywords on package.json
712
* Post install script to setup github auth details
813

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ If you are planning to allow this script to create your Github repositories, is
7878
[X] repo_deployment
7979
[X] public_repo
8080
[X] repo:invite
81-
[X] delete_repo
8281
```
8382
3. Click Generate token.
8483
4. Copy the generated string to a safe place, such as a password safe.

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-nodejs-project",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "An npm initializer to scaffold a node project and include basic tools like lint, testing, etc.",
55
"main": "src/index.js",
66
"bin": "src/index.js",
@@ -31,8 +31,7 @@
3131
"eslint-plugin-import": "^2.14.0",
3232
"eslint-plugin-jsx-a11y": "^6.1.2",
3333
"eslint-plugin-node": "^8.0.1",
34-
"eslint-plugin-react": "^7.12.3",
35-
"jest": "^23.6.0"
34+
"eslint-plugin-react": "^7.12.3"
3635
},
3736
"dependencies": {
3837
"inquirer": "^6.2.1"

template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"license": "PROJECT_LICENSE",
99
"private": PROJECT_PRIVATE,
1010
"engines": {
11-
"node": ">=10.0.0"
11+
"node": ">=10.9.0"
1212
},
1313
"scripts": {
1414
"start": "node ./src/index.js"

0 commit comments

Comments
 (0)