@eui/tools 5.0.0-rc.12 → 5.0.0-rc.15

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
- 5.0.0-rc.12
1
+ 5.0.0-rc.15
package/CHANGELOG.md CHANGED
@@ -1,3 +1,30 @@
1
+ ## 5.0.0-rc.15 (2022-03-31)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * wrong external sources location for remote - EUI-5632 [EUI-5632](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5632) ([2c47ddcc](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/2c47ddcc1bcddad192e4b5e3be6e45b7f4d64ef0))
7
+
8
+ * * *
9
+ * * *
10
+ ## 5.0.0-rc.14 (2022-03-31)
11
+
12
+ ##### Chores
13
+
14
+ * **other:**
15
+ * added missing sendmail dep - EUI-5632 [EUI-5632](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5632) ([8624f733](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/8624f733726c37d2d7c8fad8507e3208d658c0c2))
16
+
17
+ * * *
18
+ * * *
19
+ ## 5.0.0-rc.13 (2022-03-31)
20
+
21
+ ##### Chores
22
+
23
+ * **other:**
24
+ * added extend as explicit dependency - EUI-5632 [EUI-5632](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5632) ([09765253](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/09765253dbd3c72b28ce7311f6cae474ec3b799e))
25
+
26
+ * * *
27
+ * * *
1
28
  ## 5.0.0-rc.12 (2022-03-31)
2
29
 
3
30
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.0.0-rc.12",
3
+ "version": "5.0.0-rc.15",
4
4
  "tag": "next",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -40,6 +40,8 @@
40
40
  "mocha": "9.2.2",
41
41
  "chai": "4.3.6",
42
42
  "nyc": "15.1.0",
43
- "node-fetch": "2.6.7"
43
+ "node-fetch": "2.6.7",
44
+ "extend": "3.0.2",
45
+ "sendmail": "1.6.1"
44
46
  }
45
47
  }
@@ -163,7 +163,7 @@ module.exports.injectElementExternalSources = (pkg) => {
163
163
  const npmPkgScope = pkg.externalSources.npmPkg.substr(0, pkg.externalSources.npmPkg.indexOf('/'));
164
164
  const npmPkgName = pkg.externalSources.npmPkg.substr(pkg.externalSources.npmPkg.indexOf('/') + 1);
165
165
 
166
- externalSourcesSrcPath = path.join(process.cwd(), 'node_modules', npmPkgScope, npmPkgName, pkg.externalSources.folder);
166
+ externalSourcesSrcPath = path.join(pkg.paths.pkgRootDirectory, 'node_modules', npmPkgScope, npmPkgName, pkg.externalSources.folder);
167
167
  }
168
168
 
169
169
  if (!tools.isDirExists(externalSourcesSrcPath)) {