@ms-cloudpack/esm-stub-utilities 0.4.0 → 0.4.1
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.json +24 -1
- package/CHANGELOG.md +10 -2
- package/package.json +8 -3
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,30 @@
|
|
|
2
2
|
"name": "@ms-cloudpack/esm-stub-utilities",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Sat, 03 Dec 2022 08:10:22 GMT",
|
|
6
|
+
"tag": "@ms-cloudpack/esm-stub-utilities_v0.4.1",
|
|
7
|
+
"version": "0.4.1",
|
|
8
|
+
"comments": {
|
|
9
|
+
"none": [
|
|
10
|
+
{
|
|
11
|
+
"author": "dake.3601@gmail.com",
|
|
12
|
+
"package": "@ms-cloudpack/esm-stub-utilities",
|
|
13
|
+
"commit": "9fae6cbdb788baac8236abc9eb44eb1d3296b7e0",
|
|
14
|
+
"comment": "Updated beachball config to disallow major bumps"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"patch": [
|
|
18
|
+
{
|
|
19
|
+
"author": "beachball",
|
|
20
|
+
"package": "@ms-cloudpack/esm-stub-utilities",
|
|
21
|
+
"comment": "Bump @ms-cloudpack/path-utilities to v2.0.0",
|
|
22
|
+
"commit": "adb6e5b06d2100f33ff9975c2999b81f81b65616"
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"date": "Tue, 15 Nov 2022 08:13:12 GMT",
|
|
6
29
|
"tag": "@ms-cloudpack/esm-stub-utilities_v0.4.0",
|
|
7
30
|
"version": "0.4.0",
|
|
8
31
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
# Change Log - @ms-cloudpack/esm-stub-utilities
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Sat, 03 Dec 2022 08:10:22 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 0.4.1
|
|
8
|
+
|
|
9
|
+
Sat, 03 Dec 2022 08:10:22 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- Bump @ms-cloudpack/path-utilities to v2.0.0
|
|
14
|
+
|
|
7
15
|
## 0.4.0
|
|
8
16
|
|
|
9
|
-
Tue, 15 Nov 2022 08:12
|
|
17
|
+
Tue, 15 Nov 2022 08:13:12 GMT
|
|
10
18
|
|
|
11
19
|
### Minor changes
|
|
12
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ms-cloudpack/esm-stub-utilities",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Generates ESM stubs for CommonJS entry files.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@ms-cloudpack/path-utilities": "^
|
|
16
|
+
"@ms-cloudpack/path-utilities": "^2.0.0",
|
|
17
17
|
"@ms-cloudpack/path-string-parsing": "^1.0.0",
|
|
18
18
|
"atob": "^2.1.2",
|
|
19
19
|
"btoa": "^1.2.1",
|
|
@@ -43,5 +43,10 @@
|
|
|
43
43
|
},
|
|
44
44
|
"files": [
|
|
45
45
|
"/lib"
|
|
46
|
-
]
|
|
46
|
+
],
|
|
47
|
+
"beachball": {
|
|
48
|
+
"disallowedChangeTypes": [
|
|
49
|
+
"major"
|
|
50
|
+
]
|
|
51
|
+
}
|
|
47
52
|
}
|