@squiz/component-cli-lib 1.2.5 → 1.2.6
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/.gitlab-ci.yml +13 -0
- package/CHANGELOG.md +8 -0
- package/package.json +6 -6
package/.gitlab-ci.yml
CHANGED
|
@@ -102,6 +102,11 @@ smoke-test:uat:
|
|
|
102
102
|
- .smoke-test
|
|
103
103
|
- .rules:when-uat
|
|
104
104
|
|
|
105
|
+
smoke-test:production:
|
|
106
|
+
extends:
|
|
107
|
+
- .smoke-test
|
|
108
|
+
- .rules:when-production
|
|
109
|
+
|
|
105
110
|
# TODO: Do we need this running for feature branches?
|
|
106
111
|
# get-branch-service-urls:
|
|
107
112
|
# extends:
|
|
@@ -126,3 +131,11 @@ get-uat-service-urls:
|
|
|
126
131
|
environment:
|
|
127
132
|
name: non-production-development
|
|
128
133
|
url: components.dev.dx.squiz.cloud
|
|
134
|
+
|
|
135
|
+
get-production-service-urls:
|
|
136
|
+
extends:
|
|
137
|
+
- .rules:when-production
|
|
138
|
+
- .get-service-urls
|
|
139
|
+
environment:
|
|
140
|
+
name: production
|
|
141
|
+
url: components.dev.dx.squiz.cloud
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.2.6](https://gitlab.squiz.net/developer-experience/cmp/compare/v1.2.2...v1.2.6) (2022-10-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @squiz/component-cli-lib
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [1.2.5](https://gitlab.squiz.net/developer-experience/cmp/compare/v1.2.2...v1.2.5) (2022-10-18)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @squiz/component-cli-lib
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squiz/component-cli-lib",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.6",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -27,16 +27,16 @@
|
|
|
27
27
|
"typescript": "4.7.4"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@squiz/component-lib": "^1.2.
|
|
31
|
-
"@squiz/component-web-api-lib": "^1.2.
|
|
32
|
-
"@squiz/dx-common-lib": "^1.2.
|
|
30
|
+
"@squiz/component-lib": "^1.2.6",
|
|
31
|
+
"@squiz/component-web-api-lib": "^1.2.6",
|
|
32
|
+
"@squiz/dx-common-lib": "^1.2.6",
|
|
33
33
|
"@squiz/dx-logger-lib": "^1.2.2",
|
|
34
|
-
"@squiz/render-runtime-lib": "^1.2.
|
|
34
|
+
"@squiz/render-runtime-lib": "^1.2.6",
|
|
35
35
|
"@squiz/virus-scanner-lib": "^1.2.2",
|
|
36
36
|
"archiver": "5.3.1",
|
|
37
37
|
"axios": "0.27.2",
|
|
38
38
|
"cli-color": "^2.0.2",
|
|
39
39
|
"supertest": "^6.2.3"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "c883e98023177723e3c86e31d5c37c3bf9274710"
|
|
42
42
|
}
|