@verdaccio/hooks 6.0.0-6-next.29 → 6.0.0-6-next.30

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 CHANGED
@@ -1,5 +1,16 @@
1
1
  # @verdaccio/hooks
2
2
 
3
+ ## 6.0.0-6-next.30
4
+
5
+ ### Minor Changes
6
+
7
+ - 45c03819: refactor: render html middleware
8
+
9
+ ### Patch Changes
10
+
11
+ - @verdaccio/core@6.0.0-6-next.60
12
+ - @verdaccio/logger@6.0.0-6-next.28
13
+
3
14
  ## 6.0.0-6-next.29
4
15
 
5
16
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdaccio/hooks",
3
- "version": "6.0.0-6-next.29",
3
+ "version": "6.0.0-6-next.30",
4
4
  "description": "loaders logic",
5
5
  "main": "./build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -29,8 +29,8 @@
29
29
  "node": ">=16"
30
30
  },
31
31
  "dependencies": {
32
- "@verdaccio/core": "6.0.0-6-next.59",
33
- "@verdaccio/logger": "6.0.0-6-next.27",
32
+ "@verdaccio/core": "6.0.0-6-next.60",
33
+ "@verdaccio/logger": "6.0.0-6-next.28",
34
34
  "core-js": "3.27.0",
35
35
  "debug": "4.3.4",
36
36
  "handlebars": "4.7.7",
@@ -38,9 +38,9 @@
38
38
  },
39
39
  "devDependencies": {
40
40
  "@types/node": "16.18.10",
41
- "@verdaccio/auth": "6.0.0-6-next.38",
42
- "@verdaccio/config": "6.0.0-6-next.59",
43
- "@verdaccio/types": "11.0.0-6-next.19"
41
+ "@verdaccio/auth": "6.0.0-6-next.39",
42
+ "@verdaccio/config": "6.0.0-6-next.60",
43
+ "@verdaccio/types": "11.0.0-6-next.20"
44
44
  },
45
45
  "funding": {
46
46
  "type": "opencollective",
@@ -15,7 +15,7 @@ const singleHeaderNotificationConfig = parseConfigFile(
15
15
  );
16
16
  const multiNotificationConfig = parseConfigFile(parseConfigurationNotifyFile('multiple.notify'));
17
17
 
18
- setup([]);
18
+ setup({});
19
19
 
20
20
  const domain = 'http://slack-service';
21
21