@squiz/component-cli-lib 1.5.1-alpha.3 → 1.6.1-alpha.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/.gitlab-ci.yml CHANGED
@@ -25,8 +25,7 @@
25
25
  image:
26
26
  name: amazon/aws-cli
27
27
  tags:
28
- - access/aws-dx-nonprod
29
- - size/l
28
+ - access/aws-dx-nonprod
30
29
  script:
31
30
  - export
32
31
  - echo "Configuring service URLs"
@@ -77,8 +76,8 @@
77
76
  # TODO See DEVX-622
78
77
  .smoke-test:
79
78
  stage: smoke-test
80
- tags:
81
- - size/l
79
+ # tags:
80
+ # - size/l
82
81
  script:
83
82
  - export
84
83
  - npm ci
@@ -140,5 +139,4 @@ get-production-service-urls:
140
139
  name: production
141
140
  url: components.prod.dx.squiz.cloud
142
141
  tags:
143
- - access/aws-dx-prod
144
- - size/l
142
+ - access/aws-dx-prod
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.6.1-alpha.1](https://gitlab.squiz.net/developer-experience/cmp/compare/v1.6.0...v1.6.1-alpha.1) (2023-02-02)
7
+
8
+ **Note:** Version bump only for package @squiz/component-cli-lib
9
+
10
+
11
+
12
+
13
+
14
+ # [1.6.0](https://gitlab.squiz.net/developer-experience/cmp/compare/v1.5.1-alpha.4...v1.6.0) (2023-02-01)
15
+
16
+ **Note:** Version bump only for package @squiz/component-cli-lib
17
+
18
+
19
+
20
+
21
+
22
+ ## [1.5.1-alpha.4](https://gitlab.squiz.net/developer-experience/cmp/compare/v1.3.3...v1.5.1-alpha.4) (2023-01-31)
23
+
24
+ **Note:** Version bump only for package @squiz/component-cli-lib
25
+
26
+
27
+
28
+
29
+
6
30
  ## [1.5.1-alpha.3](https://gitlab.squiz.net/developer-experience/cmp/compare/v1.3.3...v1.5.1-alpha.3) (2023-01-31)
7
31
 
8
32
  **Note:** Version bump only for package @squiz/component-cli-lib
package/jest.config.ts CHANGED
@@ -8,6 +8,7 @@ process.env.DEPLOYMENT_ENVIRONMENT = 'dev';
8
8
  // Sync object
9
9
  const config: Config = {
10
10
  preset: 'ts-jest',
11
+ testTimeout: 60_000,
11
12
  testEnvironment: 'node',
12
13
  passWithNoTests: true,
13
14
  testPathIgnorePatterns: [
@@ -12,6 +12,7 @@ process.env.DEPLOYMENT_ENVIRONMENT = 'dev';
12
12
  // Sync object
13
13
  const config: Config = {
14
14
  preset: 'ts-jest',
15
+ testTimeout: 60_000,
15
16
  testEnvironment: 'node',
16
17
 
17
18
  testRegex: '.*\\.integration\\.spec\\.ts$',
@@ -4,7 +4,6 @@ import { LoggerOptions } from '@squiz/dx-logger-lib';
4
4
  * startDevelopmentRender starts a dev-mode render stack for any
5
5
  * local directory. This should start an express server on a random unused port
6
6
  * which can be accessed for viewing the component in development.
7
- *
8
7
  * @param {string} componentPath - The directory with the component to be rendered
9
8
  * @param {object} options - Additional configuration for the dev stack
10
9
  * @returns a function to stop the render stack