@ui5/create-webcomponents-package 0.0.0-99b763015 → 0.0.0-99b9fe544
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 +24 -0
- package/create-package.js +8 -4
- package/package.json +1 -1
- package/template/npmrc +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,30 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.13.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0...v1.13.0-rc.0) (2023-04-06)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @ui5/create-webcomponents-package
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [1.12.0](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0-rc.3...v1.12.0) (2023-04-04)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @ui5/create-webcomponents-package
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [1.12.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0-rc.2...v1.12.0-rc.3) (2023-03-30)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @ui5/create-webcomponents-package
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
# [1.12.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0-rc.1...v1.12.0-rc.2) (2023-03-23)
|
|
7
31
|
|
|
8
32
|
|
package/create-package.js
CHANGED
|
@@ -32,9 +32,8 @@ const isJSRelatedFile = sourcePath => {
|
|
|
32
32
|
const isGitIgnore = sourcePath => {
|
|
33
33
|
return sourcePath.includes("gitignore");
|
|
34
34
|
};
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
fs.renameSync(destPath, destPath.replace("gitignore", ".gitignore"))
|
|
35
|
+
const isNPMRC = sourcePath => {
|
|
36
|
+
return sourcePath.includes("npmrc");
|
|
38
37
|
};
|
|
39
38
|
|
|
40
39
|
// Validation of user input
|
|
@@ -70,7 +69,12 @@ const copyFile = (vars, sourcePath, destPath) => {
|
|
|
70
69
|
|
|
71
70
|
// Rename "gitignore" to ".gitignore" (npm init won't include ".gitignore", so we add it as "gitignore" and rename it later)
|
|
72
71
|
if (isGitIgnore(sourcePath)) {
|
|
73
|
-
|
|
72
|
+
fs.renameSync(destPath, destPath.replace("gitignore", ".gitignore"))
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
// Rename "npmrc" to ".npmrc" (npm init won't include ".npmrc", so we add it as "npmrc" and rename it later)
|
|
76
|
+
if (isNPMRC(sourcePath)) {
|
|
77
|
+
fs.renameSync(destPath, destPath.replace("npmrc", ".npmrc"));
|
|
74
78
|
}
|
|
75
79
|
};
|
|
76
80
|
|
package/package.json
CHANGED
package/template/npmrc
ADDED