@eui/tools 5.0.0-rc.14 → 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.
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.0.0-rc.
|
|
1
|
+
5.0.0-rc.15
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
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
|
+
* * *
|
|
1
10
|
## 5.0.0-rc.14 (2022-03-31)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -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(
|
|
166
|
+
externalSourcesSrcPath = path.join(pkg.paths.pkgRootDirectory, 'node_modules', npmPkgScope, npmPkgName, pkg.externalSources.folder);
|
|
167
167
|
}
|
|
168
168
|
|
|
169
169
|
if (!tools.isDirExists(externalSourcesSrcPath)) {
|