@robgietema/generator-nick 0.0.3 → 0.0.5
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
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
## 0.0.5 (2024-12-18)
|
|
4
|
+
|
|
5
|
+
### Bugfix
|
|
6
|
+
|
|
7
|
+
- Fix profiles templates @robgietema
|
|
8
|
+
|
|
9
|
+
## 0.0.4 (2024-12-18)
|
|
10
|
+
|
|
11
|
+
### Feature
|
|
12
|
+
|
|
13
|
+
- Add Node 23 support @robgietema
|
|
14
|
+
|
|
15
|
+
## 0.0.3 (2024-12-13)
|
|
16
|
+
|
|
17
|
+
### Bugfix
|
|
18
|
+
|
|
19
|
+
- Change seed in config @robgietema
|
|
20
|
+
|
|
21
|
+
## 0.0.2 (2024-12-13)
|
|
22
|
+
|
|
23
|
+
### Bugfix
|
|
24
|
+
|
|
25
|
+
- Change templates to match new config @robgietema
|
|
26
|
+
|
|
27
|
+
## 0.0.1 (2022-10-11)
|
|
28
|
+
|
|
29
|
+
### Feature
|
|
30
|
+
|
|
31
|
+
- Initial release @robgietema
|
package/generators/app/index.js
CHANGED
|
@@ -117,9 +117,9 @@ Done.
|
|
|
117
117
|
|
|
118
118
|
Now install and run Postgres and setup the database by entering the following in your Postgres console:
|
|
119
119
|
|
|
120
|
-
$ CREATE DATABASE ${this.globals.projectName};
|
|
121
|
-
$ CREATE USER
|
|
122
|
-
$ GRANT ALL PRIVILEGES ON DATABASE ${this.globals.projectName} TO ${this.globals.projectName};
|
|
120
|
+
$ CREATE DATABASE "${this.globals.projectName}";
|
|
121
|
+
$ CREATE USER "${this.globals.projectName}" WITH ENCRYPTED PASSWORD '${this.globals.projectName}';
|
|
122
|
+
$ GRANT ALL PRIVILEGES ON DATABASE "${this.globals.projectName}" TO "${this.globals.projectName}";
|
|
123
123
|
|
|
124
124
|
Now go to the ${this.globals.projectName} folder and run:
|
|
125
125
|
|
|
@@ -133,9 +133,9 @@ Done.
|
|
|
133
133
|
|
|
134
134
|
Now install and run Postgres and setup the database by entering the following in your Postgres console:
|
|
135
135
|
|
|
136
|
-
$ CREATE DATABASE ${this.globals.projectName};
|
|
137
|
-
$ CREATE USER
|
|
138
|
-
$ GRANT ALL PRIVILEGES ON DATABASE ${this.globals.projectName} TO ${this.globals.projectName};
|
|
136
|
+
$ CREATE DATABASE "${this.globals.projectName}";
|
|
137
|
+
$ CREATE USER "${this.globals.projectName}" WITH ENCRYPTED PASSWORD '${this.globals.projectName}';
|
|
138
|
+
$ GRANT ALL PRIVILEGES ON DATABASE "${this.globals.projectName}" TO "${this.globals.projectName}";
|
|
139
139
|
|
|
140
140
|
Now go to the ${this.globals.projectName} folder and run:
|
|
141
141
|
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
}
|
|
10
10
|
],
|
|
11
11
|
"license": "MIT",
|
|
12
|
-
"version": "0.0.
|
|
12
|
+
"version": "0.0.5",
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
15
|
"url": "git@github.com:robgietema/nick.git"
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"cms"
|
|
31
31
|
],
|
|
32
32
|
"engines": {
|
|
33
|
-
"node": "^20 || ^22"
|
|
33
|
+
"node": "^20 || ^22 || ^23"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"update-notifier": "^5.0.1",
|