@robgietema/generator-nick 0.0.1 → 0.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.
@@ -1,3 +1,5 @@
1
+ import events from './src/events';
2
+
1
3
  export const config = {
2
4
  connection: {
3
5
  port: 5432,
@@ -7,7 +9,7 @@ export const config = {
7
9
  password: '<%= projectName %>',
8
10
  },
9
11
  blobsDir: `${__dirname}/var/blobstorage`,
10
- port: 8000,
12
+ port: 8080,
11
13
  secret: 'secret',
12
14
  clientMaxSize: '64mb',
13
15
  systemUsers: ['admin', 'anonymous'],
@@ -36,4 +38,5 @@ export const config = {
36
38
  `${__dirname}/src/develop/nick/src/profiles/core`,
37
39
  `${__dirname}/src/profiles/default`,
38
40
  ],
41
+ events,
39
42
  };
@@ -42,7 +42,7 @@
42
42
  ]
43
43
  },
44
44
  "engines": {
45
- "node": "^16.15.0"
45
+ "node": "^20 || ^22"
46
46
  },
47
47
  "devDependencies": {},
48
48
  "dependencies": {}
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Point of contact for events.
3
+ * @module events
4
+ * @example import events from './events';
5
+ */
6
+
7
+ import events from '@robgietema/nick/src/events';
8
+
9
+ export default events;
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  }
10
10
  ],
11
11
  "license": "MIT",
12
- "version": "0.0.1",
12
+ "version": "0.0.2",
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": "^16.15.0"
33
+ "node": "^20 || ^22"
34
34
  },
35
35
  "dependencies": {
36
36
  "update-notifier": "^5.0.1",