@genesislcap/webpack-builder 14.345.0 → 14.346.0

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 +1 @@
1
- {"version":3,"file":"resolveLoader.d.ts","sourceRoot":"","sources":["../../src/config/resolveLoader.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAE7C,eAAO,MAAM,aAAa,QAAS,YAAY,KAAG,aAAa,CAAC,eAAe,CAc9E,CAAC"}
1
+ {"version":3,"file":"resolveLoader.d.ts","sourceRoot":"","sources":["../../src/config/resolveLoader.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAE7C,eAAO,MAAM,aAAa,QAAS,YAAY,KAAG,aAAa,CAAC,eAAe,CAgB9E,CAAC"}
@@ -12,6 +12,8 @@ const resolveLoader = (ctx) => {
12
12
  workspace ? (0, node_path_1.resolve)(workspace, 'node_modules') : '',
13
13
  // package node_modules
14
14
  (0, node_path_1.resolve)(cwd, 'node_modules'),
15
+ // root workspace node_modules (for hoisted dependencies like handlebars-loader)
16
+ (0, node_path_1.resolve)(cwd, '../../../node_modules'),
15
17
  ].filter(Boolean),
16
18
  };
17
19
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/webpack-builder",
3
3
  "description": "Webpack builder",
4
- "version": "14.345.0",
4
+ "version": "14.346.0",
5
5
  "license": "SEE LICENSE IN license.txt",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -15,7 +15,7 @@
15
15
  "dev": "tsc -b ./tsconfig.json -w"
16
16
  },
17
17
  "dependencies": {
18
- "@genesislcap/build-kit": "14.345.0",
18
+ "@genesislcap/build-kit": "14.346.0",
19
19
  "@pixability-ui/federated-types": "^0.2.0",
20
20
  "@types/webpack-env": "^1.18.4",
21
21
  "camel-case": "^4.1.2",
@@ -54,5 +54,5 @@
54
54
  "publishConfig": {
55
55
  "access": "public"
56
56
  },
57
- "gitHead": "695405144f6da348af47ea0038e7cc736938db3c"
57
+ "gitHead": "9d95d289ce549d9c0f347187acbc3ae6ac5d9a69"
58
58
  }
@@ -14,6 +14,8 @@ export const resolveLoader = (ctx: BuildContext): Configuration['resolveLoader']
14
14
  workspace ? resolve(workspace, 'node_modules') : '',
15
15
  // package node_modules
16
16
  resolve(cwd, 'node_modules'),
17
+ // root workspace node_modules (for hoisted dependencies like handlebars-loader)
18
+ resolve(cwd, '../../../node_modules'),
17
19
  ].filter(Boolean),
18
20
  };
19
21
  };