@squiz/component-cli-lib 1.2.1-alpha.104 → 1.2.1-alpha.106

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 CHANGED
@@ -8,28 +8,20 @@
8
8
 
9
9
  .rules:when-uat:
10
10
  rules:
11
- - if: $CI_COMMIT_REF_NAME == $TARGET_BRANCH_UAT
11
+ - if: $CI_COMMIT_REF_NAME == $TARGET_BRANCH_UAT && $CI_DEPLOY_TO_PROD == null
12
12
  when: on_success
13
- - if: $CI_DEPLOY_TO_PROD
14
- when: never
15
13
  - when: never
16
14
 
17
15
  .rules:when-development:
18
16
  rules:
19
- - if: $CI_COMMIT_REF_NAME == $TARGET_BRANCH_DEVELOPMENT
17
+ - if: $CI_COMMIT_REF_NAME == $TARGET_BRANCH_DEVELOPMENT && $CI_DEPLOY_TO_PROD == null
20
18
  when: on_success
21
- - if: $CI_DEPLOY_TO_PROD
22
- when: never
23
19
  - when: never
24
20
 
25
21
  .rules:when-other-branch:
26
22
  rules:
27
- - if: >-2
28
- $CI_COMMIT_REF_NAME != $TARGET_BRANCH_DEVELOPMENT &&
29
- $CI_COMMIT_REF_NAME != $TARGET_BRANCH_UAT &&
30
- $CI_COMMIT_REF_NAME != $TARGET_BRANCH_PRODUCTION
31
- - if: $CI_DEPLOY_TO_PROD
32
- when: never
23
+ - if: $CI_COMMIT_REF_NAME != $TARGET_BRANCH_DEVELOPMENT && $CI_COMMIT_REF_NAME != $TARGET_BRANCH_UAT && $CI_COMMIT_REF_NAME != $TARGET_BRANCH_PRODUCTION && $CI_DEPLOY_TO_PROD == null
24
+ when: on_success
33
25
  - when: never
34
26
 
35
27
  .get-service-urls:
@@ -77,8 +69,8 @@ smoke-test:
77
69
  - size/l
78
70
  script:
79
71
  - export
80
- - npm i
81
- - npm run bootstrap
72
+ - npm ci
73
+ - npm run bootstrap -- --ci
82
74
  - npm run clean
83
75
  - npm run lint
84
76
  - npm run format-code
@@ -122,7 +114,5 @@ get-production-service-urls:
122
114
  environment:
123
115
  name: production
124
116
  url: components.prod.dx.squiz.cloud
125
- rules:
126
- - if: $CI_DEPLOY_TO_PROD && $CI_COMMIT_REF_NAME == $TARGET_BRANCH_PRODUCTION
127
- when: manual
128
- - when: never
117
+ tags:
118
+ - access/aws-dx-prod
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
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.1-alpha.106](https://gitlab.squiz.net/developer-experience/cmp/compare/v1.2.1-alpha.90...v1.2.1-alpha.106) (2022-09-02)
7
+
8
+ **Note:** Version bump only for package @squiz/component-cli-lib
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.2.1-alpha.105](https://gitlab.squiz.net/developer-experience/cmp/compare/v1.2.1-alpha.90...v1.2.1-alpha.105) (2022-08-26)
15
+
16
+ **Note:** Version bump only for package @squiz/component-cli-lib
17
+
18
+
19
+
20
+
21
+
6
22
  ## [1.2.1-alpha.104](https://gitlab.squiz.net/developer-experience/cmp/compare/v1.2.1-alpha.90...v1.2.1-alpha.104) (2022-08-23)
7
23
 
8
24
  **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.1-alpha.104",
3
+ "version": "1.2.1-alpha.106",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -27,15 +27,15 @@
27
27
  "typescript": "4.7.4"
28
28
  },
29
29
  "dependencies": {
30
- "@squiz/component-lib": "^1.2.1-alpha.104",
31
- "@squiz/dx-common-lib": "^1.2.1-alpha.104",
32
- "@squiz/dx-logger-lib": "^1.2.1-alpha.104",
33
- "@squiz/render-runtime-lib": "^1.2.1-alpha.104",
34
- "@squiz/virus-scanner-lib": "^1.2.1-alpha.104",
30
+ "@squiz/component-lib": "^1.2.1-alpha.106",
31
+ "@squiz/dx-common-lib": "^1.2.1-alpha.106",
32
+ "@squiz/dx-logger-lib": "^1.2.1-alpha.106",
33
+ "@squiz/render-runtime-lib": "^1.2.1-alpha.106",
34
+ "@squiz/virus-scanner-lib": "^1.2.1-alpha.106",
35
35
  "archiver": "5.3.1",
36
36
  "axios": "0.27.2",
37
37
  "cli-color": "^2.0.2",
38
38
  "supertest": "^6.2.3"
39
39
  },
40
- "gitHead": "a6cd212d3522c0f068b3e33ad0584cb92e20c827"
40
+ "gitHead": "17de7d1b24d7199e7d6a2b01c21b0f6ab9f5b55b"
41
41
  }