@vention/machine-ui 3.27.0 → 3.29.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.
- package/CHANGELOG.md +20 -0
- package/package.json +1 -1
- package/project.json +34 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
## 3.29.0 (2025-10-23)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- dual publish machine ui on both registries ([#3969](https://github.com/VentionCo/platform-products/pull/3969))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- ashrafkhalilvention @ashrafkhalilvention
|
|
10
|
+
|
|
11
|
+
## 3.28.0 (2025-10-22)
|
|
12
|
+
|
|
13
|
+
### 🚀 Features
|
|
14
|
+
|
|
15
|
+
- mc 923 use public CDN to serve machine-ui storybook ([#3907](https://github.com/VentionCo/platform-products/pull/3907))
|
|
16
|
+
|
|
17
|
+
### ❤️ Thank You
|
|
18
|
+
|
|
19
|
+
- ashrafkhalilvention @ashrafkhalilvention
|
|
20
|
+
|
|
1
21
|
## 3.27.0 (2025-10-21)
|
|
2
22
|
|
|
3
23
|
### 🚀 Features
|
package/package.json
CHANGED
package/project.json
CHANGED
|
@@ -136,11 +136,11 @@
|
|
|
136
136
|
"executor": "nx:run-commands",
|
|
137
137
|
"options": {
|
|
138
138
|
"commands": [
|
|
139
|
-
"npm pkg set name=@vention/machine-ui --prefix {projectRoot}",
|
|
140
|
-
"npm pkg delete publishConfig --prefix {projectRoot}",
|
|
141
|
-
"npm publish {projectRoot} --access=public",
|
|
142
139
|
"npm pkg set name=@ventionco/machine-ui --prefix {projectRoot}",
|
|
143
|
-
"npm
|
|
140
|
+
"npm pkg delete publishConfig --prefix {projectRoot}",
|
|
141
|
+
"npm publish {projectRoot} --access=restricted",
|
|
142
|
+
"npm pkg set name=@vention/machine-ui --prefix {projectRoot}",
|
|
143
|
+
"npm publish {projectRoot} --access=public"
|
|
144
144
|
],
|
|
145
145
|
"parallel": false
|
|
146
146
|
},
|
|
@@ -149,9 +149,38 @@
|
|
|
149
149
|
"deploy": {
|
|
150
150
|
"executor": "nx:run-commands",
|
|
151
151
|
"options": {
|
|
152
|
-
"commands": ["
|
|
152
|
+
"commands": ["nx run machine-ui:deploy:dev", "nx run machine-ui:deploy:prod"],
|
|
153
|
+
"parallel": true
|
|
153
154
|
}
|
|
154
155
|
},
|
|
156
|
+
"deploy:dev": {
|
|
157
|
+
"executor": "nx:run-commands",
|
|
158
|
+
"options": {
|
|
159
|
+
"commands": [
|
|
160
|
+
"aws --profile GithubMachineUiStorybookBuilds_Development s3 sync dist/storybook/machine-ui s3://vention-machine-ui-storybook-development/${STANDARD_VERSION_TAG}/machine-ui-storybook/ --delete"
|
|
161
|
+
]
|
|
162
|
+
},
|
|
163
|
+
"dependsOn": [
|
|
164
|
+
{
|
|
165
|
+
"target": "build-storybook",
|
|
166
|
+
"projects": "self"
|
|
167
|
+
}
|
|
168
|
+
]
|
|
169
|
+
},
|
|
170
|
+
"deploy:prod": {
|
|
171
|
+
"executor": "nx:run-commands",
|
|
172
|
+
"options": {
|
|
173
|
+
"commands": [
|
|
174
|
+
"aws --profile GithubMachineUiStorybookBuilds_Production s3 sync dist/storybook/machine-ui s3://vention-machine-ui-storybook-production/${STANDARD_VERSION_TAG}/machine-ui-storybook/ --delete"
|
|
175
|
+
]
|
|
176
|
+
},
|
|
177
|
+
"dependsOn": [
|
|
178
|
+
{
|
|
179
|
+
"target": "build-storybook",
|
|
180
|
+
"projects": "self"
|
|
181
|
+
}
|
|
182
|
+
]
|
|
183
|
+
},
|
|
155
184
|
"upload-codecov": {
|
|
156
185
|
"executor": "nx:run-commands",
|
|
157
186
|
"options": {
|