@jsnw/srv-utils 1.0.5 → 1.0.6

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.
@@ -110,7 +110,7 @@ class ConfigLoader {
110
110
  if (typeof node !== 'object' || Array.isArray(node))
111
111
  continue;
112
112
  if (node['$include'] && typeof node['$include'] === 'string') {
113
- const [loadedYaml, loadError] = this.loadYamlFile(node['$include']);
113
+ const [loadedYaml, loadError] = this.loadYamlFile((0, node_path_1.resolve)(node['$include']));
114
114
  delete node['$include'];
115
115
  if (loadError) {
116
116
  errors.push(loadError);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsnw/srv-utils",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Server-side utilities for Node.js/TypeScript: tsconfig paths, Nest helpers, and config loading.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/types/index.d.ts",